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

  /system/netd/server/
NetlinkCommands.cpp 120 ssize_t bytesread; local
122 bytesread = read(sock, buf, sizeof(buf));
124 if (bytesread < 0) {
128 uint32_t len = bytesread;
143 } while (bytesread > 0);
SockDiag.cpp 58 ssize_t bytesread = recv(fd, &ack, sizeof(ack), MSG_DONTWAIT | MSG_PEEK); local
59 if (bytesread == -1) {
62 } else if (bytesread == (ssize_t) sizeof(ack) && ack.h.nlmsg_type == NLMSG_ERROR) {
  /external/ltp/testcases/kernel/syscalls/pipe/
pipe04.c 80 int bytesread; local
135 bytesread = do_read(fildes[0], rbuf, sizeof(rbuf));
136 if (bytesread < 0) {
  /external/webrtc/webrtc/base/
win32.cc 232 int bytesread = 0; local
233 if (sscanf(addrstart, "%hx%n", &a_short, &bytesread) != 1 ||
234 a_short != 0xFFFF || bytesread != 4) {
287 int bytesread = 0; local
288 if (sscanf(readcursor, "%hx%n", &word, &bytesread) != 1) {
293 readcursor += bytesread;
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
RecyclableBufferedInputStream.java 166 int bytesread = localIn.read(localBuf, pos, localBuf.length - pos); local
167 count = bytesread <= 0 ? pos : pos + bytesread;
168 return bytesread;
  /system/core/libpackagelistparser/
packagelistparser.c 98 ssize_t bytesread; local
114 while ((bytesread = getline(&buf, &buflen, fp)) > 0) {
  /external/mksh/src/
funcs.c 1599 size_t bytesleft = 128, bytesread local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
bz2module.c 522 size_t bytesread, buffersize, chunksize; local
563 bytesread = 0;
568 BUF(ret)+bytesread,
569 buffersize-bytesread,
573 bytesread += chunksize; local
592 if (bytesread != buffersize)
593 _PyString_Resize(&ret, bytesread);
1031 Py_off_t bytesread = 0; local
1078 bytesread += chunksize; local
1088 bytesread = 0;
1147 bytesread += chunksize; local
    [all...]
  /external/python/cpython2/Modules/
bz2module.c 510 size_t bytesread, buffersize, chunksize; local
551 bytesread = 0;
556 BUF(ret)+bytesread,
557 buffersize-bytesread,
561 bytesread += chunksize; local
580 if (bytesread != buffersize)
581 _PyString_Resize(&ret, bytesread);
1020 Py_off_t bytesread = 0; local
1067 bytesread += chunksize; local
1077 bytesread = 0
1136 bytesread += chunksize; local
    [all...]
  /external/libvncserver/test/
bmp.c 84 if((bytesread=read(fd, addr, (size)))==-1) _throw(strerror(errno)); \
85 if(bytesread!=(size)) _throw("Read error");
178 int fd=-1, bytesread, srcpitch, srcbottomup=1, srcps, dstpitch, local
257 _unix(bytesread=read(fd, tempbuf, srcpitch*(*h)));
258 if(bytesread!=srcpitch*(*h)) _throw("Read error");
  /dalvik/libdex/
sha1.cpp 281 int bytesread; local
303 bytesread = fread(buffer, 1, 16384, f);
304 SHA1Update(&context, buffer, bytesread);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmaudit.h 29 DWORD WINAPI NetAuditRead(LPCWSTR server,LPCWSTR service,LPHLOG auditloghandle,DWORD offset,LPDWORD reserved1,DWORD reserved2,DWORD offsetflag,LPBYTE *bufptr,DWORD prefmaxlen,LPDWORD bytesread,LPDWORD totalavailable);
lmerrlog.h 42 NET_API_STATUS WINAPI NetErrorLogRead(LPCWSTR server,LPWSTR reserved1,LPHLOG errloghandle,DWORD offset,LPDWORD reserved2,DWORD reserved3,DWORD offsetflag,LPBYTE *bufptr,DWORD prefmaxlen,LPDWORD bytesread,LPDWORD totalbytes);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
fileobject.c 1055 size_t bytesread, buffersize, chunksize; local
1081 bytesread = 0;
1086 chunksize = Py_UniversalNewlineFread(BUF(v) + bytesread,
1087 buffersize - bytesread, f->f_fp, (PyObject *)f);
1106 * chunksize != 0, but bytesread < buffersize. */
1107 if (bytesread > 0 && BLOCKED_ERRNO(errno))
1113 bytesread += chunksize;
1114 if (bytesread < buffersize && !interrupted) {
1127 if (bytesread != buffersize && _PyString_Resize(&v, bytesread))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
fileobject.c 1052 size_t bytesread, buffersize, chunksize; local
1078 bytesread = 0;
1082 chunksize = Py_UniversalNewlineFread(BUF(v) + bytesread,
1083 buffersize - bytesread, f->f_fp, (PyObject *)f);
1092 * chunksize != 0, but bytesread < buffersize. */
1093 if (bytesread > 0 && BLOCKED_ERRNO(errno))
1099 bytesread += chunksize;
1100 if (bytesread < buffersize) {
1113 if (bytesread != buffersize && _PyString_Resize(&v, bytesread))
    [all...]
  /external/python/cpython2/Objects/
fileobject.c 1053 size_t bytesread, buffersize, chunksize; local
1079 bytesread = 0;
1084 chunksize = Py_UniversalNewlineFread(BUF(v) + bytesread,
1085 buffersize - bytesread, f->f_fp, (PyObject *)f);
1104 * chunksize != 0, but bytesread < buffersize. */
1105 if (bytesread > 0 && BLOCKED_ERRNO(errno))
1111 bytesread += chunksize;
1112 if (bytesread < buffersize && !interrupted) {
1125 if (bytesread != buffersize && _PyString_Resize(&v, bytesread))
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.core_2.3.0.v20130327-2119.jar 
org.eclipse.osgi_3.9.0.v20130529-1710.jar 
  /external/mesa3d/src/gallium/auxiliary/util/
dbghelp.h 507 DWORD *bytesread; member in struct:_IMAGEHLP_CBA_READ_MEMORY
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_dbg_common.h 532 DWORD *bytesread; member in struct:_IMAGEHLP_CBA_READ_MEMORY
    [all...]
  /prebuilts/tools/common/m2/repository/com/github/bumptech/glide/glide/3.6.1/
glide-3.6.1.jar 
  /prebuilts/maven_repo/bumptech/com/github/bumptech/glide/glide/SNAPSHOT/
glide-SNAPSHOT.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.osgi_3.10.100.v20150529-1857.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.osgi/3.9.0.v20130529-1710/
org.eclipse.osgi-3.9.0.v20130529-1710.jar 

Completed in 1979 milliseconds