Searched refs:FDMaps (Results 1 – 4 of 4) sorted by relevance
41 class FDMaps : public unwindstack::Maps {43 explicit FDMaps(base::ScopedFile fd);45 FDMaps(const FDMaps&) = delete;46 FDMaps& operator=(const FDMaps&) = delete;48 FDMaps(FDMaps&& m) : Maps(std::move(m)) { fd_ = std::move(m.fd_); } in FDMaps() function50 FDMaps& operator=(FDMaps&& m) {57 virtual ~FDMaps() override = default;113 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()90 void FDMaps::Reset() { in Reset()
69 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…