Lines Matching refs:shared_ptr
39 std::shared_ptr<const HalManifest> getDeviceHalManifest(bool skipCache = false) override {
44 std::shared_ptr<const HalManifest> getFrameworkHalManifest(bool skipCache = false) override {
49 std::shared_ptr<const CompatibilityMatrix> getDeviceCompatibilityMatrix(
55 std::shared_ptr<const CompatibilityMatrix> getFrameworkCompatibilityMatrix(
73 bool set(const std::shared_ptr<HalManifest>& o) { in set()
77 bool set(const std::shared_ptr<CompatibilityMatrix>& o) { in set()
83 std::shared_ptr<HalManifest> mDeviceManifest;
84 std::shared_ptr<HalManifest> mFrameworkManifest;
85 std::shared_ptr<CompatibilityMatrix> mDeviceMatrix;
86 std::shared_ptr<CompatibilityMatrix> mFrameworkMatrix;
89 bool set(const std::shared_ptr<T>& o, std::shared_ptr<T>* dev, std::shared_ptr<T>* fwk) { in set()