Home
last modified time | relevance | path

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

/system/core/libmemunreachable/
DProcessMappings.cpp44 char map_buffer[1024]; in ProcessMappings() local
45 snprintf(map_buffer, sizeof(map_buffer), "/proc/%d/maps", pid); in ProcessMappings()
46 android::base::unique_fd fd(open(map_buffer, O_RDONLY)); in ProcessMappings()
52 while ((n = TEMP_FAILURE_RETRY(read(fd, map_buffer, sizeof(map_buffer)))) > 0) { in ProcessMappings()
53 content.append(map_buffer, n); in ProcessMappings()
/system/extras/memory_replay/
DNativeInfo.cpp36 static char map_buffer[65535]; in GetNativeInfo() local
37 LineBuffer line_buf(smaps_fd, map_buffer, sizeof(map_buffer)); in GetNativeInfo()