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

  /frameworks/base/libs/androidfw/include/androidfw/
StreamingZipInflater.h 57 class FileMap* mDataMap;
  /tools/loganalysis/src/com/android/loganalysis/parser/
LogcatParser.java 127 Map<String, LogcatData> mDataMap = new HashMap<String, LogcatData>();
208 mDataMap.clear();
281 if (!mDataMap.containsKey(key) || AnrParser.START.matcher(msg).matches()) {
284 mDataMap.put(key, data);
287 data = mDataMap.get(key);
298 if (!mDataMap.containsKey(key) || NativeCrashParser.FINGERPRINT.matcher(msg).matches()) {
301 mDataMap.put(key, data);
304 data = mDataMap.get(key);
313 if (!mDataMap.containsKey(key)) {
316 mDataMap.put(key, data)
    [all...]
  /cts/suite/audio_quality/client/src/com/android/cts/audiotest/
AudioProtocol.java 82 private HashMap<Integer, ByteBuffer> mDataMap = new HashMap<Integer, ByteBuffer>();
218 mDataMap.clear();
227 mDataMap.put(id, data);
243 final ByteBuffer data = mDataMap.get(id);
  /tools/tradefederation/core/tests/src/com/android/tradefed/command/
CommandFileParserTest.java 44 private final Map<File, String> mDataMap;
47 this.mDataMap = dataMap;
52 return new BufferedReader(new StringReader(mDataMap.get(file)));

Completed in 109 milliseconds