Home
last modified time | relevance | path

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

/external/perfetto/src/profiling/common/
Dunwind_support.cc46 FDMemory::FDMemory(base::ScopedFile mem_fd) : mem_fd_(std::move(mem_fd)) {} in FDMemory() function in perfetto::profiling::FDMemory
48 size_t FDMemory::Read(uint64_t addr, void* dst, size_t size) { in Read()
102 fd_mem(std::make_shared<FDMemory>(std::move(mem_fd))) { in UnwindingMetadata()
Dunwind_support.h67 class FDMemory : public unwindstack::Memory {
69 explicit FDMemory(base::ScopedFile mem_fd);
/external/perfetto/src/profiling/memory/
Dunwinding_unittest.cc40 std::shared_ptr<FDMemory> mem( in TEST()
41 std::make_shared<FDMemory>(std::move(proc_mem))); in TEST()
54 std::shared_ptr<FDMemory> mem( in TEST()
55 std::make_shared<FDMemory>(std::move(proc_mem))); in TEST()
/external/perfetto/docs/design-docs/
Dheapprofd-design.md85 … the copied stack over the process memory (which is accessed using FDMemory). FDMemory uses read o…