Home
last modified time | relevance | path

Searched refs:totalread (Results 1 – 3 of 3) 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/libvncserver/test/
Dbmp.c113 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()