Home
last modified time | relevance | path

Searched refs:mCurrentValues (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/libs/hwui/pipeline/skia/
DSkiaMemoryTracer.cpp47 auto sizeResult = mCurrentValues.find("size"); in processElement()
48 if (sizeResult != mCurrentValues.end()) { in processElement()
53 mCurrentValues.clear(); in processElement()
58 auto purgeableResult = mCurrentValues.find("purgeable_size"); in processElement()
59 if (purgeableResult != mCurrentValues.end()) { in processElement()
66 auto typeResult = mCurrentValues.find("type"); in processElement()
67 if (typeResult != mCurrentValues.end()) { in processElement()
81 auto categoryResult = mCurrentValues.find(mCategoryKey); in processElement()
82 if (categoryResult != mCurrentValues.end()) { in processElement()
93 mCurrentValues.clear(); in processElement()
[all …]
DATraceMemoryDump.cpp103 for (auto& it : mCurrentValues) { in startFrame()
122 for (auto& it : mCurrentValues) { in logTraces()
148 auto memoryCounter = mCurrentValues.find(mCategory); in recordAndResetCountersIfNeeded()
149 if (memoryCounter != mCurrentValues.end()) { in recordAndResetCountersIfNeeded()
159 mCurrentValues[mCategory] = {mLastDumpValue, mLastPurgeableDumpValue}; in recordAndResetCountersIfNeeded()
DATraceMemoryDump.h70 std::unordered_map<std::string, TraceValue> mCurrentValues; variable
DSkiaMemoryTracer.h80 std::unordered_map<const char*, TraceValue> mCurrentValues; variable
/frameworks/base/core/java/android/content/
DRestrictionEntry.java130 private String[] mCurrentValues; field in RestrictionEntry
179 this.mCurrentValues = selectedStrings; in RestrictionEntry()
276 return mCurrentValues; in getAllSelectedStrings()
327 mCurrentValues = allSelectedStrings; in setAllSelectedStrings()
462 if (mCurrentValues == null && other.mCurrentValues == null in equals()
469 && Arrays.equals(mCurrentValues, other.mCurrentValues)) { in equals()
486 } else if (mCurrentValues != null) { in hashCode()
487 for (String value : mCurrentValues) { in hashCode()
506 mCurrentValues = in.readStringArray(); in RestrictionEntry()
530 dest.writeStringArray(mCurrentValues); in writeToParcel()
[all …]