Searched refs:memoryInfoArray (Results 1 – 1 of 1) sorted by relevance
95 Debug.MemoryInfo[] memoryInfoArray = mActivityManager.getProcessMemoryInfo(pids); in queryMemory() local96 totalPrivateDirty = memoryInfoArray[0].getTotalPrivateDirty() / BYTES_IN_KILOBYTE; in queryMemory()97 totalSharedDirty = memoryInfoArray[0].getTotalSharedDirty() / BYTES_IN_KILOBYTE; in queryMemory()98 totalPSS = memoryInfoArray[0].getTotalPss() / BYTES_IN_KILOBYTE; in queryMemory()99 nativePSS = memoryInfoArray[0].nativePss / BYTES_IN_KILOBYTE; in queryMemory()100 dalvikPSS = memoryInfoArray[0].dalvikPss / BYTES_IN_KILOBYTE; in queryMemory()101 otherPSS = memoryInfoArray[0].otherPss / BYTES_IN_KILOBYTE; in queryMemory()