Home
last modified time | relevance | path

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

/system/libvintf/include/vintf/
DHalManifest.h135 bool hasAidlInstance(const std::string& package, const std::string& interfaceName,
/system/libvintf/test/
DLibVintfTest.cpp3713 EXPECT_TRUE(manifest.hasAidlInstance("android.system.foo", "IFoo", "default")); in TEST_F()
3714 EXPECT_TRUE(manifest.hasAidlInstance("android.system.foo", "IFoo", "test0")); in TEST_F()
3715 EXPECT_FALSE(manifest.hasAidlInstance("android.system.foo", "IFoo", "does_not_exist")); in TEST_F()
3716 EXPECT_FALSE(manifest.hasAidlInstance("android.system.foo", "IDoesNotExist", "default")); in TEST_F()
3717 EXPECT_FALSE(manifest.hasAidlInstance("android.system.does_not_exist", "IFoo", "default")); in TEST_F()
3737 EXPECT_TRUE(manifest.hasAidlInstance("android.system.foo", "IFoo", "default")); in TEST_F()
3738 EXPECT_TRUE(manifest.hasAidlInstance("android.system.foo", "IFoo", "test0")); in TEST_F()
3739 EXPECT_FALSE(manifest.hasAidlInstance("android.system.foo", "IFoo", "does_not_exist")); in TEST_F()
3740 EXPECT_FALSE(manifest.hasAidlInstance("android.system.foo", "IDoesNotExist", "default")); in TEST_F()
3741 EXPECT_FALSE(manifest.hasAidlInstance("android.system.does_not_exist", "IFoo", "default")); in TEST_F()
/system/libvintf/
DHalManifest.cpp566 bool HalManifest::hasAidlInstance(const std::string& package, const std::string& interface, in hasAidlInstance() function in android::vintf::HalManifest