Home
last modified time | relevance | path

Searched refs:bytesread (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/base/
Dwin32.cc232 int bytesread = 0; in inet_pton_v6() local
233 if (sscanf(addrstart, "%hx%n", &a_short, &bytesread) != 1 || in inet_pton_v6()
234 a_short != 0xFFFF || bytesread != 4) { in inet_pton_v6()
287 int bytesread = 0; in inet_pton_v6() local
288 if (sscanf(readcursor, "%hx%n", &word, &bytesread) != 1) { in inet_pton_v6()
293 readcursor += bytesread; in inet_pton_v6()
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
DRecyclableBufferedInputStream.java166 int bytesread = localIn.read(localBuf, pos, localBuf.length - pos); in fillbuf() local
167 count = bytesread <= 0 ? pos : pos + bytesread; in fillbuf()
168 return bytesread; in fillbuf()
/external/mksh/src/
Dfuncs.c1865 size_t bytesleft = 128, bytesread; in c_read() local
1999 bytesread = 0; in c_read()
2010 bytesread = blocking_read(fd, xp, bytesleft); in c_read()
2011 if (bytesread == (size_t)-1) { in c_read()
2029 if (bytesread == 0) { in c_read()
2034 xp += bytesread; in c_read()
2039 if (bytesread == 0) in c_read()
2042 xp += bytesread; in c_read()
2046 if (bytesread == 0) { in c_read()
2052 xp += bytesread; in c_read()
[all …]
/external/libvncserver/test/
Dbmp.c84 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, in loadbmp() local
257 _unix(bytesread=read(fd, tempbuf, srcpitch*(*h))); in loadbmp()
258 if(bytesread!=srcpitch*(*h)) _throw("Read error"); in loadbmp()
/external/mesa3d/src/gallium/auxiliary/util/
Ddbghelp.h507 DWORD *bytesread; member