Searched refs:map_buffer (Results 1 – 1 of 1) sorted by relevance
45 char map_buffer[1024]; in ProcessMappings() local46 snprintf(map_buffer, sizeof(map_buffer), "/proc/%d/maps", pid); in ProcessMappings()47 android::base::unique_fd fd(open(map_buffer, O_RDONLY)); in ProcessMappings()53 while ((n = TEMP_FAILURE_RETRY(read(fd, map_buffer, sizeof(map_buffer)))) > 0) { in ProcessMappings()54 content.append(map_buffer, n); in ProcessMappings()