Searched refs:UnwindingMetadata (Results 1 – 9 of 9) sorted by relevance
/external/perfetto/src/profiling/common/ |
D | unwind_support.h | 94 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
|
D | unwind_support.cc | 99 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/ |
D | unwinding.h | 38 bool DoUnwind(WireMessage*, UnwindingMetadata* metadata, AllocRecord* out); 109 UnwindingMetadata metadata;
|
D | unwinding_unittest.cc | 142 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()
|
D | unwinding_fuzzer.cc | 48 UnwindingMetadata metadata(base::OpenFile("/proc/self/maps", O_RDONLY), in FuzzUnwinding()
|
D | unwinding.cc | 124 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/ |
D | unwinding.h | 134 base::Optional<UnwindingMetadata> unwind_state; 179 UnwindingMetadata* unwind_state,
|
D | unwinding.cc | 115 UnwindingMetadata{std::move(maps_fd), std::move(mem_fd)}; in AdoptProcDescriptors() 300 UnwindingMetadata* unwind_state, in UnwindSample()
|
/external/perfetto/docs/design-docs/ |
D | heapprofd-wire-protocol.md | 50 …also hands off the `ScopedFile`s for the `/proc` fds. These are used to create `UnwindingMetadata`.
|