HomeSort by relevance Sort by last modified time
    Searched defs:pwrite (Results 1 - 12 of 12) sorted by null

  /bionic/libc/bionic/
pwrite.c 31 ssize_t pwrite(int fd, const void *buf, size_t nbytes, off_t offset) function
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 132 @Override public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException { method in class:BlockGuardOs
134 return os.pwrite(fd, buffer, offset);
137 @Override public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException { method in class:BlockGuardOs
139 return os.pwrite(fd, bytes, byteOffset, byteCount, offset);
Os.java 96 public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException; method in interface:Os
97 public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException; method in interface:Os
Posix.java 107 public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException { method in class:Posix
114 public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException { method in class:Posix
ForwardingOs.java 103 public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException { return os.pwrite(fd, buffer, offset); } method in class:ForwardingOs
104 public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException { return os.pwrite(fd, bytes, byteOffset, byteCount, offset); } method in class:ForwardingOs
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
unistd.h 351 extern ssize_t pwrite (int __fd, __const void *__buf, size_t __n,
358 extern ssize_t __REDIRECT (pwrite, (int __fd, __const void *__buf,
363 # define pwrite pwrite64 macro
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
unistd.h 351 extern ssize_t pwrite (int __fd, __const void *__buf, size_t __n,
358 extern ssize_t __REDIRECT (pwrite, (int __fd, __const void *__buf,
363 # define pwrite pwrite64 macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
unistd.h 351 extern ssize_t pwrite (int __fd, __const void *__buf, size_t __n,
358 extern ssize_t __REDIRECT (pwrite, (int __fd, __const void *__buf,
363 # define pwrite pwrite64 macro
    [all...]
  /external/bison/darwin-lib/
unistd.h 1522 # undef pwrite macro
    [all...]
  /external/bison/linux-lib/
unistd.h 1522 # undef pwrite macro
    [all...]
  /external/freetype/src/sfnt/
ttsbit.c 450 FT_Byte* pwrite = line; local
456 pwrite[0] = (FT_Byte)( pwrite[0] | *p++ );
457 pwrite += 1;
461 pwrite[0] = (FT_Byte)( pwrite[0] | ( *p++ & ( 0xFF00U >> w ) ) );
468 FT_Byte* pwrite = line; local
476 pwrite[0] = (FT_Byte)( pwrite[0] | ( wval >> x_pos ) );
477 pwrite += 1
596 FT_Byte* pwrite = line; local
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 437 /// ssize_t pwrite(int fildes, const void *buf, size_t nbyte,
439 pwrite, enumerator in enum:llvm::LibFunc::Func

Completed in 781 milliseconds