HomeSort by relevance Sort by last modified time
    Searched defs:mem_used_total (Results 1 - 3 of 3) sorted by null

  /external/libchrome/base/process/
process_metrics.h 438 mem_used_total(0) {
448 uint64_t mem_used_total; member in struct:base::SwapInfo
  /system/extras/procrank/
procrank.cpp 159 uint64_t mem_used_total = 0; local
161 int matched = fscanf(f, "%*d %*d %" SCNu64 " %*d %*d %*d %*d", &mem_used_total);
166 return mem_used_total;
169 f = fopen(ZRAM_SYSFS "mem_used_total", "r");
171 uint64_t mem_used_total = 0; local
173 int matched = fscanf(f, "%" SCNu64, &mem_used_total);
175 fprintf(stderr, "warning: failed to parse " ZRAM_SYSFS "mem_used_total\n");
178 return mem_used_total;
  /frameworks/base/core/jni/
android_os_Debug.cpp 757 long long mem_used_total = 0; local
759 int matched = fscanf(mm_stat_file.get(), "%*d %*d %lld %*d %*d %*d %*d", &mem_used_total);
763 return mem_used_total;
766 UniqueFile mem_used_total_file = MakeUniqueFile(ZRAM_SYSFS "mem_used_total", "re");
768 long long mem_used_total = 0; local
770 int matched = fscanf(mem_used_total_file.get(), "%lld", &mem_used_total);
772 ALOGW("failed to parse " ZRAM_SYSFS "mem_used_total");
774 return mem_used_total;
    [all...]

Completed in 199 milliseconds