Home
last modified time | relevance | path

Searched refs:dfxMaps (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/
H A Ddfx_maps.cpp60 auto dfxMaps = std::make_shared<DfxMaps>(); in Create() local
63 dfxMaps->EnableOnlyExec(true); in Create()
65 if (dfxMaps->Parse(pid, path)) { in Create()
66 return dfxMaps; in Create()
73 auto dfxMaps = std::make_shared<DfxMaps>(); in Create() local
74 if (dfxMaps->Parse(pid, path)) { in Create()
75 return dfxMaps; in Create()
87 dfxMaps->EnableMapIndex(true); in Create()
88 if (!dfxMaps->Parse(pid, path)) { in Create()
91 maps = dfxMaps->GetMaps(); in Create()
[all …]
/ohos5.0/base/hiviewdfx/faultloggerd/test/benchmarktest/unwinder/
H A Dmaps_benchmark.cpp39 auto dfxMaps = DfxMaps::Create(); in BenchmarkMapsCreateAll() local
40 LOGU("%s:: maps.size: %zu", __func__, dfxMaps->GetMapsSize()); in BenchmarkMapsCreateAll()
53 auto dfxMaps = DfxMaps::Create(0, false); in BenchmarkMapsCreateOnlyExec() local
54 LOGU("%s:: maps.size: %zu", __func__, dfxMaps->GetMapsSize()); in BenchmarkMapsCreateOnlyExec()
H A Delf_benchmark.cpp27 static void InitializeBuildId(benchmark::State& state, DfxMaps* dfxMaps, DfxMap** buildIdMap) in InitializeBuildId() argument
29 auto maps = dfxMaps->GetMaps(); in InitializeBuildId()
56 auto dfxMaps = DfxMaps::Create(); in BenchmarkElfGetBuildIdFromObj() local
58 InitializeBuildId(state, dfxMaps.get(), &buildIdMap); in BenchmarkElfGetBuildIdFromObj()
/ohos5.0/base/hiviewdfx/faultloggerd/test/unittest/unwind/
H A Dmaps_test.cpp176 std::shared_ptr<DfxMaps> dfxMaps = DfxMaps::Create(getpid()); variable
177 ASSERT_TRUE(dfxMaps != nullptr);
178 auto maps = dfxMaps->GetMaps();