Home
last modified time | relevance | path

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

/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()
Dunwinding.h69 class FDMemory : public unwindstack::Memory {
71 FDMemory(base::ScopedFile mem_fd);
100 fd_mem(std::make_shared<FDMemory>(std::move(mem))) in UnwindingMetadata()
Dunwinding.cc137 FDMemory::FDMemory(base::ScopedFile mem_fd) : mem_fd_(std::move(mem_fd)) {} in FDMemory() function in perfetto::profiling::FDMemory
139 size_t FDMemory::Read(uint64_t addr, void* dst, size_t size) { in Read()