Home
last modified time | relevance | path

Searched refs:tagIndex (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/utils/quota/
DUptcMap.java128 private String getTagAtIndex(int userIndex, int packageIndex, int tagIndex) { in getTagAtIndex() argument
131 return mData.valueAt(userIndex, packageIndex).keyAt(tagIndex); in getTagAtIndex()
152 public T valueAt(int userIndex, int packageIndex, int tagIndex) { in valueAt() argument
154 return data != null ? data.valueAt(tagIndex) : null; in valueAt()
/frameworks/base/services/core/java/com/android/server/power/
DWakeLockLog.java595 int tagIndex = bytes[1] & MASK_LOWER_7_BITS; in fromBytes() local
596 TagData tag = mTagDatabase.getTag(tagIndex); in fromBytes()
607 int tagIndex = bytes[0] & MASK_LOWER_7_BITS; in fromBytes() local
608 TagData tag = mTagDatabase.getTag(tagIndex); in fromBytes()
985 private void removeTagIndex(int tagIndex) { in removeTagIndex() argument
1002 if (entry.tag != null && entry.tag.index == tagIndex) { in removeTagIndex()
1008 Slog.d(TAG, "Remove tag index: " + tagIndex + " @ " + readIndex); in removeTagIndex()
/frameworks/base/services/core/java/com/android/server/appop/
DAppOpsService.java635 for (int tagIndex = attributedOps.size() - 1; tagIndex >= 0; tagIndex--) { in removeAttributionsWithNoTime()
636 if (!attributedOps.valueAt(tagIndex).hasAnyTime()) { in removeAttributionsWithNoTime()
637 attributedOps.removeAt(tagIndex); in removeAttributionsWithNoTime()
714 for (int tagIndex = 0; tagIndex < attributedOps.size(); tagIndex++) { in isRunning()
715 if (attributedOps.valueAt(tagIndex).isRunning()) { in isRunning()
1333 for (int tagIndex = attributedOps.size() - 1; tagIndex >= 0; in refreshAttributionsLocked()
1334 tagIndex--) { in refreshAttributionsLocked()
1335 String tag = attributedOps.keyAt(tagIndex); in refreshAttributionsLocked()
1400 for (int tagIndex = 0; tagIndex < attributedOps.size(); tagIndex++) { in packageRemovedLocked()
1401 AttributedOp attributedOp = attributedOps.valueAt(tagIndex); in packageRemovedLocked()
[all …]
/frameworks/base/tools/aapt/
DResource.cpp3180 ssize_t tagIndex = tagAttrPairs->indexOfKey(tag); in writeProguardForXml() local
3181 if (tagIndex >= 0) { in writeProguardForXml()
3182 … const Vector<NamespaceAttributePair>& nsAttrVector = tagAttrPairs->valueAt(tagIndex); in writeProguardForXml()