Lines Matching refs:begin
37 if ((*maps_)[index - 1].end > (*maps_)[index].begin) { in IsSorted()
39 << " " << (*maps_)[index - 1].begin << "-" << (*maps_)[index - 1].end in IsSorted()
40 << " " << (*maps_)[index].begin << "-" << (*maps_)[index].end; in IsSorted()
59 if (maps_->front()->begin > addr) { in FindMapByAddr()
81 if (addr >= (*maps_)[left]->begin and addr < (*maps_)[left]->end) { in FindMapByAddr()
110 comm.erase(std::remove(comm.begin(), comm.end(), '\r'), comm.end()); in ReadThreadName()
111 comm.erase(std::remove(comm.begin(), comm.end(), '\n'), comm.end()); in ReadThreadName()
122 if (offset >= map->offset && (offset - map->offset) < (map->end - map->begin)) { in FindMapByFileInfo()
125 offset, map->begin, map->end, map->offset, map->name.c_str()); in FindMapByFileInfo()
143 if (find(missedSymbolFile_.begin(), missedSymbolFile_.end(), inMap->name) == in FindSymbolsFileByMap()
165 if (find(missedSymbolFile_.begin(), missedSymbolFile_.end(), name) == in FindSymbolsFileByName()
201 vaddr - map->begin, map->begin, map->offset, map->name.c_str()); in ReadRoMemory()
266 for (auto tempMapIter = tempMap.begin(); tempMapIter != tempMap.end(); ++tempMapIter) { in ParseMap()
267 …auto memMapIter = std::find_if(memMaps.begin(), memMaps.end(), [&](const std::shared_ptr<DfxMap>& … in ParseMap()
268 if ((*tempMapIter)->begin == map->begin && (*tempMapIter)->end == map->end) { in ParseMap()
278 memMaps.insert(memMaps.end(), tempMap.begin(), tempMap.end()); in ParseMap()
309 void VirtualThread::CreateMapItem(const std::string filename, uint64_t begin, uint64_t len, in CreateMapItem() argument
317 …std::shared_ptr<DfxMap> map = std::make_shared<DfxMap>(begin, begin + len, offset, prots, filename… in CreateMapItem()