Searched refs:totalread (Results 1 – 5 of 5) sorted by relevance
/external/emma/core/java12/com/vladium/emma/rt/ |
D | ClassPathProcessorST.java | 323 int totalread = 0; in readFile() local 325 … (totalread < length) && (read = in.read (m_readbuf, totalread, length - totalread)) >= 0; in readFile() 326 totalread += read); in readFile() 327 m_readpos = totalread; in readFile() 347 int totalread = 0; in readZipEntry() local 349 … (totalread < length) && (read = in.read (m_readbuf, totalread, length - totalread)) >= 0; in readZipEntry() 350 totalread += read); in readZipEntry() 351 m_readpos = totalread; in readZipEntry()
|
/external/emma/core/java12/com/vladium/emma/instr/ |
D | InstrProcessorST.java | 965 int totalread = 0; in readFile() local 967 … (totalread < length) && (read = in.read (m_readbuf, totalread, length - totalread)) >= 0; in readFile() 968 totalread += read); in readFile() 969 m_readpos = totalread; in readFile() 989 int totalread = 0; in readZipEntry() local 991 … (totalread < length) && (read = in.read (m_readbuf, totalread, length - totalread)) >= 0; in readZipEntry() 992 totalread += read); in readZipEntry() 993 m_readpos = totalread; in readZipEntry()
|
/external/libvncserver/test/ |
D | bmp.c | 113 int numread=0, totalread=0, pixel[3], i, j; in loadppm() local 122 switch(totalread) in loadppm() 137 totalread+=numread; in loadppm() 138 } while(totalread<3); in loadppm()
|
/external/python/cpython2/Modules/ |
D | bz2module.c | 658 size_t totalread = 0; in BZ2File_readlines() local 713 totalread += nread; in BZ2File_readlines() 760 if (totalread >= (size_t)sizehint) in BZ2File_readlines()
|
/external/python/cpython2/Objects/ |
D | fileobject.c | 1671 size_t totalread = 0; in file_readlines() local 1716 totalread += nread; in file_readlines() 1763 if (totalread >= (size_t)sizehint) in file_readlines()
|