Lines Matching defs:const
33 static std::shared_ptr<DfxMaps> Create(pid_t pid, const std::string& path);
34 static bool Create(const pid_t pid, std::vector<std::shared_ptr<DfxMap>>& maps, std::vector<int>& mapIndex);
36 static bool IsArkHapMapItem(const std::string& name);
37 static bool IsArkCodeMapItem(const std::string& name);
38 static bool IsLegalMapItem(const std::string& name, bool withArk = true);
44 bool FindMapByAddr(uintptr_t addr, std::shared_ptr<DfxMap>& map) const;
45 bool FindMapByFileInfo(std::string name, uint64_t offset, std::shared_ptr<DfxMap>& map) const;
46 bool FindMapsByName(std::string name, std::vector<std::shared_ptr<DfxMap>>& maps) const;
47 const std::vector<std::shared_ptr<DfxMap>>& GetMaps() const { return maps_; }
48 const std::vector<int>& GetMapIndexVec() const { return mapIndex_; }
49 size_t GetMapsSize() const { return maps_.size(); }
55 bool Parse(const pid_t pid, const std::string& path);