HomeSort by relevance Sort by last modified time
    Searched full:meminfo (Results 1 - 25 of 131) sorted by null

1 2 3 4 5 6

  /external/autotest/client/profilers/catprofile/
control 1 job.profilers.add('catprofile', ['/proc/meminfo','/proc/uptime'], 'meminfo', 2)
catprofile.py 5 job.profilers.add('catprofile', ['/proc/meminfo','/proc/uptime'],
15 def initialize(self, filenames = ['/proc/meminfo', '/proc/slabinfo'],
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
memalign.c 44 VO_MEM_INFO MemInfo;
48 MemInfo.Flag = 0;
49 MemInfo.Size = size + 1;
50 ret = pMemop->Alloc(CodecID, &MemInfo);
53 mem_ptr = (unsigned char *)MemInfo.VBuffer;
63 MemInfo.Flag = 0;
64 MemInfo.Size = size + alignment;
65 ret = pMemop->Alloc(CodecID, &MemInfo);
69 tmp = (unsigned char *)MemInfo.VBuffer;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
mem_align.c 44 VO_MEM_INFO MemInfo;
48 MemInfo.Flag = 0;
49 MemInfo.Size = size + 1;
50 ret = pMemop->Alloc(CodecID, &MemInfo);
53 mem_ptr = (unsigned char *)MemInfo.VBuffer;
63 MemInfo.Flag = 0;
64 MemInfo.Size = size + alignment;
65 ret = pMemop->Alloc(CodecID, &MemInfo);
69 tmp = (unsigned char *)MemInfo.VBuffer;
  /external/libchrome/base/process/
process_metrics_unittest.cc 89 struct SystemMemoryInfoKB meminfo; local
102 EXPECT_FALSE(ParseProcMeminfo(invalid_input1, &meminfo));
103 EXPECT_FALSE(ParseProcMeminfo(invalid_input2, &meminfo));
104 EXPECT_FALSE(ParseProcMeminfo(invalid_input3, &meminfo));
171 EXPECT_TRUE(ParseProcMeminfo(valid_input1, &meminfo));
172 EXPECT_EQ(meminfo.total, 3981504);
173 EXPECT_EQ(meminfo.free, 140764);
174 EXPECT_EQ(meminfo.buffers, 116480);
175 EXPECT_EQ(meminfo.cached, 406160);
176 EXPECT_EQ(meminfo.active_anon, 2972352)
198 struct SystemMemoryInfoKB meminfo; local
    [all...]
process_metrics_linux.cc 433 SystemMemoryInfoKB meminfo; local
434 if (!GetSystemMemoryInfo(&meminfo))
436 return meminfo.total - meminfo.free - meminfo.buffers - meminfo.cached;
588 SystemMemoryInfoKB* meminfo) {
589 // The format of /proc/meminfo is:
601 meminfo->total = 0;
610 DLOG(WARNING) << "meminfo: tokens: " << tokens.size(
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/ui/extras/system_stats/
system_stats_instance_track_test.html 30 stats1['meminfo'] = new Object();
31 stats1.meminfo['free'] = 10000;
32 stats2['meminfo'] = new Object();
33 stats2.meminfo['free'] = 20000;
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
linux_based_platform_backend.py 28 meminfo_contents = self.GetFileContents('/proc/meminfo')
29 meminfo = self._GetProcFileDict(meminfo_contents)
30 if not meminfo:
32 return (self._ConvertToKb(meminfo['MemTotal'])
33 - self._ConvertToKb(meminfo['MemFree'])
34 - self._ConvertToKb(meminfo['Buffers'])
35 - self._ConvertToKb(meminfo['Cached']))
39 meminfo_contents = self.GetFileContents('/proc/meminfo')
40 meminfo = self._GetProcFileDict(meminfo_contents)
41 if not meminfo
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ProcessStatsUi.java 34 import com.android.settings.applications.ProcStatsData.MemInfo;
109 MemInfo memInfo = mStatsManager.getMemInfo();
110 launchMemoryDetail((SettingsActivity) getActivity(), memInfo, pgp.getEntry(), true);
153 MemInfo memInfo = mStatsManager.getMemInfo();
170 double maxMemory = mShowMax ? memInfo.realTotalRam
171 : memInfo.usedWeight * memInfo.weightToRam;
176 pref.init(pkg, mPm, maxMemory, memInfo.weightToRam
    [all...]
ProcessStatsSummary.java 29 import com.android.settings.applications.ProcStatsData.MemInfo;
68 MemInfo memInfo = mStatsManager.getMemInfo();
70 double usedRam = memInfo.realUsedRam;
71 double totalRam = memInfo.realTotalRam;
72 double freeRam = memInfo.realFreeRam;
134 MemInfo memInfo = statsManager.getMemInfo();
136 (long) memInfo.realUsedRam);
138 (long) memInfo.realTotalRam)
    [all...]
ProcessStatsBase.java 31 import com.android.settings.applications.ProcStatsData.MemInfo;
131 public static void launchMemoryDetail(SettingsActivity activity, MemInfo memInfo,
135 args.putDouble(ProcessStatsDetail.EXTRA_WEIGHT_TO_RAM, memInfo.weightToRam);
136 args.putLong(ProcessStatsDetail.EXTRA_TOTAL_TIME, memInfo.memTotalTime);
138 memInfo.usedWeight * memInfo.weightToRam);
139 args.putDouble(ProcessStatsDetail.EXTRA_TOTAL_SCALE, memInfo.totalScale);
ProcStatsData.java 71 private MemInfo mMemInfo;
116 public MemInfo getMemInfo() {
155 mMemInfo = new MemInfo(mContext, totalMem, memTotalTime);
361 public static class MemInfo {
375 private MemInfo(Context context, ProcessStats.TotalMemoryUseCollection totalMem,
401 ActivityManager.MemoryInfo memInfo = new ActivityManager.MemoryInfo();
403 memInfo);
404 if (memInfo.hiddenAppThreshold >= realFreeRam) {
409 realUsedRam += memInfo.hiddenAppThreshold;
410 realFreeRam -= memInfo.hiddenAppThreshold
    [all...]
  /device/google/marlin/dataservices/datatop/src/
datatop_meminfo_file_poll.c 32 * @brief Adds ability for data collection from /proc/meminfo
35 * "/proc/meminfo"
52 * @brief Struct used to hold necessary variables for /proc/meminfo dpg
65 * @brief Parses lines with data in "/proc/meminfo"
103 * @brief Stores the data collected from a "/proc/meminfo"
166 * @brief Frees dynamically allocated "/proc/meminfo" dpg.
187 * @brief Creates a dpg for "/proc/meminfo" file
200 dpg->prefix = "/proc/meminfo";
201 dpg->file = "/proc/meminfo";
212 * @brief Scans "/proc/meminfo in order to autodetect dps
    [all...]
  /external/autotest/server/site_tests/brillo_MemorySizeTest/
brillo_MemorySizeTest.py 35 meminfo_output = host.run_output('cat /proc/meminfo').splitlines()
37 raise error.TestFail('Failed to cat /proc/meminfo')
46 'Failed to read %s from /proc/meminfo' % mem_type)
  /external/autotest/server/site_tests/kernel_BootMessagesServer/
kernel_BootMessagesServer.py 54 """ Interesting fields from meminfo that we want to log
91 """Fetch /proc/meminfo from client and return lines in the file
93 @param filename: The file to write 'cat /proc/meminfo' into.
97 self._client.run('cat /proc/meminfo', stdout_tee=f)
102 def _parse_meminfo(self, meminfo, perf_vals):
103 """ Parse the contents of each line of meminfo
107 @param filelines: list of lines in meminfo
111 for line in meminfo.splitlines():
169 meminfo_filename = os.path.join(self.resultsdir, 'meminfo')
173 meminfo = self._read_meminfo(meminfo_filename
    [all...]
  /system/core/metricsd/
metrics_collector.h 96 // Type of scale to use for meminfo histograms. For most of them we use
107 // Record for retrieving and reporting values from /proc/meminfo.
110 const char* match; // string to match in output of /proc/meminfo
112 int value; // value from /proc/meminfo
169 // Schedules meminfo collection callback.
175 // Parses content of /proc/meminfo and sends fields of interest to UMA.
177 // /proc/meminfo.
180 // Parses meminfo data from |meminfo_raw|. |fields| is a vector containing
182 // /proc/meminfo prints them. The result of parsing fields[i] is placed in
195 // Reads /proc/meminfo and sends total anonymous memory usage to UMA
    [all...]
metrics_collector_test.cc 94 string meminfo = local
127 EXPECT_TRUE(daemon_.ProcessMeminfo(meminfo));
131 string meminfo = "MemTotal: 2000000 kB\nMemFree: 1000000 kB\n"; local
133 EXPECT_FALSE(daemon_.ProcessMeminfo(meminfo));
  /packages/apps/Settings/src/com/android/settings/
SettingsDumpService.java 64 ProcStatsData.MemInfo memInfo = statsManager.getMemInfo();
66 obj.put("used", String.valueOf(memInfo.realUsedRam));
67 obj.put("free", String.valueOf(memInfo.realFreeRam));
68 obj.put("total", String.valueOf(memInfo.realTotalRam));
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
DataCollector.java 168 saveCompactMeminfo(mResultsDirectory + "/compact-meminfo-%s.txt");
170 Log.w(TAG, "Error while saving dumpsys meminfo -c: " + ioe.getMessage());
244 saveProcessOutput("dumpsys meminfo -c -S", filename);
285 File outputDir = new File(Environment.getExternalStorageDirectory(), "meminfo");
299 saveProcessOutput("dumpsys meminfo -c", fos);
302 Log.e(TAG, "exception while dumping meminfo", e);
304 Log.e(TAG, "exception while dumping meminfo", e);
  /device/moto/shamu/camera/QCamera2/HAL/
QCameraMem.h 91 static int allocOneBuffer(struct QCameraMemInfo &memInfo,
96 static void deallocOneBuffer(struct QCameraMemInfo &memInfo);
113 int allocateBuffer(struct QCameraMemory::QCameraMemInfo &memInfo,
119 void releaseBuffer(struct QCameraMemory::QCameraMemInfo &memInfo,
125 int findBufferLocked(struct QCameraMemory::QCameraMemInfo &memInfo,
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
EnvironmentGetter.java 80 Multimap<String, String> memInfo = propertiesFromLinuxFile("/proc/meminfo");
81 // TODO redo memInfo.toString() so we don't get square brackets
82 propertyMap.put("host.memory.physical", memInfo.get("MemTotal").toString());
83 propertyMap.put("host.memory.swap", memInfo.get("SwapTotal").toString());
  /frameworks/base/core/java/android/app/
ActivityThread.java     [all...]
  /external/chromium-trace/catapult/tracing/test_data/
chromeos_system_trace.json 1 {"traceEvents":[{"cat":"__metadata","pid":5044,"tid":5051,"ts":0,"ph":"M","name":"process_sort_index","args":{"sort_index":-1}},{"cat":"__metadata","pid":5044,"tid":5051,"ts":0,"ph":"M","name":"process_name","args":{"name":"GPU Process"}},{"cat":"__metadata","pid":5044,"tid":5051,"ts":0,"ph":"M","name":"thread_name","args":{"name":"Chrome_ChildIOThread"}},{"cat":"__metadata","pid":5075,"tid":13,"ts":0,"ph":"M","name":"process_sort_index","args":{"sort_index":-5}},{"cat":"__metadata","pid":5075,"tid":13,"ts":0,"ph":"M","name":"process_name","args":{"name":"Renderer"}},{"cat":"__metadata","pid":5075,"tid":13,"ts":0,"ph":"M","name":"process_labels","args":{"labels":"chrome://tracing"}},{"cat":"__metadata","pid":5075,"tid":12,"ts":0,"ph":"M","name":"thread_sort_index","args":{"sort_index":-1}},{"cat":"__metadata","pid":5075,"tid":13,"ts":0,"ph":"M","name":"thread_name","args":{"name":"Chrome_ChildIOThread"}},{"cat":"__metadata","pid":5243,"tid":74,"ts":0,"ph":"M","name":"process_sort_index","args":{"sort_index":-5}},{"cat":"__metadata","pid":5243,"tid":74,"ts":0,"ph":"M","name":"process_name","args":{"name":"Renderer"}},{"cat":"__metadata","pid":5243,"tid":74,"ts":0,"ph":"M","name":"process_labels","args":{"labels":"The New York Times - Breaking News, World News & Multimedia"}},{"cat":"__metadata","pid":5243,"tid":73,"ts":0,"ph":"M","name":"thread_sort_index","args":{"sort_index":-1}},{"cat":"__metadata","pid":5145,"tid":28,"ts":0,"ph":"M","name":"process_sort_index","args":{"sort_index":-5}},{"cat":"__metadata","pid":5145,"tid":28,"ts":0,"ph":"M","name":"process_name","args":{"name":"Renderer"}},{"cat":"__metadata","pid":5145,"tid":28,"ts":0,"ph":"M","name":"process_labels","args":{"labels":"The New York Times - Breaking News, World News & Multimedia"}},{"cat":"__metadata","pid":5145,"tid":27,"ts":0,"ph":"M","name":"thread_sort_index","args":{"sort_index":-1}},{"cat":"__metadata","pid":5173,"tid":44,"ts":0,"ph":"M","name":"process_sort_index","args":{"sort_index":-5}},{"cat":"__metadata","pid":5173,"tid":44,"ts":0,"ph":"M","name":"process_name","args":{"name":"Renderer"}},{"cat":"__metadata","pid":5173,"tid":44,"ts":0,"ph":"M","name":"process_labels","args":{"labels":"The New York Times - Breaking News, World News & Multimedia"}},{"cat":"__metadata","pid":5173,"tid":43,"ts":0,"ph":"M","name":"thread_sort_index","args":{"sort_index":-1}},{"cat":"disabled-by-default-system_stats","pid":5014,"tid":5014,"ts":5443650636079,"ph":"O","name":"base::TraceEventSystemStatsMonitor::SystemStats","args":{"snapshot":{"committed_memory":15710472,"diskinfo":{"io":2.0,"io_time":156170190.0,"read_time":68751660.0,"reads":13857167.0,"reads_merged":786631.0,"sectors_read":788992266.0,"sectors_written":6112151522.0,"weighted_io_time":1255672974.0,"write_time":1185976134.0,"writes":65188628.0,"writes_merged":33208722.0},"meminfo":{"active_anon":10804264,"active_file":7842436,"buffers":685608,"cached":13703664,"dirty":696,"free":2774120,"gem_objects":-1,"gem_size":-1,"inactive_anon":985064,"inactive_file":6506528,"pgmajfault":2545143,"pswpin":28875,"pswpout":214110,"shmem":20504,"slab":3310560,"swap_free":32727528,"swap_total":33472508,"swap_used":744980,"total":32873864},"swapinfo":{"compr_data_size":0.0,"compression_ratio":0.0,"mem_used_total":0.0,"num_reads":0.0,"num_writes":0.0,"orig_data_size":0.0}}},"tts":1237088,"id":"0x1"},{"cat":"disabled-by-default-system_stats","pid":5014,"tid":5014,"ts":5443652636232,"ph":"O","name":"base::TraceEventSystemStatsMonitor::SystemStats","args":{"snapshot":{"committed_memory":15805196,"diskinfo":{"io":0.0,"io_time":156171120.0,"read_time":68752640.0,"reads":13857248.0,"reads_merged":786631.0,"sectors_read":788993218.0,"sectors_written":6112152858.0,"weighted_io_time":1255674364.0,"write_time":1185976594.0,"writes":65188662.0,"writes_merged":33208865.0},"meminfo":{"active_anon":10892412,"active_file":7842868,"buffers":685620,"cached":13701160,"dirty":2308,"free":2681888,"gem_objects":-1,"gem_size":-1,"inactive_anon":981684,"inactive_file":6506696,"pgmajfault":2545143,"pswpin":28875,"pswpout":214110,"shmem":16992,"slab":3311176,"swap_free":32727528,"swap_total":33472508,"swap_used":744980,"total":32873864},"swapinfo":{"compr_data_size":0.0,"compression_ratio":0.0,"mem_used_total":0.0,"num_reads":0.0,"num_writes":0.0,"orig_data_size":0.0}}},"tts":1592246,"id":"0x1"},{"cat":"disabled-by-default-system_stats","pid":5014,"tid":5014,"ts":5443654637016,"ph":"O","name":"base::TraceEventSystemStatsMonitor::SystemStats","args":{"snapshot":{"committed_memory":15897236,"diskinfo":{"io":2.0,"io_time":156172960.0,"read_time":68753640.0,"reads":13857284.0,"reads_merged":786631.0,"sectors_read":788993650.0,"sectors_written":6112155418.0,"weighted_io_time":1255677174.0,"write_time":1185978384.0,"writes":65188783.0,"writes_merged":33209097.0},"meminfo":{"active_anon":10983148,"active_file":7843352,"buffers":685664,"cached":13714676,"dirty":3384,"free":2576288,"gem_objects":-1,"gem_size":-1,"inactive_anon":994592,"inactive_file":6506792,"pgmajfault":2545143,"pswpin":28875,"pswpout":214110,"shmem":30388,"slab":3311060,"swap_free":32727528,"swap_total":33472508,"swap_used":744980,"total":32873864},"swapinfo":{"compr_data_size":0.0,"compression_ratio":0.0,"mem_used_total":0.0,"num_reads":0.0,"num_writes":0.0,"orig_data_size":0.0}}},"tts":1900656,"id":"0x1"},{"cat":"disabled-by-default-system_stats","pid":5014,"tid":5014,"ts":5443656637297,"ph":"O","name":"base::TraceEventSystemStatsMonitor::SystemStats","args":{"snapshot":{"committed_memory":15877380,"diskinfo":{"io":0.0,"io_time":156173900.0,"read_time":68754000.0,"reads":13857292.0,"reads_merged":786631.0,"sectors_read":788993738.0,"sectors_written":6112156530.0,"weighted_io_time":1255678544.0,"write_time":1185979414.0,"writes":65188862.0,"writes_merged":33209164.0},"meminfo":{"active_anon":10962980,"active_file":7843496,"buffers":685708,"cached":13712284,"dirty":3568,"free":2598492,"gem_objects":-1,"gem_size":-1,"inactive_anon":992124,"inactive_file":6506796,"pgmajfault":2545143,"pswpin":28875,"pswpout":214110,"shmem":27908,"slab":3311076,"swap_free":32727528,"swap_total":33472508,"swap_used":744980,"total":32873864},"swapinfo":{"compr_data_size":0.0,"compression_ratio":0.0,"mem_used_total":0.0,"num_reads":0.0,"num_writes":0.0,"orig_data_size":0.0}}},"tts":2116938,"id":"0x1"},{"cat":"disabled-by-default-system_stats","pid":5014,"tid":5014,"ts":5443658638103,"ph":"O","name":"base::TraceEventSystemStatsMonitor::SystemStats","args":{"snapshot":{"committed_memory":15936472,"diskinfo":{"io":1.0,"io_time":156174380.0,"read_time":68754420.0,"reads":13857323.0,"reads_merged":786631.0,"sectors_read":788993986.0,"sectors_written":6112157130.0,"weighted_io_time":1255679144.0,"write_time":1185979594.0,"writes":65188899.0,"writes_merged":33209202.0},"meminfo":{"active_anon":11019900,"active_file":7843576,"buffers":685716,"cached":13706804,"dirty":3720,"free":2544872,"gem_objects":-1,"gem_size":-1,"inactive_anon":986664,"inactive_file":6506760,"pgmajfault":2545143,"pswpin":28875,"pswpout":214110,"shmem":21944,"slab":3311396,"swap_free":32727528,"swap_total":33472508,"swap_used":744980,"total":32873864},"swapinfo":{"compr_data_size":0.0,"compression_ratio":0.0,"mem_used_total":0.0,"num_reads":0.0,"num_writes":0.0,"orig_data_size":0.0}}},"tts":2381444,"id":"0x1"},{"cat":"disabled-by-default-system_stats","pid":5014,"tid":5014,"ts":5443660638570,"ph":"O","name":"base::TraceEventSystemStatsMonitor::SystemStats","args":{"snapshot":{"committed_memory":15918664,"diskinfo":{"io":0.0,"io_time":156175540.0,"read_time":68754940.0,"reads":13857351.0,"reads_merged":786631.0,"sectors_read":788994250.0,"sectors_written":6112162538.0,"weighted_io_time":1255680814.0,"write_time":1185980744.0,"writes":65189021.0,"writes_merged":33209768.0},"meminfo":{"active_anon":11060768,"active_file":7519444,"buffers":668680,"cached":13409824,"dirty":4244,"free":2876696,"gem_objects":-1,"gem_size":-1,"inactive_anon":989312,"inactive_file":6512216,"pgmajfault":2545144,"pswpin":28875,"pswpout":214486,"shmem":27180,"slab":3253408,"swap_free":32726024,"swap_total":33472508,"swap_used":746484,"total":32873864},"swapinfo":{"compr_data_size":0.0,"compression_ratio":0.0,"mem_used_total":0.0,"num_reads":0.0,"num_writes":0.0,"orig_data_size":0.0}}},"tts":2750410,"id":"0x1"},{"cat":"disabled-by-default-system_stats","pid":5014,"tid":5014,"ts":5443662638376,"ph":"O","name":"base::TraceEventSystemStatsMonitor::SystemStats","args":{"snapshot":{"committed_memory":15972868,"diskinfo":{"io":1.0,"io_time":156176570.0,"read_time":68755290.0,"reads":13857378.0,"reads_merged":786631.0,"sectors_read":788994562.0,"sectors_written":6112164282.0,"weighted_io_time":1255682034.0,"write_time":1185981614.0,"writes":65189097.0,"writes_merged":33209929.0},"meminfo":{"active_anon":11115364,"active_file":7519348,"buffers":668724,"cached":13406836,"dirty":4652,"free":2825436,"gem_objects":-1,"gem_size":-1,"inactive_anon":986852,"inactive_file":6512524,"pgmajfault":2545144,"pswpin":28875,"pswpout":214486,"shmem":23892,"slab":3252980,"swap_free":32726024,"swap_total":33472508,"swap_used":746484,"total":32873864},"swapinfo":{"compr_data_size":0.0,"compression_ratio":0.0,"mem_used_total":0.0,"num_reads":0.0,"num_writes":0.0,"orig_data_size":0.0}}},"tts":3122595,"id":"0x1"},{"cat":"disabled-by-default-system_stats","pid":5014,"tid":5014,"ts":5443664639143,"ph":"O","name":"base::TraceEventSystemStatsMonitor::SystemStats","args":{"snapshot":{"committed_memory":16029600,"diskinfo":{"io":1.0,"io_time":156177080.0,"read_time":68755470.0,"reads":13857402.0,"reads_merged":786631.0,"sectors_read":788994754.0,"sectors_written":6112165338.0,"weighted_io_time":1255682564.0,"write_time":1185981944.0,"writes":65189133.0,"writes_merged":33210008.0},"meminfo":{"active_anon":11170756,"active_file":7519520,"buffers":668756,"cached":13407460,"dirty":4972,"free":2768048,"gem_objects":-1,"gem_size":-1,"inactive_anon":986844,"inactive_file":6512604,"pgmajfault":2545144,"pswpin":28875,"pswpout":214486,"shmem":24300,"slab":3252920,"swap_free":32726024,"swap_total":33472508,"swap_used":746484,"total":32873864},"swapinfo":{"compr_data_size":0.0,"compression_ratio":0.0,"mem_used_total":0.0,"num_reads":0.0,"num_writes":0.0,"orig_data_size":0.0}}},"tts":3542284,"id":"0x1"},{"cat":"disabled-by-default-system_stats","pid":5014,"tid":5014,"ts":5443666639924,"ph":"O","name":"base::TraceEventSystemStatsMonitor::SystemStats","args":{"snapshot":{"committed_memory":16047456,"diskinfo":{"io":0.0,"io_time":156177640.0,"read_time":68755730.0,"reads":13857423.0,"reads_merged":786631.0,"sectors_read":788994922.0,"sectors_written":6112166178.0,"weighted_io_time":1255683274.0,"write_time":1185982414.0,"writes":65189173.0,"writes_merged":33210074.0},"meminfo":{"active_anon":11187444,"active_file":7519728,"buffers":668792,"cached":13402720,"dirty":5296,"free":2754896,"gem_objects":-1,"gem_size":-1,"inactive_anon":981984,"inactive_file":6512720,"pgmajfault":2545144,"pswpin":28875,"pswpout":214486,"shmem":19276,"slab":3252920,"swap_free":32726024,"swap_total":33472508,"swap_used":746484,"total":32873864},"swapinfo":{"compr_data_size":0.0,"compression_ratio":0.0,"mem_used_total":0.0,"num_reads":0.0,"num_writes":0.0,"orig_data_size":0.0}}},"tts":3856633,"id":"0x1"},{"cat":"disabled-by-default-system_stats","pid":5014,"tid":5014,"ts":5443668640591,"ph":"O","name":"base::TraceEventSystemStatsMonitor::SystemStats","args":{"snapshot":{"committed_memory":15941176,"diskinfo":{"io":2.0,"io_time":156178190.0,"read_time":68756010.0,"reads":13857442.0,"reads_merged":786631.0,"sectors_read":788995162.0,"sectors_written":6112168026.0,"weighted_io_time":1255685574.0,"write_time":1185984374.0,"writes":65189318.0,"writes_merged":33210157.0},"meminfo":{"active_anon":11082308,"active_file":7519852,"buffers":668796,"cached":13402892,"dirty":4960,"fr (…)
    [all...]
  /frameworks/base/core/java/android/os/
PerformanceCollector.java 492 Debug.MemoryInfo memInfo = new Debug.MemoryInfo();
493 Debug.getMemoryInfo(memInfo);
519 mPerfSnapshot.putLong(METRIC_KEY_NATIVE_PSS, memInfo.nativePss);
520 mPerfSnapshot.putLong(METRIC_KEY_NATIVE_PRIVATE_DIRTY, memInfo.nativePrivateDirty);
521 mPerfSnapshot.putLong(METRIC_KEY_NATIVE_SHARED_DIRTY, memInfo.nativeSharedDirty);
526 mPerfSnapshot.putLong(METRIC_KEY_JAVA_PSS, memInfo.dalvikPss);
527 mPerfSnapshot.putLong(METRIC_KEY_JAVA_PRIVATE_DIRTY, memInfo.dalvikPrivateDirty);
528 mPerfSnapshot.putLong(METRIC_KEY_JAVA_SHARED_DIRTY, memInfo.dalvikSharedDirty);
530 mPerfSnapshot.putLong(METRIC_KEY_OTHER_PSS, memInfo.otherPss);
531 mPerfSnapshot.putLong(METRIC_KEY_OTHER_PRIVATE_DIRTY, memInfo.otherPrivateDirty)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
MemoryUtils.java 38 // getTotalSize() returns the "MemTotal" value from /proc/meminfo.

Completed in 922 milliseconds

1 2 3 4 5 6