| /developtools/smartperf_host/trace_streamer/src/proto_reader/ |
| D | proto_reader.cpp | 46 const uint8_t* const endAddr, in GetNextProtoTag() argument 51 const uint8_t* nextAddr = VarIntDecode(cursor, endAddr, dataAreaTag); in GetNextProtoTag() 59 if (cursor >= endAddr) { in GetNextProtoTag() 67 const uint8_t* const endAddr) in ParseVarIntValue() argument 70 auto cursor = VarIntDecode(startAddr, endAddr, &intValue); in ParseVarIntValue() 82 const uint8_t* const endAddr) in ParseLengthDelimitedValue() argument 85 auto cursor = VarIntDecode(startAddr, endAddr, &length); in ParseLengthDelimitedValue() 86 if (cursor == startAddr || length > static_cast<uint64_t>(endAddr - cursor)) { in ParseLengthDelimitedValue() 104 const uint8_t* const endAddr) in ParseFixed64Value() argument 108 if (cursor > endAddr) { in ParseFixed64Value() [all …]
|
| /developtools/profiler/host/smartperf/trace_streamer/src/proto_reader/ |
| D | proto_reader.cpp | 46 const uint8_t* const endAddr, in GetNextProtoTag() argument 51 const uint8_t* nextAddr = VarIntDecode(cursor, endAddr, dataAreaTag); in GetNextProtoTag() 59 if (cursor >= endAddr) { in GetNextProtoTag() 67 const uint8_t* const endAddr) in ParseVarIntValue() argument 70 auto cursor = VarIntDecode(startAddr, endAddr, &intValue); in ParseVarIntValue() 82 const uint8_t* const endAddr) in ParseLengthDelimitedValue() argument 85 auto cursor = VarIntDecode(startAddr, endAddr, &length); in ParseLengthDelimitedValue() 86 if (cursor == startAddr || length > static_cast<uint64_t>(endAddr - cursor)) { in ParseLengthDelimitedValue() 104 const uint8_t* const endAddr) in ParseFixed64Value() argument 108 if (cursor > endAddr) { in ParseFixed64Value() [all …]
|
| /developtools/smartperf_host/trace_streamer/src/proto_reader/include/ |
| D | proto_reader.h | 43 const DataArea* endAddr, in RepeatedDataAreaIterator() argument 45 : dataAreaId_(dataAreaId), currentAddr_(currentAddr), endAddr_(endAddr), lastAddr_(lastAddr) in RepeatedDataAreaIterator() 250 …ParseDataAreaResult ParseOneDataArea(const uint8_t* const startAddr, const uint8_t* const endAddr); 264 …const uint8_t* GetNextProtoTag(const uint8_t* const startAddr, const uint8_t* const endAddr, uint6… 265 …seVarIntValue(ParseDataAreaResult& result, const uint8_t* startAddr, const uint8_t* const endAddr); 266 …elimitedValue(ParseDataAreaResult& result, const uint8_t* startAddr, const uint8_t* const endAddr); 267 …eFixed64Value(ParseDataAreaResult& result, const uint8_t* startAddr, const uint8_t* const endAddr); 268 …eFixed32Value(ParseDataAreaResult& result, const uint8_t* startAddr, const uint8_t* const endAddr);
|
| /developtools/profiler/host/smartperf/trace_streamer/src/proto_reader/include/ |
| D | proto_reader.h | 43 const DataArea* endAddr, in RepeatedDataAreaIterator() argument 45 : dataAreaId_(dataAreaId), currentAddr_(currentAddr), endAddr_(endAddr), lastAddr_(lastAddr) in RepeatedDataAreaIterator() 250 …ParseDataAreaResult ParseOneDataArea(const uint8_t* const startAddr, const uint8_t* const endAddr); 264 …const uint8_t* GetNextProtoTag(const uint8_t* const startAddr, const uint8_t* const endAddr, uint6… 265 …seVarIntValue(ParseDataAreaResult& result, const uint8_t* startAddr, const uint8_t* const endAddr); 266 …elimitedValue(ParseDataAreaResult& result, const uint8_t* startAddr, const uint8_t* const endAddr); 267 …eFixed64Value(ParseDataAreaResult& result, const uint8_t* startAddr, const uint8_t* const endAddr); 268 …eFixed32Value(ParseDataAreaResult& result, const uint8_t* startAddr, const uint8_t* const endAddr);
|
| /developtools/profiler/device/plugins/memory_plugin/test/unittest/ |
| D | smaps_stats_unittest.cpp | 61 EXPECT_EQ(expectMappic.endAddr, targetMappic.endAddr); 86 EXPECT_EQ(expectMappic.endAddr, targetMappic.endAddr); 111 EXPECT_EQ(expectMappic.endAddr, targetMappic.endAddr); 136 EXPECT_EQ(expectMappic.endAddr, targetMappic.endAddr); 161 EXPECT_EQ(expectMappic.endAddr, targetMappic.endAddr); 186 EXPECT_EQ(expectMappic.endAddr, targetMappic.endAddr); 211 EXPECT_EQ(expectMappic.endAddr, targetMappic.endAddr); 236 EXPECT_EQ(expectMappic.endAddr, targetMappic.endAddr);
|
| /developtools/smartperf_host/ide/src/trace/bean/ |
| D | SmapsStruct.ts | 19 endAddr: string = ''; property in Smaps
|
| /developtools/profiler/device/plugins/memory_plugin/src/ |
| D | smaps_stats.cpp | 233 prevEnd = mempic.endAddr; in CollectVmemAreasData() 257 head.endAddr = strtoull(pStr, &end, HEX_BASE); in SetMapAddrInfo() 276 head.endAddr = strtoull(smapsHeadInfo.endAddrStr.c_str(), nullptr, HEX_BASE); in ParseMapHead()
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/smaps/ |
| D | TabPaneSmapsRecord.ts | 94 smaps.address = smaps.startAddr + ' - ' + smaps.endAddr;
|
| /developtools/smartperf_host/trace_streamer/test/unittest/ |
| D | smaps_parser_test.cpp | 100 std::string endAddr = "5589543000"; variable 108 SmapsInfo->set_end_addr(endAddr);
|
| D | table_test.cpp | 1272 std::string endAddr = "endAddr"; variable 1292 …timeStamp, ipid, startAddr, endAddr, dirty, swapper, rss, pss, size, reside, protectionId, pathId,…
|
| /developtools/profiler/host/smartperf/trace_streamer/src/filter/ |
| D | native_hook_filter.cpp | 445 …uint64_t> NativeHookFilter::GetNeedUpdateProcessMapsAddrRange(uint64_t startAddr, uint64_t endAddr) in GetNeedUpdateProcessMapsAddrRange() argument 449 if (startAddr >= endAddr) { in GetNeedUpdateProcessMapsAddrRange() 476 auto endItor = startAddrToMapsInfoMap_.upper_bound(endAddr); in GetNeedUpdateProcessMapsAddrRange() 564 auto endAddr = reader->end(); in ParseMapsEvent() local 568 std::tie(start, end) = GetNeedUpdateProcessMapsAddrRange(startAddr, endAddr); in ParseMapsEvent()
|
| D | native_hook_filter.h | 111 …:tuple<uint64_t, uint64_t> GetNeedUpdateProcessMapsAddrRange(uint64_t startAddr, uint64_t endAddr);
|
| /developtools/smartperf_host/trace_streamer/src/filter/ |
| D | native_hook_filter.cpp | 453 …uint64_t> NativeHookFilter::GetNeedUpdateProcessMapsAddrRange(uint64_t startAddr, uint64_t endAddr) in GetNeedUpdateProcessMapsAddrRange() argument 457 if (startAddr >= endAddr) { in GetNeedUpdateProcessMapsAddrRange() 484 auto endItor = startAddrToMapsInfoMap_.upper_bound(endAddr); in GetNeedUpdateProcessMapsAddrRange() 572 auto endAddr = reader->end(); in ParseMapsEvent() local 576 std::tie(start, end) = GetNeedUpdateProcessMapsAddrRange(startAddr, endAddr); in ParseMapsEvent()
|
| D | native_hook_filter.h | 111 …:tuple<uint64_t, uint64_t> GetNeedUpdateProcessMapsAddrRange(uint64_t startAddr, uint64_t endAddr);
|
| /developtools/profiler/device/plugins/memory_plugin/include/ |
| D | smaps_stats.h | 109 uint64_t endAddr; member
|
| /developtools/profiler/host/smartperf/trace_streamer/src/parser/htrace_pbreader_parser/ |
| D | htrace_mem_parser.cpp | 109 auto endAddr = "0x" + smapsInfo.end_addr().ToStdString(); in ParseSmapsInfoEasy() local 118 …traceDataCache_->GetSmapsData()->AppendNewData(timeStamp, startAddr, endAddr, dirty, swapper, rss,… in ParseSmapsInfoEasy()
|
| /developtools/smartperf_host/trace_streamer/src/parser/htrace_pbreader_parser/ |
| D | htrace_mem_parser.cpp | 250 auto endAddr = "0x" + smapsInfo.end_addr().ToStdString(); in ParseSmapsInfoEasy() local 266 …traceDataCache_->GetSmapsData()->AppendNewData(timeStamp, ipid, startAddr, endAddr, dirty, swapper… in ParseSmapsInfoEasy()
|
| /developtools/profiler/host/smartperf/trace_streamer/src/trace_data/ |
| D | trace_stdtype.cpp | 1962 std::string endAddr, in AppendNewData() argument 1974 endAddrs_.emplace_back(endAddr); in AppendNewData()
|
| D | trace_stdtype.h | 1708 std::string endAddr,
|
| /developtools/smartperf_host/trace_streamer/src/trace_data/ |
| D | trace_stdtype.cpp | 1970 std::string endAddr, in AppendNewData() argument 1990 endAddrs_.emplace_back(endAddr); in AppendNewData()
|
| D | trace_stdtype.h | 1713 std::string endAddr,
|