HomeSort by relevance Sort by last modified time
    Searched defs:m_readbuf (Results 1 - 3 of 3) sorted by null

  /external/emma/core/java12/com/vladium/emma/rt/
ClassPathProcessorST.java 52 m_readbuf = new byte [BUF_SIZE]; // don't reuse this across run() calls to reset it to the original size
135 // [original class def read into m_readbuf]
139 ClassDef clsDef = ClassDefParser.parseClass (m_readbuf, m_readpos);
159 System.arraycopy (m_readbuf, 0, bytes, 0, m_readpos);
234 // [original class def read into m_readbuf]
238 ClassDef clsDef = ClassDefParser.parseClass (m_readbuf, m_readpos);
259 System.arraycopy (m_readbuf, 0, bytes, 0, m_readpos);
309 * Reads into m_readbuf (m_readpos is updated correspondingly)
325 (totalread < length) && (read = in.read (m_readbuf, totalread, length - totalread)) >= 0;
336 * Reads into m_readbuf (m_readpos is updated correspondingly
388 private byte [] m_readbuf; field in class:ClassPathProcessorST
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java 221 final ClassDef clsDef = ClassDefParser.parseClass (m_readbuf, m_readpos);
261 // original class def already read into m_readbuf:
265 System.arraycopy (m_readbuf, 0, data, 0, data.length);
328 System.arraycopy (m_readbuf, 0, data, 0, data.length);
468 ClassDef clsDef = ClassDefParser.parseClass (m_readbuf, m_readpos);
498 // original class def already read into m_readbuf:
504 System.arraycopy (m_readbuf, 0, outdata, 0, m_readpos);
557 System.arraycopy (m_readbuf, 0, data, 0, data.length);
600 m_readbuf = null;
698 m_readbuf = new byte [BUF_SIZE]; // don't reuse this across run() calls to reset it to the original siz
1025 private byte [] m_readbuf; field in class:InstrProcessorST
    [all...]
  /external/emma/lib/
emma.jar 

Completed in 35 milliseconds