Home
last modified time | relevance | path

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

/system/libvintf/test/
DLibVintfTest.cpp823 EXPECT_FALSE(ki.checkCompatibility(cm)) << "Kernel version shouldn't match"; in TEST_F()
829 EXPECT_FALSE(ki.checkCompatibility(cm)) << "Kernel version shouldn't match"; in TEST_F()
835 EXPECT_TRUE(ki.checkCompatibility(cm, &error)) << error; in TEST_F()
842 EXPECT_TRUE(ki.checkCompatibility(cm, &error)) << error; in TEST_F()
844 EXPECT_FALSE(ki.checkCompatibility(cm, &error)) in TEST_F()
854 EXPECT_FALSE(ki.checkCompatibility(cm)) << "Value shouldn't match for tristate"; in TEST_F()
862 EXPECT_FALSE(ki.checkCompatibility(cm)) << "Type shouldn't match"; in TEST_F()
870 EXPECT_FALSE(ki.checkCompatibility(cm)) << "Value shouldn't match for string"; in TEST_F()
878 EXPECT_FALSE(ki.checkCompatibility(cm)) << "Type shouldn't match"; in TEST_F()
886 EXPECT_FALSE(ki.checkCompatibility(cm)) << "Value shouldn't match for integer"; in TEST_F()
[all …]
Dvintf_object_tests.cpp505 int checkCompatibility(const std::vector<std::string>& xmls, std::string* error) { in checkCompatibility() function in android::vintf::testing::VintfObjectTestBase
506 return vintfObject->checkCompatibility(xmls, error); in checkCompatibility()
534 int result = checkCompatibility(packageInfo, &error); in TEST_F()
551 int result = checkCompatibility(packageInfo, &error); in TEST_F()
562 int result = checkCompatibility(packageInfo, &error); in TEST_F()
577 int result = checkCompatibility(packageInfo, &error); in TEST_F()
592 int result = checkCompatibility(packageInfo, &error); in TEST_F()
608 int result = checkCompatibility(packageInfo, &error); in TEST_F()
619 int result = checkCompatibility(packageInfo, &error); in TEST_F()
630 int result = checkCompatibility(packageInfo, &error); in TEST_F()
[all …]
/system/libvintf/include/vintf/
DRuntimeInfo.h76 bool checkCompatibility(const CompatibilityMatrix& mat, std::string* error = nullptr,
DVintfObject.h139 int32_t checkCompatibility(std::string* error = nullptr,
321 int32_t checkCompatibility(const std::vector<std::string>& packageInfo,
DHalManifest.h76 bool checkCompatibility(const CompatibilityMatrix &mat, std::string *error = nullptr) const;
/system/libvintf/
DVintfObject.cpp515 int32_t VintfObject::checkCompatibility(const std::vector<std::string>& xmls, std::string* error, in checkCompatibility() function in android::vintf::VintfObject
542 return afterUpdate.checkCompatibility(error, flags); in checkCompatibility()
545 int32_t VintfObject::checkCompatibility(std::string* error, CheckFlags::Type flags) { in checkCompatibility() function in android::vintf::VintfObject
574 if (!getDeviceHalManifest()->checkCompatibility(*getFrameworkCompatibilityMatrix(), error)) { in checkCompatibility()
581 if (!getFrameworkHalManifest()->checkCompatibility(*getDeviceCompatibilityMatrix(), error)) { in checkCompatibility()
596 if (!getRuntimeInfo()->checkCompatibility(*getFrameworkCompatibilityMatrix(), error, in checkCompatibility()
655 return GetInstance()->checkCompatibility(xmls, error, flags); in CheckCompatibility()
DRuntimeInfo.cpp72 bool RuntimeInfo::checkCompatibility(const CompatibilityMatrix& mat, std::string* error, in checkCompatibility() function in android::vintf::RuntimeInfo
Dmain.cpp294 bool compatible = vm->checkCompatibility(*fcm, &error); in main()
302 bool compatible = fm->checkCompatibility(*vcm, &error); in main()
310 bool compatible = ki->checkCompatibility(*fcm, &error); in main()
Dcheck_vintf.cpp134 if (!manifest->checkCompatibility(*matrix, &error)) { in checkCompatibilityForFiles()
229 return vintfObject->checkCompatibility(error, CheckFlags::DISABLE_RUNTIME_INFO); in checkAllFiles()
DVintfObjectRecovery.cpp144 return vintfObject->checkCompatibility(xmls, error); in CheckCompatibility()
DAssembleVintf.cpp267 if (!manifest.checkCompatibility(matrix, &error)) { in checkDualFile()
393 if (!halManifest->checkCompatibility(generatedMatrix, &error)) { in assembleHalManifest()
DHalManifest.cpp289 bool HalManifest::checkCompatibility(const CompatibilityMatrix &mat, std::string *error) const { in checkCompatibility() function in android::vintf::HalManifest