/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/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 | 149 ssize_t nWrite; 151 nWrite = ::send(mFd, msg, msgLength, MSG_DONTWAIT | MSG_NOSIGNAL); 152 } while (nWrite == -1 && errno == EINTR); 154 if (nWrite < 0) { 169 if (size_t(nWrite) != msgLength) { [all...] |
/frameworks/base/services/input/ |
EventHub.cpp | 531 ssize_t nWrite; 533 nWrite = write(device->fd, &ev, sizeof(struct input_event)); 534 } while (nWrite == -1 && errno == EINTR); [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_write.c | [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |
/external/sqlite/dist/orig/ |
sqlite3.c | [all...] |
/external/sqlite/dist/ |
sqlite3.c | [all...] |