Lines Matching refs:end
37 if ((*maps_)[index - 1].end > (*maps_)[index].begin) {
39 << " " << (*maps_)[index - 1].begin << "-" << (*maps_)[index - 1].end
40 << " " << (*maps_)[index].begin << "-" << (*maps_)[index].end;
62 if (maps_->back()->end <= addr) {
70 if (addr < (*maps_)[mid]->end) {
75 if (addr >= (*maps_)[mid]->end) {
81 if (addr >= (*maps_)[left]->begin and addr < (*maps_)[left]->end) {
110 comm.erase(std::remove(comm.begin(), comm.end(), '\r'), comm.end());
111 comm.erase(std::remove(comm.begin(), comm.end(), '\n'), comm.end());
122 if (offset >= map->offset && (offset - map->offset) < (map->end - map->begin)) {
125 offset, map->begin, map->end, map->offset, map->name.c_str());
136 if (search != symbolsFiles_.end()) {
143 if (find(missedSymbolFile_.begin(), missedSymbolFile_.end(), inMap->name) ==
144 missedSymbolFile_.end()) {
158 if (search != symbolsFiles_.end()) {
165 if (find(missedSymbolFile_.begin(), missedSymbolFile_.end(), name) ==
166 missedSymbolFile_.end()) {
181 if (missedRuntimeVaddr_.find(vaddr) == missedRuntimeVaddr_.end()) {
266 for (auto tempMapIter = tempMap.begin(); tempMapIter != tempMap.end(); ++tempMapIter) {
267 auto memMapIter = std::find_if(memMaps.begin(), memMaps.end(), [&](const std::shared_ptr<DfxMap>& map) {
268 if ((*tempMapIter)->begin == map->begin && (*tempMapIter)->end == map->end) {
273 if (memMapIter != memMaps.end()) {
278 memMaps.insert(memMaps.end(), tempMap.begin(), tempMap.end());
295 while (targetPos >= 0 && (*maps_)[currPos]->end < (*maps_)[targetPos]->end) {