HomeSort by relevance Sort by last modified time
    Searched full:pwrite (Results 1 - 25 of 241) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/sqlite/src/src/
test6.c 193 WriteBuffer *pWrite;
205 for(pWrite=g.pWriteList; pWrite; pWrite=pWrite->pNext){
206 if( pWrite->pFile==pFile ){
207 pFinal = pWrite;
213 for(pWrite=g.pWriteList; pWrite; pWrite=pWrite->pNext) nWrite++
    [all...]
test_syscall.c 26 ** pwrite pwrite64 fchmod fallocate
130 /* 12 */ { "pwrite", (sqlite3_syscall_ptr)ts_pwrite, 0, 0, 0 },
334 ** A wrapper around pwrite().
337 if( tsIsFailErrno("pwrite") ){
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_QPD_Process.c 86 LVM_UINT8 *pWrite = pLVPSA_Inst->pSpectralDataBufferWritePointer;
138 &pWrite,
157 pLVPSA_Inst->pSpectralDataBufferWritePointer = pWrite;
160 if((pLVPSA_Inst->pSpectralDataBufferWritePointer != pWrite)&&(pLVPSA_Inst->CurrentParams.Fs == LVM_FS_11025))
171 pLVPSA_Inst->pSpectralDataBufferWritePointer = pWrite;
198 LVM_UINT8 *pWrite = *ppWrite;
202 *(pWrite + BandIndex) = (LVM_UINT8)(Value>>7);
203 pWrite += pLVPSA_Inst->nBands;
204 if (pWrite == (pLVPSA_Inst->pSpectralDataBufferStart + pLVPSA_Inst->nBands * pLVPSA_Inst->SpectralDataBufferLength))
206 pWrite = pLVPSA_Inst->pSpectralDataBufferStart
    [all...]
  /external/chromium_org/third_party/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/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/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c 529 ** Add an entry to the end of the global write-op list. pWrite should point
538 static void addAsyncWrite(AsyncWrite *pWrite){
540 if( pWrite->op!=ASYNC_UNLOCK ){
545 assert( !pWrite->pNext );
548 async.pQueueLast->pNext = pWrite;
550 async.pQueueFirst = pWrite;
552 async.pQueueLast = pWrite;
553 ASYNC_TRACE(("PUSH %p (%s %s %d)\n", pWrite, azOpcodeName[pWrite->op],
554 pWrite->pFileData ? pWrite->pFileData->zName : "-", pWrite->iOffset))
    [all...]
  /bionic/libc/bionic/
pwrite.c 31 ssize_t pwrite(int fd, const void *buf, size_t nbytes, off_t offset) function
  /external/strace/
TODO 21 add pread, pwrite to I/O dumping
  /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);
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
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
  /libcore/luni/src/main/native/
Portability.h 39 #define pwrite64 pwrite
  /external/bison/lib/
unistd.in.h     [all...]
  /external/chromium/base/
platform_file_posix.cc 154 return HANDLE_EINTR(pwrite(file, data, size, offset));
  /external/chromium_org/components/nacl/loader/
nacl_sandbox_linux.cc 104 // NaCl runtime uses flock to simulate POSIX behavior for pwrite.
  /external/elfutils/lib/
system.h 75 TEMP_FAILURE_RETRY (pwrite (fd, buf, len, off))
  /frameworks/compile/mclinker/include/mcld/Support/
FileSystem.h 104 ssize_t pwrite(int pFD, const void* pBuf, size_t pCount, off_t pOffset);
  /frameworks/compile/mclinker/lib/Support/Unix/
FileSystem.inc 133 ssize_t pwrite(int pFD, const void* pBuf, size_t pCount, off_t pOffset)
135 return ::pwrite(pFD, pBuf, pCount, pOffset);
  /external/bison/darwin-lib/
unistd.h 1522 # undef pwrite macro
    [all...]
  /external/bison/linux-lib/
unistd.h 1522 # undef pwrite macro
    [all...]
  /external/qemu/
posix-aio-compat.c 210 len = pwrite(aiocb->aio_fildes,
242 * we can just use plain pread/pwrite without any problems.
265 * pread/pwrite?
  /external/chromium/third_party/libevent/
devpoll.c 94 * Due to a bug in Solaris, we have to use pwrite with an offset of 0.
97 if (pwrite(devpollop->dpfd, devpollop->changes,
  /external/chromium_org/third_party/libevent/
devpoll.c 94 * Due to a bug in Solaris, we have to use pwrite with an offset of 0.
97 if (pwrite(devpollop->dpfd, devpollop->changes,
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/lib/
libc.so 

Completed in 1526 milliseconds

1 2 3 4 5 6 7 8 910