Lines Matching defs:begin
68 comm.erase(std::remove(comm.begin(), comm.end(), '\r'), comm.end());
69 comm.erase(std::remove(comm.begin(), comm.end(), '\n'), comm.end());
139 for (auto callFrameIt = callFrames.begin() + offset; callFrameIt != callFrames.end(); ++callFrameIt) {
183 int index = callFrameIt - callFrames.begin();
343 if (ip > map->begin && ip < map->end) {
345 ip, map->begin, map->end, map->name.c_str());
352 symbolsFile->GetVaddrInSymbols(ip, map->begin, map->offset);
373 map->begin, map->end, map->name.c_str());
389 symbolsFile->GetVaddrInSymbols(ip, (curMaps->GetMaps())[itemIndex]->begin,
511 soBegin_ = mapItem->begin;
514 mapsCache_[mapItem->begin] = memMaps;
554 uint64_t begin = info[0];
561 if (offset == 0 && mapsCache_.find(begin) == mapsCache_.end()) {
562 soBegin_ = begin;
563 std::shared_ptr<DfxMap> mapItem = std::make_shared<DfxMap>(begin, begin + length, offset, flags, filePath);
566 mapsCache_[begin] = memMaps;
576 curMaps->soEnd_ = begin + length;
577 std::shared_ptr<DfxMap> mapItem = std::make_shared<DfxMap>(begin, begin + length,
600 if (iter == mapsCache_.begin()) {
602 // find 1 , will return 2 (index 0, begin elem)
610 for (auto curMapItem = mapVec.begin();
612 if (addr >= (*curMapItem)->begin && addr < (*curMapItem)->end) {
613 return {curMaps, curMapItem - mapVec.begin()};