Searched refs:map_buffer (Results 1 – 1 of 1) sorted by relevance
44 char map_buffer[1024]; in ProcessMappings() local45 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()