/frameworks/base/core/java/com/android/internal/util/ |
D | MemInfoReader.java | 25 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/services/core/java/com/android/server/stats/pull/ |
D | SystemMemoryUtil.java | 34 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/packages/SystemUI/src/com/android/systemui/qs/carrier/ |
D | QSCarrierGroupController.java | 70 private final CellSignalState[] mInfos = field in QSCarrierGroupController 100 mInfos[slotIndex] = new CellSignalState( 131 mInfos[slotIndex] = new CellSignalState( 142 mInfos[slotIndex] = new CellSignalState( 150 mInfos[slotIndex] = new CellSignalState( 165 if (mInfos[slotIndex].mobileSignalIconId 168 mInfos[slotIndex] = new CellSignalState( 176 mInfos[slotIndex] = new CellSignalState( 193 mInfos[i] = mInfos[i].changeVisibility(false); 255 mInfos[i] = new CellSignalState( in QSCarrierGroupController() [all …]
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | AppExitInfoTracker.java | 1284 private SparseArray<ApplicationExitInfo> mInfos; // index is pid field in AppExitInfoTracker.AppExitInfoContainer 1289 mInfos = new SparseArray<ApplicationExitInfo>(); in AppExitInfoContainer() 1297 ApplicationExitInfo r = mInfos.get(filterPid); in getExitInfoLocked() 1302 final int numRep = mInfos.size(); in getExitInfoLocked() 1306 results.add(mInfos.valueAt(i)); in getExitInfoLocked() 1313 ApplicationExitInfo r = mInfos.valueAt(0); in getExitInfoLocked() 1315 ApplicationExitInfo t = mInfos.valueAt(i); in getExitInfoLocked() 1326 list.add(mInfos.valueAt(i)); in getExitInfoLocked() 1342 if ((size = mInfos.size()) >= mMaxCapacity) { in addExitInfoLocked() 1346 ApplicationExitInfo r = mInfos.valueAt(i); in addExitInfoLocked() [all …]
|
/frameworks/base/core/java/android/accounts/ |
D | ChooseAccountTypeActivity.java | 177 private ArrayList<AuthInfo> mInfos; field in ChooseAccountTypeActivity.AccountArrayAdapter 182 mInfos = infos; in AccountArrayAdapter() 201 holder.text.setText(mInfos.get(position).name); in getView() 202 holder.icon.setImageDrawable(mInfos.get(position).drawable); in getView()
|
D | ChooseAccountActivity.java | 187 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/ |
D | C2Buffer.cpp | 1260 std::vector<std::shared_ptr<const C2Info>> result(mInfos.size()); in info() 1262 mInfos.begin(), mInfos.end(), result.begin(), in info() 1269 (void) mInfos.erase(info->coreIndex()); in setInfo() 1270 (void) mInfos.insert({ info->coreIndex(), info }); in setInfo() 1275 return mInfos.count(index.coreIndex()) > 0; in hasInfo() 1279 auto it = mInfos.find(index.coreIndex()); in getInfo() 1280 if (it == mInfos.end()) { in getInfo() 1287 auto it = mInfos.find(index.coreIndex()); in removeInfo() 1288 if (it == mInfos.end()) { in removeInfo() 1292 (void) mInfos.erase(it); in removeInfo() [all …]
|
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/net/ |
D | DataUsageUtilsTest.java | 63 private List<SubscriptionInfo> mInfos; field in DataUsageUtilsTest
|
/frameworks/base/core/java/android/view/ |
D | AccessibilityInteractionController.java | 1595 private List<AccessibilityNodeInfo> mInfos; field in AccessibilityInteractionController.AddNodeInfosForViewId 1599 mInfos = infos; in init() 1604 mInfos = null; in reset() 1610 mInfos.add(view.createAccessibilityNodeInfo()); in test()
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 413 Landroid/accounts/ChooseAccountActivity$AccountArrayAdapter;->mInfos:[Landroid/accounts/ChooseAccou… 433 Landroid/accounts/ChooseAccountTypeActivity$AccountArrayAdapter;->mInfos:Ljava/util/ArrayList; 62288 Landroid/view/AccessibilityInteractionController$AddNodeInfosForViewId;->mInfos:Ljava/util/List;
|