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

  /external/jhead/
jpgfile.c 819 size_t 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;
  /external/pdfium/core/src/fxcrt/
extension.h 230 size_t nWrite = m_nGrowSize - (size_t)offset;
231 if (nWrite > size) {
232 nWrite = size;
234 FXSYS_memcpy(m_Blocks[(int)nStartBlock] + (size_t)offset, buffer, nWrite);
235 buffer = ((uint8_t*)buffer) + nWrite;
236 size -= nWrite;
  /frameworks/native/libs/input/
InputTransport.cpp 154 ssize_t nWrite;
156 nWrite = ::send(mFd, msg, msgLength, MSG_DONTWAIT | MSG_NOSIGNAL);
157 } while (nWrite == -1 && errno == EINTR);
159 if (nWrite < 0) {
174 if (size_t(nWrite) != msgLength) {
    [all...]
  /frameworks/native/services/inputflinger/
EventHub.cpp 543 ssize_t nWrite;
545 nWrite = write(device->fd, &ev, sizeof(struct input_event));
546 } while (nWrite == -1 && errno == EINTR);
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 571 milliseconds