HomeSort by relevance Sort by last modified time
    Searched refs:nWrite (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
memjournal.c 124 int nWrite = iAmt;
133 while( nWrite>0 ){
136 int iSpace = MIN(nWrite, JOURNAL_CHUNKSIZE - iChunkOffset);
157 nWrite -= iSpace;
test_demovfs.c 169 size_t nWrite; /* Return value from write() */
176 nWrite = write(p->fd, zBuf, iAmt);
177 if( nWrite!=iAmt ){
test6.c 211 int nWrite = 0;
213 for(pWrite=g.pWriteList; pWrite; pWrite=pWrite->pNext) nWrite++;
215 iFinal = ((iFinal<0)?-1*iFinal:iFinal)%nWrite;
os_win.c 760 DWORD nWrite; /* Bytes written by each WriteFile() call */
762 while( nRem>0 && WriteFile(pFile->h, aRem, nRem, &nWrite, 0) && nWrite>0 ){
763 aRem += nWrite;
764 nRem -= nWrite;
    [all...]
pager.c     [all...]
tclsqlite.c 251 int nWrite = toWrite; /* Number of bytes to write */
256 if( (p->iSeek+nWrite)>nBlob ){
260 if( nWrite<=0 ){
264 rc = sqlite3_blob_write(p->pBlob, (void *)buf, nWrite, p->iSeek);
270 p->iSeek += nWrite;
271 return nWrite;
    [all...]
vdbeaux.c     [all...]
os_unix.c     [all...]
  /external/pdfium/core/src/fxcrt/
extension.h 294 size_t nWrite = m_nGrowSize - (size_t)offset;
295 if (nWrite > size) {
296 nWrite = size;
298 FXSYS_memcpy32((FX_LPBYTE)m_Blocks[(int)nStartBlock] + (size_t)offset, buffer, nWrite);
299 buffer = ((FX_LPBYTE)buffer) + nWrite;
300 size -= nWrite;
  /external/jhead/
jpgfile.c 819 int nWrite = 0;
824 nWrite = fwrite(Sections[a].Data, 1, Sections[a].Size, outfile);
825 writeOk = (nWrite == Sections[a].Size);
827 ALOGE("write section %d failed expect %d actual %d",a,Sections[a].Size,nWrite);
834 nWrite = fwrite(Sections[a].Data, 1,Sections[a].Size, outfile);
835 writeOk = (nWrite == Sections[a].Size);
837 ALOGE("write section %d failed expect %d actual %d",a,Sections[a].Size,nWrite);
882 int nWrite = 0;
  /system/core/libutils/
Looper.cpp 373 ssize_t nWrite;
375 nWrite = write(mWakeWritePipeFd, "W", 1);
376 } while (nWrite == -1 && errno == EINTR);
378 if (nWrite != 1) {
  /frameworks/native/libs/input/
InputTransport.cpp 150 ssize_t nWrite;
152 nWrite = ::send(mFd, msg, msgLength, MSG_DONTWAIT | MSG_NOSIGNAL);
153 } while (nWrite == -1 && errno == EINTR);
155 if (nWrite < 0) {
170 if (size_t(nWrite) != msgLength) {
    [all...]
  /frameworks/native/services/inputflinger/
EventHub.cpp 522 ssize_t nWrite;
524 nWrite = write(device->fd, &ev, sizeof(struct input_event));
525 } while (nWrite == -1 && errno == EINTR);
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_write.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 378 milliseconds