Searched refs:FDMaps (Results 1 – 4 of 4) sorted by relevance
42 class FDMaps : public unwindstack::Maps {44 explicit FDMaps(base::ScopedFile fd);46 FDMaps(const FDMaps&) = delete;47 FDMaps& operator=(const FDMaps&) = delete;49 FDMaps(FDMaps&& m) : Maps(std::move(m)) { fd_ = std::move(m.fd_); } in FDMaps() function51 FDMaps& operator=(FDMaps&& m) {58 virtual ~FDMaps() override = default;114 FDMaps fd_maps;
58 FDMaps::FDMaps(base::ScopedFile fd) : fd_(std::move(fd)) {} in FDMaps() function in perfetto::profiling::FDMaps60 bool FDMaps::Parse() { in Parse()95 void FDMaps::Reset() { in Reset()
65 FDMaps maps(std::move(proc_maps)); in TEST()
112 We add an `FDMaps` objects to parse maps from `/proc/self/maps` sent by the target process. We keep…