Home
last modified time | relevance | path

Searched refs:totalread (Results 1 – 4 of 4) sorted by relevance

/external/emma/core/java12/com/vladium/emma/rt/
DClassPathProcessorST.java323 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/
DInstrProcessorST.java965 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/python/cpython2/Modules/
Dbz2module.c658 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/
Dfileobject.c1692 size_t totalread = 0; in file_readlines() local
1737 totalread += nread; in file_readlines()
1784 if (totalread >= (size_t)sizehint) in file_readlines()