OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ReadFileToUint64
(Results
1 - 3
of
3
) sorted by null
/system/core/metricsd/
metrics_collector.cc
404
bool MetricsCollector::
ReadFileToUint64
(const base::FilePath& path,
425
if (!
ReadFileToUint64
(zram_dir.Append(kComprDataSizeName),
427
!
ReadFileToUint64
(zram_dir.Append(kOrigDataSizeName), &orig_data_size) ||
428
!
ReadFileToUint64
(zram_dir.Append(kZeroPagesName), &zero_pages)) {
metrics_collector.h
216
static bool
ReadFileToUint64
(const base::FilePath& path, uint64_t* value);
/external/libchrome/base/process/
process_metrics_linux.cc
44
static uint64_t
ReadFileToUint64
(const FilePath file) {
920
ReadFileToUint64
(zram_path.Append("orig_data_size"));
932
swap_info->num_reads =
ReadFileToUint64
(zram_path.Append("num_reads"));
933
swap_info->num_writes =
ReadFileToUint64
(zram_path.Append("num_writes"));
935
ReadFileToUint64
(zram_path.Append("compr_data_size"));
937
ReadFileToUint64
(zram_path.Append("mem_used_total"));
Completed in 345 milliseconds