Lines Matching refs:end
35 uint64_t end; member
42 MapInfo(uint64_t start, uint64_t end, uint16_t flags, uint64_t pgoff, ino_t inode, in MapInfo()
45 end(end), in MapInfo()
54 end(params.end), in MapInfo()
63 typedef std::function<void(uint64_t start, uint64_t end, uint16_t flags, uint64_t pgoff,
101 char* end; in ParseMapsFileLine() local
103 start_addr = strtoull(p, &end, 16); in ParseMapsFileLine()
104 if (end == p || *end != '-') { in ParseMapsFileLine()
107 p = end + 1; in ParseMapsFileLine()
109 end_addr = strtoull(p, &end, 16); in ParseMapsFileLine()
110 if (end == p) { in ParseMapsFileLine()
113 p = end; in ParseMapsFileLine()
147 pgoff = strtoull(p, &end, 16); in ParseMapsFileLine()
148 if (end == p) { in ParseMapsFileLine()
151 p = end; in ParseMapsFileLine()
160 inode = strtoull(p, &end, 10); in ParseMapsFileLine()
161 if (end == p) { in ParseMapsFileLine()
164 p = end; in ParseMapsFileLine()