jnr.posix.POSIX.write()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(141)

本文整理了Java中jnr.posix.POSIX.write()方法的一些代码示例,展示了POSIX.write()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。POSIX.write()方法的具体详情如下:
包路径:jnr.posix.POSIX
类名称:POSIX
方法名:write

POSIX.write介绍

暂无

代码示例

代码示例来源:origin: com.github.jnr/jnr-posix

  1. public long write(int fd, byte[] buf, long n) {
  2. try { return posix.write(fd, buf, n); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
  3. }
  4. public long read(int fd, ByteBuffer buf, long n) {

代码示例来源:origin: com.github.jnr/jnr-posix

  1. public int write(int fd, byte[] buf, int n) {
  2. try { return posix.write(fd, buf, n); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
  3. }
  4. public int read(int fd, ByteBuffer buf, int n) {

代码示例来源:origin: com.github.jnr/jnr-posix

  1. public int write(int fd, ByteBuffer buf, int n) {
  2. try { return posix.write(fd, buf, n); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
  3. }
  4. public int pread(int fd, byte[] buf, int n, int offset) {

代码示例来源:origin: com.github.jnr/jnr-posix

  1. public long write(int fd, byte[] buf, long n) {
  2. return posix().write(fd, buf, n);
  3. }
  4. public long read(int fd, ByteBuffer buf, long n) {

代码示例来源:origin: com.github.jnr/jnr-posix

  1. public int write(int fd, ByteBuffer buf, int n) {
  2. return posix().write(fd, buf, n);
  3. }
  4. public int pread(int fd, byte[] buf, int n, int offset) {

代码示例来源:origin: com.github.jnr/jnr-posix

  1. public long write(int fd, ByteBuffer buf, long n) {
  2. return posix().write(fd, buf, n);
  3. }
  4. public long pread(int fd, byte[] buf, long n, long offset) {

代码示例来源:origin: com.facebook.presto.cassandra/cassandra-driver

  1. public int write(int fd, byte[] buf, int n) {
  2. return posix().write(fd, buf, n);
  3. }

代码示例来源:origin: io.prestosql.cassandra/cassandra-driver

  1. public int write(int fd, byte[] buf, int n) {
  2. return posix().write(fd, buf, n);
  3. }

代码示例来源:origin: io.prestosql.cassandra/cassandra-driver

  1. public int write(int fd, ByteBuffer buf, int n) {
  2. return posix().write(fd, buf, n);
  3. }

代码示例来源:origin: com.github.jnr/jnr-posix

  1. public int write(int fd, byte[] buf, int n) {
  2. return posix().write(fd, buf, n);
  3. }
  4. public int read(int fd, ByteBuffer buf, int n) {

代码示例来源:origin: com.github.jnr/jnr-posix

  1. public long write(int fd, ByteBuffer buf, long n) {
  2. try { return posix.write(fd, buf, n); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
  3. }
  4. public long pread(int fd, byte[] buf, long n, long offset) {

代码示例来源:origin: io.prestosql.cassandra/cassandra-driver

  1. public int write(int fd, ByteBuffer buf, int n) {
  2. try { return posix.write(fd, buf, n); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
  3. }

代码示例来源:origin: com.facebook.presto.cassandra/cassandra-driver

  1. public int write(int fd, byte[] buf, int n) {
  2. try { return posix.write(fd, buf, n); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
  3. }

代码示例来源:origin: com.facebook.presto.cassandra/cassandra-driver

  1. public int write(int fd, ByteBuffer buf, int n) {
  2. return posix().write(fd, buf, n);
  3. }

代码示例来源:origin: io.prestosql.cassandra/cassandra-driver

  1. public int write(int fd, byte[] buf, int n) {
  2. try { return posix.write(fd, buf, n); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
  3. }

代码示例来源:origin: com.facebook.presto.cassandra/cassandra-driver

  1. public int write(int fd, ByteBuffer buf, int n) {
  2. try { return posix.write(fd, buf, n); } catch (UnsatisfiedLinkError ule) { return unimplementedInt(); }
  3. }

代码示例来源:origin: org.python/jython

  1. public static int write(PyObject fd, BufferProtocol bytes) {
  2. // Get a buffer view: we can cope with N-dimensional data, but not strided data.
  3. try (PyBuffer buf = bytes.getBuffer(PyBUF.ND)) {
  4. // Get a ByteBuffer of that data, setting the position and limit to the real data.
  5. ByteBuffer bb = buf.getNIOByteBuffer();
  6. Object javaobj = fd.__tojava__(RawIOBase.class);
  7. if (javaobj != Py.NoConversion) {
  8. try {
  9. return ((RawIOBase) javaobj).write(bb);
  10. } catch (PyException pye) {
  11. throw badFD();
  12. }
  13. } else {
  14. return posix.write(getFD(fd).getIntFD(), bb, bb.position());
  15. }
  16. }
  17. }

相关文章

POSIX类方法