Searched refs:readPos (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/tools/powermodel/src/com/android/powermodel/ |
D | CsvParser.java | 62 int readPos = 0; in parse() local 70 int amt = input.read(buf, readPos, buf.length-readPos); in parse() 73 amt = readPos; in parse() 77 amt += readPos; in parse() 83 int index = readPos; in parse() 84 int escapeIndex = escaping ? readPos : -1; in parse() 157 readPos = (escaping ? escapeIndex : index) - fieldStart; in parse() 158 System.arraycopy(buf, fieldStart, buf, 0, readPos); in parse() 160 readPos = 0; in parse() 165 fields.add(new String(buf, 0, readPos)); in parse()
|
/frameworks/base/libs/androidfw/ |
D | Asset.cpp | 501 const auto readPos = mMap->data().offset(mOffset).convert<char>(); in read() local 502 if (!readPos.verify(count)) { in read() 506 memcpy(buf, readPos.unsafe_ptr(), count); in read()
|