Home
last modified time | relevance | path

Searched refs:hasAidlInstance (Results 1 – 3 of 3) sorted by relevance

/system/libvintf/include/vintf/
DHalManifest.h130 bool hasAidlInstance(const std::string& package, const std::string& interfaceName,
/system/libvintf/test/
DLibVintfTest.cpp3687 EXPECT_TRUE(manifest.hasAidlInstance("android.system.foo", "IFoo", "default")); in TEST_F()
3688 EXPECT_TRUE(manifest.hasAidlInstance("android.system.foo", "IFoo", "test0")); in TEST_F()
3689 EXPECT_FALSE(manifest.hasAidlInstance("android.system.foo", "IFoo", "does_not_exist")); in TEST_F()
3690 EXPECT_FALSE(manifest.hasAidlInstance("android.system.foo", "IDoesNotExist", "default")); in TEST_F()
3691 EXPECT_FALSE(manifest.hasAidlInstance("android.system.does_not_exist", "IFoo", "default")); in TEST_F()
3711 EXPECT_TRUE(manifest.hasAidlInstance("android.system.foo", "IFoo", "default")); in TEST_F()
3712 EXPECT_TRUE(manifest.hasAidlInstance("android.system.foo", "IFoo", "test0")); in TEST_F()
3713 EXPECT_FALSE(manifest.hasAidlInstance("android.system.foo", "IFoo", "does_not_exist")); in TEST_F()
3714 EXPECT_FALSE(manifest.hasAidlInstance("android.system.foo", "IDoesNotExist", "default")); in TEST_F()
3715 EXPECT_FALSE(manifest.hasAidlInstance("android.system.does_not_exist", "IFoo", "default")); in TEST_F()
/system/libvintf/
DHalManifest.cpp524 bool HalManifest::hasAidlInstance(const std::string& package, const std::string& interface, in hasAidlInstance() function in android::vintf::HalManifest