Home
last modified time | relevance | path

Searched refs:UnwindingMetadata (Results 1 – 9 of 9) sorted by relevance

/external/perfetto/src/profiling/common/
Dunwind_support.h94 struct UnwindingMetadata { struct
95 UnwindingMetadata(base::ScopedFile maps_fd, base::ScopedFile mem_fd);
98 UnwindingMetadata(const UnwindingMetadata&) = delete;
99 UnwindingMetadata& operator=(const UnwindingMetadata&) = delete; argument
101 UnwindingMetadata(UnwindingMetadata&&) = default;
102 UnwindingMetadata& operator=(UnwindingMetadata&&) = default; argument
Dunwind_support.cc99 UnwindingMetadata::UnwindingMetadata(base::ScopedFile maps_fd, in UnwindingMetadata() function in perfetto::profiling::UnwindingMetadata
107 void UnwindingMetadata::ReparseMaps() { in ReparseMaps()
118 unwindstack::JitDebug* UnwindingMetadata::GetJitDebug(unwindstack::ArchEnum arch) { in GetJitDebug()
126 unwindstack::DexFiles* UnwindingMetadata::GetDexFiles(unwindstack::ArchEnum arch) { in GetDexFiles()
135 const std::string& UnwindingMetadata::GetBuildId( in GetBuildId()
/external/perfetto/src/profiling/memory/
Dunwinding.h38 bool DoUnwind(WireMessage*, UnwindingMetadata* metadata, AllocRecord* out);
109 UnwindingMetadata metadata;
Dunwinding_unittest.cc142 UnwindingMetadata metadata(std::move(proc_maps), std::move(proc_mem)); in TEST()
162 UnwindingMetadata metadata(std::move(proc_maps), std::move(proc_mem)); in TEST()
Dunwinding_fuzzer.cc48 UnwindingMetadata metadata(base::OpenFile("/proc/self/maps", O_RDONLY), in FuzzUnwinding()
Dunwinding.cc124 bool DoUnwind(WireMessage* msg, UnwindingMetadata* metadata, AllocRecord* out) { in DoUnwind()
323 UnwindingMetadata* unwinding_metadata = &client_data->metadata; in HandleBuffer()
389 UnwindingMetadata metadata(std::move(handoff_data.maps_fd), in HandleHandoffSocket()
/external/perfetto/src/profiling/perf/
Dunwinding.h134 base::Optional<UnwindingMetadata> unwind_state;
179 UnwindingMetadata* unwind_state,
Dunwinding.cc115 UnwindingMetadata{std::move(maps_fd), std::move(mem_fd)}; in AdoptProcDescriptors()
300 UnwindingMetadata* unwind_state, in UnwindSample()
/external/perfetto/docs/design-docs/
Dheapprofd-wire-protocol.md50 …also hands off the `ScopedFile`s for the `/proc` fds. These are used to create `UnwindingMetadata`.