Home
last modified time | relevance | path

Searched refs:deactivatePackage (Results 1 – 5 of 5) sorted by relevance

/system/apex/apexd/aidl/android/apex/
DIApexService.aidl77 void deactivatePackage(in @utf8InCpp String package_path); in deactivatePackage() method
/system/apex/apexd/
Dapexd.h66 android::base::Result<void> deactivatePackage(const std::string& full_path)
Dapexservice.cpp83 BinderStatus deactivatePackage(const std::string& packagePath) override;
347 BinderStatus ApexService::deactivatePackage(const std::string& packagePath) { in deactivatePackage() function in android::apex::binder::__anond65ff5a10111::ApexService
356 Result<void> res = ::android::apex::deactivatePackage(packagePath); in deactivatePackage()
806 BinderStatus status = deactivatePackage(String8(args[1]).string()); in shellCommand()
Dapexservice_test.cpp990 service_->deactivatePackage(installer_->test_installed_file); in TearDown()
992 service_->deactivatePackage(installer_->test_file); in TearDown()
1303 IsOk(service_->deactivatePackage(installer_->test_installed_file))); in TEST_F()
1454 ASSERT_TRUE(IsOk(service_->deactivatePackage(system_shim.modulePath))); in SetUp()
1463 service_->deactivatePackage(installer_->test_installed_file); in TearDown()
1551 IsOk(service_->deactivatePackage(installer_->test_installed_file))); in TEST_F()
1570 IsOk(service_->deactivatePackage(installer_->test_installed_file))); in TEST_F()
2761 if (auto ret = service_->deactivatePackage(kSystemPath); !ret.isOk()) { in TEST_F()
Dapexd.cpp1034 Result<void> deactivatePackage(const std::string& full_path) { in deactivatePackage() function
1917 if (auto ret = deactivatePackage(path); !ret.ok()) { in remountApexFile()