• Home
  • Raw
  • Download

Lines Matching refs:begin

65     comm.erase(std::remove(comm.begin(), comm.end(), '\r'), comm.end());  in ReadThreadName()
66 comm.erase(std::remove(comm.begin(), comm.end(), '\n'), comm.end()); in ReadThreadName()
134 …for (auto callFrameIt = callFrames.begin() + offset; callFrameIt != callFrames.end(); ++callFrameI… in GetSymbolName()
168 int index = callFrameIt - callFrames.begin(); in GetSymbolName()
321 if (ip > map->begin && ip < map->end) { in GetKernelSymbol()
323 ip, map->begin, map->end, map->name.c_str()); in GetKernelSymbol()
330 symbolsFile->GetVaddrInSymbols(ip, map->begin, map->offset); in GetKernelSymbol()
351 map->begin, map->end, map->name.c_str()); in GetKernelSymbol()
367 symbolsFile->GetVaddrInSymbols(ip, (curMaps->GetMaps())[itemIndex]->begin, in GetUserSymbol()
465 soBegin_ = mapItem->begin; in FillMapsCache()
468 mapsCache_[mapItem->begin] = memMaps; in FillMapsCache()
503 void VirtualRuntime::HandleMapInfo(uint64_t begin, uint64_t length, uint32_t flags, in HandleMapInfo() argument
507 if (mapsCache_.find(begin) != mapsCache_.end()) { in HandleMapInfo()
510 soBegin_ = begin; in HandleMapInfo()
511 …std::shared_ptr<DfxMap> mapItem = std::make_shared<DfxMap>(begin, begin + length, offset, flags, f… in HandleMapInfo()
514 mapsCache_[begin] = memMaps; in HandleMapInfo()
520 curMaps->soEnd_ = begin + length; in HandleMapInfo()
521 std::shared_ptr<DfxMap> mapItem = std::make_shared<DfxMap>(begin, begin + length, in HandleMapInfo()
544 if (iter == mapsCache_.begin()) { in FindMap()
554 for (auto curMapItem = mapVec.begin(); in FindMap()
556 if (addr >= (*curMapItem)->begin && addr < (*curMapItem)->end) { in FindMap()
557 return {curMaps, curMapItem - mapVec.begin()}; in FindMap()