Home
last modified time | relevance | path

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

/external/perfetto/src/profiling/common/
Dunwind_support.h51 class FDMaps : public unwindstack::Maps {
53 FDMaps(base::ScopedFile fd);
55 FDMaps(const FDMaps&) = delete;
56 FDMaps& operator=(const FDMaps&) = delete;
58 FDMaps(FDMaps&& m) : Maps(std::move(m)) { fd_ = std::move(m.fd_); } in FDMaps() function
60 FDMaps& operator=(FDMaps&& m) {
67 virtual ~FDMaps() override = default;
117 FDMaps fd_maps;
Dunwind_support.cc57 FDMaps::FDMaps(base::ScopedFile fd) : fd_(std::move(fd)) {} in FDMaps() function in perfetto::profiling::FDMaps
59 bool FDMaps::Parse() { in Parse()
88 void FDMaps::Reset() { in Reset()
/external/perfetto/src/profiling/memory/
Dunwinding_unittest.cc64 FDMaps maps(std::move(proc_maps)); in TEST()
/external/perfetto/docs/design-docs/
Dheapprofd-design.md112 We add an `FDMaps` objects to parse maps from `/proc/self/maps` sent by the target process. We keep…