Lines Matching defs:map
41 // Special flag to indicate a map is in /dev/. However, a map in
44 // Special flag to indicate that this map represents an elf file
67 // If uncached is true, then parse the current process map as of the call.
68 // Passing a map created with uncached set to true to Backtrace::Create()
76 iterator(BacktraceMap* map, size_t index) : map_(map), index_(index) {}
102 backtrace_map_t* map = &map_->maps_[index_];
103 if (map->load_bias == static_cast<uint64_t>(-1)) {
104 map->load_bias = map_->GetLoadBias(index_);
106 return map;
117 // Fill in the map data structure for the given address.
118 virtual void FillIn(uint64_t addr, backtrace_map_t* map);
127 backtrace_map_t map;
128 FillIn(pc, &map);
129 if (IsValid(map)) {
130 return map.flags;
149 static inline bool IsValid(const backtrace_map_t& map) {
150 return map.end > 0;
179 explicit ScopedBacktraceMapIteratorLock(BacktraceMap* map) : map_(map) {
180 map->LockIterator();