Home
last modified time | relevance | path

Searched refs:smaps_fd (Results 1 – 2 of 2) sorted by relevance

/system/extras/memory_replay/
DNativeInfo.cpp51 void NativeGetInfo(int smaps_fd, size_t* rss_bytes, size_t* va_bytes) { in NativeGetInfo() argument
61 TEMP_FAILURE_RETRY(read(smaps_fd, buf + buf_bytes, sizeof(buf) - buf_bytes - 1)); in NativeGetInfo()
107 android::base::unique_fd smaps_fd(open("/proc/self/smaps", O_RDONLY)); in NativePrintInfo() local
108 if (smaps_fd == -1) { in NativePrintInfo()
112 NativeGetInfo(smaps_fd, &rss_bytes, &va_bytes); in NativePrintInfo()
DNativeInfo.h19 void NativeGetInfo(int smaps_fd, size_t* rss_bytes, size_t* va_bytes);