Home | History | Annotate | Download | only in app

Lines Matching defs:outputData

104         HashMap outputData = new HashMap();
105 outputData.put(KEY_TIMESTAMP, new Long(timestamp));
106 outputData.put(KEY_MEMORY_AVAILABLE, new Long(availMem));
107 outputData.put(KEY_TOTAL_MEMORY, new Long(totalMem));
108 outputData.put(KEY_TOTAL_PSS, new Long(totalPSS));
109 outputData.put(KEY_LAST_TRIM_LEVEL, new Integer(info.lastTrimLevel));
110 outputData.put(KEY_TOTAL_PRIVATE_DIRTY, new Long(totalPrivateDirty));
111 outputData.put(KEY_TOTAL_SHARED_DIRTY, new Long(totalSharedDirty));
112 outputData.put(KEY_MEMORY_CLASS, new Long(memoryClass));
113 outputData.put(KEY_LARGE_MEMORY_CLASS, new Long(largeMemoryClass));
114 outputData.put(KEY_NATIVE_PSS, new Long(nativePSS));
115 outputData.put(KEY_DALVIK_PSS, new Long(dalvikPSS));
116 outputData.put(KEY_OTHER_PSS, new Long(otherPSS));
117 outputData.put(KEY_THRESHOLD, new Long(threshold));
118 outputData.put(KEY_LOW_MEMORY, new Boolean(lowMemory));
126 return outputData;