Home
last modified time | relevance | path

Searched refs:VintfObject (Results 1 – 12 of 12) sorted by relevance

/system/libvintf/
DVintfObject.cpp93 std::shared_ptr<VintfObject> VintfObject::GetInstance() { in GetInstance()
94 static details::LockedSharedPtr<VintfObject> sInstance{}; in GetInstance()
97 sInstance.object = std::shared_ptr<VintfObject>(VintfObject::Builder().build().release()); in GetInstance()
102 std::shared_ptr<const HalManifest> VintfObject::GetDeviceHalManifest() { in GetDeviceHalManifest()
106 std::shared_ptr<const HalManifest> VintfObject::getDeviceHalManifest() { in getDeviceHalManifest()
108 std::bind(&VintfObject::fetchDeviceHalManifest, this, _1, _2)); in getDeviceHalManifest()
111 std::shared_ptr<const HalManifest> VintfObject::GetFrameworkHalManifest() { in GetFrameworkHalManifest()
115 std::shared_ptr<const HalManifest> VintfObject::getFrameworkHalManifest() { in getFrameworkHalManifest()
117 std::bind(&VintfObject::fetchFrameworkHalManifest, this, _1, _2)); in getFrameworkHalManifest()
120 std::shared_ptr<const CompatibilityMatrix> VintfObject::GetDeviceCompatibilityMatrix() { in GetDeviceCompatibilityMatrix()
[all …]
Dmain.cpp245 auto vm = VintfObject::GetDeviceHalManifest(); in main()
246 auto fm = VintfObject::GetFrameworkHalManifest(); in main()
247 auto vcm = VintfObject::GetDeviceCompatibilityMatrix(); in main()
248 auto fcm = VintfObject::GetFrameworkCompatibilityMatrix(); in main()
249 auto ki = VintfObject::GetRuntimeInfo(); in main()
316 auto compatible = VintfObject::GetInstance()->checkCompatibility(&error); in main()
325 auto deprecate = VintfObject::GetInstance()->checkDeprecation({}, &error); in main()
DAndroid.bp55 "VintfObject.cpp",
Dcheck_vintf.cpp385 VintfObject::Builder() in checkAllFiles()
441 VintfObject::Builder() in checkDirmaps()
/system/hwservicemanager/
DVintf.cpp59 vintf::VintfObject::GetFrameworkHalManifest()); in getTransport()
64 vintf::VintfObject::GetDeviceHalManifest()); in getTransport()
101 fqName, vintf::VintfObject::GetDeviceHalManifest(), "device", &ret); in getInstances()
103 fqName, vintf::VintfObject::GetFrameworkHalManifest(), "framework", &ret); in getInstances()
/system/libvintf/libaidlvintf_test_helper/
DVintf.cpp32 auto deviceManifest = vintf::VintfObject::GetDeviceHalManifest(); in getAidlHalInstanceNames()
37 auto frameworkManifest = vintf::VintfObject::GetFrameworkHalManifest(); in getAidlHalInstanceNames()
/system/libvintf/include/vintf/
DVintfObject.h87 class VintfObject {
89 virtual ~VintfObject() = default;
259 static std::shared_ptr<VintfObject> GetInstance();
352 std::unique_ptr<VintfObject> build();
355 std::unique_ptr<VintfObject> mObject;
360 VintfObject() = default;
DRuntimeInfo.h107 friend class VintfObject; member
DCompatibilityMatrix.h152 friend class VintfObject; member
DHalGroup.h206 friend class VintfObject; member
DHalManifest.h159 friend class VintfObject; member
/system/libvintf/test/
Dvintf_object_tests.cpp413 vintfObject = VintfObject::Builder() in SetUp()
476 std::unique_ptr<VintfObject> vintfObject;
856 static VintfObject::ListInstances getInstanceListFunc( in getInstanceListFunc()