Searched defs:mem_used_total (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp757 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;

Completed in 126 milliseconds