Home
last modified time | relevance | path

Searched refs:numOfBytesRead (Results 1 – 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/hash/
DHashingInputStream.java65 int numOfBytesRead = in.read(bytes, off, len); in read() local
66 if (numOfBytesRead != -1) { in read()
67 hasher.putBytes(bytes, off, numOfBytesRead); in read()
69 return numOfBytesRead; in read()
/external/libvncserver/libvncserver/tightvnc-filetransfer/
Dfiletransfermsg.c450 int numOfBytesRead = 0; in GetFileDownloadResponseMsgInBlocks() local
465 if( (numOfBytesRead = read(rtcp->rcft.rcfd.downloadFD, pBuf, SZ_RFBBLOCKSIZE)) <= 0) { in GetFileDownloadResponseMsgInBlocks()
469 if(numOfBytesRead == 0) { in GetFileDownloadResponseMsgInBlocks()
474 return CreateFileDownloadBlockSizeDataMsg(numOfBytesRead, pBuf); in GetFileDownloadResponseMsgInBlocks()