Lines Matching refs:start
51 if (pc >= cur->start && pc < cur->end) { in Find()
53 } else if (pc < cur->start) { in Find()
67 [&](uint64_t start, uint64_t end, uint16_t flags, uint64_t pgoff, ino_t, const char* name) { in Parse() argument
72 maps_.emplace_back(new MapInfo(prev_map, prev_real_map, start, end, pgoff, flags, name)); in Parse()
80 void Maps::Add(uint64_t start, uint64_t end, uint64_t offset, uint64_t flags, in Add() argument
89 std::make_unique<MapInfo>(prev_map, prev_real_map, start, end, offset, flags, name); in Add()
97 return a->start < b->start; }); in Sort()
118 [&](uint64_t start, uint64_t end, uint16_t flags, uint64_t pgoff, ino_t, const char* name) { in Parse() argument
123 maps_.emplace_back(new MapInfo(prev_map, prev_real_map, start, end, pgoff, flags, name)); in Parse()
151 uint64_t start = new_map_info->start; in Reparse() local
157 if (start == info->start && end == info->end && flags == info->flags && *name == info->name) { in Reparse()
168 } else if (info->start > start) { in Reparse()
202 return a->start < b->start; in Reparse()