Home
last modified time | relevance | path

Searched refs:mInfos (Results 1 – 14 of 14) sorted by relevance

/frameworks/base/services/core/java/com/android/server/stats/pull/
DSystemMemoryUtil.java34 long[] mInfos = new long[Debug.MEMINFO_COUNT]; in getMetrics() local
35 Debug.getMemInfo(mInfos); in getMetrics()
37 long kReclaimableKb = mInfos[Debug.MEMINFO_KRECLAIMABLE]; in getMetrics()
42 kReclaimableKb = mInfos[Debug.MEMINFO_SLAB_RECLAIMABLE]; in getMetrics()
45 long accountedKb = mInfos[Debug.MEMINFO_FREE] in getMetrics()
46 + mInfos[Debug.MEMINFO_ZRAM_TOTAL] in getMetrics()
47 + mInfos[Debug.MEMINFO_BUFFERS] in getMetrics()
48 + mInfos[Debug.MEMINFO_ACTIVE] in getMetrics()
49 + mInfos[Debug.MEMINFO_INACTIVE] in getMetrics()
50 + mInfos[Debug.MEMINFO_UNEVICTABLE] in getMetrics()
[all …]
/frameworks/base/core/java/com/android/internal/util/
DMemInfoReader.java25 final long[] mInfos = new long[Debug.MEMINFO_COUNT]; field in MemInfoReader
38 Debug.getMemInfo(mInfos); in readMemInfo()
49 return mInfos[Debug.MEMINFO_TOTAL] * 1024; in getTotalSize()
57 return mInfos[Debug.MEMINFO_FREE] * 1024; in getFreeSize()
80 return mInfos[Debug.MEMINFO_TOTAL]; in getTotalSizeKb()
87 return mInfos[Debug.MEMINFO_FREE]; in getFreeSizeKb()
95 long kReclaimable = mInfos[Debug.MEMINFO_KRECLAIMABLE]; in getCachedSizeKb()
101 kReclaimable = mInfos[Debug.MEMINFO_SLAB_RECLAIMABLE]; in getCachedSizeKb()
103 return mInfos[Debug.MEMINFO_BUFFERS] + kReclaimable in getCachedSizeKb()
104 + mInfos[Debug.MEMINFO_CACHED] - mInfos[Debug.MEMINFO_MAPPED]; in getCachedSizeKb()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/carrier/
DShadeCarrierGroupController.java86 private final CellSignalState[] mInfos = field in ShadeCarrierGroupController
114 mInfos[slotIndex] = new CellSignalState(
128 mInfos[i] = mInfos[i].changeVisibility(false);
205 mInfos[i] = new CellSignalState( in ShadeCarrierGroupController()
305 if (mInfos[i].visible) { in computeIsSingleCarrier()
345 if (mInfos[i].visible in handleUpdateState()
346 && mInfos[i].mobileSignalIconId == R.drawable.ic_shade_sim_card) { in handleUpdateState()
347 mInfos[i] = new CellSignalState(true, R.drawable.ic_blank, "", "", false); in handleUpdateState()
354 mCarrierGroups[i].updateState(mInfos[i], singleCarrier); in handleUpdateState()
359 mInfos[0].visible && mInfos[1].visible ? View.VISIBLE : View.GONE); in handleUpdateState()
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DAppStartInfoTracker.java628 list.addAll(container.mInfos); in getStartInfo()
1113 private ArrayList<ApplicationStartInfo> mInfos; // Always kept sorted by first timestamp. field in AppStartInfoTracker.AppStartInfoContainer
1119 mInfos = new ArrayList<ApplicationStartInfo>(); in AppStartInfoContainer()
1140 if (mInfos.size() <= getMaxCapacity()) { in disableAppMonitoringMode()
1145 Collections.sort(mInfos, (a, b) -> in disableAppMonitoringMode()
1149 mInfos.subList(0, mInfos.size() - getMaxCapacity()).clear(); in disableAppMonitoringMode()
1150 mInfos.trimToSize(); in disableAppMonitoringMode()
1156 results.addAll(mInfos.size() <= maxNum ? 0 : mInfos.size() - maxNum, mInfos); in getStartInfoLocked() local
1161 int size = mInfos.size(); in addStartInfoLocked()
1167 ApplicationStartInfo startInfo = mInfos.get(i); in addStartInfoLocked()
[all …]
DAppExitInfoTracker.java1325 private SparseArray<ApplicationExitInfo> mInfos; // index is a pid field in AppExitInfoTracker.AppExitInfoContainer
1331 mInfos = new SparseArray<ApplicationExitInfo>(); in AppExitInfoContainer()
1385 getInfosLocked(mInfos, filterPid, maxNum, results); in getExitInfoLocked()
1430 addInfoLocked(mInfos, info); in addExitInfoLocked()
1440 final ApplicationExitInfo r = mInfos.get(pid); in appendTraceIfNecessaryLocked()
1464 destroyLocked(mInfos); in destroyLocked()
1471 for (int i = mInfos.size() - 1; i >= 0; i--) { in forEachRecordLocked()
1472 switch (callback.apply(mInfos.keyAt(i), mInfos.valueAt(i))) { in forEachRecordLocked()
1475 final File traceFile = mInfos.valueAt(i).getTraceFile(); in forEachRecordLocked()
1479 mInfos.removeAt(i); in forEachRecordLocked()
[all …]
/frameworks/base/core/java/android/accounts/
DChooseAccountTypeActivity.java176 private ArrayList<AuthInfo> mInfos; field in ChooseAccountTypeActivity.AccountArrayAdapter
181 mInfos = infos; in AccountArrayAdapter()
200 holder.text.setText(mInfos.get(position).name); in getView()
201 holder.icon.setImageDrawable(mInfos.get(position).drawable); in getView()
DChooseAccountActivity.java187 private AccountInfo[] mInfos; field in ChooseAccountActivity.AccountArrayAdapter
191 mInfos = infos; in AccountArrayAdapter()
210 holder.text.setText(mInfos[position].name); in getView()
211 holder.icon.setImageDrawable(mInfos[position].drawable); in getView()
/frameworks/av/media/codec2/vndk/
DC2Buffer.cpp1708 std::vector<std::shared_ptr<const C2Info>> result(mInfos.size()); in info()
1710 mInfos.begin(), mInfos.end(), result.begin(), in info()
1717 (void) mInfos.erase(info->coreIndex()); in setInfo()
1718 (void) mInfos.insert({ info->coreIndex(), info }); in setInfo()
1723 return mInfos.count(index.coreIndex()) > 0; in hasInfo()
1727 auto it = mInfos.find(index.coreIndex()); in getInfo()
1728 if (it == mInfos.end()) { in getInfo()
1735 auto it = mInfos.find(index.coreIndex()); in removeInfo()
1736 if (it == mInfos.end()) { in removeInfo()
1740 (void) mInfos.erase(it); in removeInfo()
[all …]
/frameworks/av/media/codec2/sfplugin/
DCCodecBuffers.cpp165 mInfos.clear(); in clearAll()
195 mInfos.clear(); in submitMultiAccessUnits()
218 mInfos.push_back(info); in submitMultiAccessUnits()
229 auto it = mInfos.begin(); in submitMultiAccessUnits()
230 while (it != mInfos.end() && availableSize > mBackPadding) { in submitMultiAccessUnits()
239 it = mInfos.erase(it); in submitMultiAccessUnits()
277 mInfos.push_back(info); in submitMultiAccessUnits()
285 mInfos.push_back(info); in submitMultiAccessUnits()
314 std::list<C2AccessUnitInfosStruct> mInfos; member in android::MultiAccessUnitSkipCutBuffer
/frameworks/av/media/codec2/hal/common/
DMultiAccessUnitHelper.cpp648 frame.mInfos.insert(frame.mInfos.end(), in processWorklets()
799 frame.mInfos.push_back(largeFrame); in finalizeWork()
802 for (auto &info : frame.mInfos) { in finalizeWork()
815 frame.mInfos.clear(); in finalizeWork()
850 mInfos.clear(); in reset()
/frameworks/av/media/codec2/hal/common/include/codec2/common/
DMultiAccessUnitHelper.h141 std::vector<std::shared_ptr<const C2Info>> mInfos; member
/frameworks/base/core/java/android/view/
DAccessibilityInteractionController.java1777 private List<AccessibilityNodeInfo> mInfos; field in AccessibilityInteractionController.AddNodeInfosForViewId
1781 mInfos = infos; in init()
1786 mInfos = null; in reset()
1792 mInfos.add(view.createAccessibilityNodeInfo()); in test()
/frameworks/opt/setupwizard/tools/docs/
Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ ...
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt413 Landroid/accounts/ChooseAccountActivity$AccountArrayAdapter;->mInfos:[Landroid/accounts/ChooseAccou…
433 Landroid/accounts/ChooseAccountTypeActivity$AccountArrayAdapter;->mInfos:Ljava/util/ArrayList;
58322 Landroid/view/AccessibilityInteractionController$AddNodeInfosForViewId;->mInfos:Ljava/util/List;