/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/ |
H A D | bms_bundle_install_driver_test.cpp | 302 EXPECT_TRUE(isDirEmpty); 324 EXPECT_TRUE(isDirEmpty); 347 EXPECT_TRUE(isDirEmpty); 367 EXPECT_TRUE(isDirEmpty); 382 EXPECT_TRUE(isDirEmpty); 397 EXPECT_TRUE(isDirEmpty); 413 EXPECT_TRUE(isDirEmpty); 443 EXPECT_TRUE(isDirEmpty); 461 EXPECT_TRUE(isDirEmpty); 484 EXPECT_TRUE(isDirEmpty); [all …]
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/ |
H A D | installd_client.cpp | 331 ErrCode InstalldClient::IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument 333 return CallService(&IInstalld::IsDirEmpty, dir, isDirEmpty); in IsDirEmpty()
|
H A D | mock_install_client.cpp | 215 ErrCode InstalldClient::IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument
|
H A D | mock_installd_host_impl.cpp | 191 ErrCode InstalldHostImpl::IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | installd_client.cpp | 397 ErrCode InstalldClient::IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument 399 return CallService(&IInstalld::IsDirEmpty, dir, isDirEmpty); in IsDirEmpty()
|
H A D | base_bundle_installer.cpp | 3450 bool isDirEmpty = false; in RemoveEmptyDirs() local 3451 InstalldClient::GetInstance()->IsDirEmpty(moduleDir, isDirEmpty); in RemoveEmptyDirs() 3452 if (isDirEmpty) { in RemoveEmptyDirs() 5692 bool isDirEmpty = false; in RemoveTempPathOnlyUsedForSo() local 5693 if (InstalldClient::GetInstance()->IsDirEmpty(tempDir, isDirEmpty) != ERR_OK) { in RemoveTempPathOnlyUsedForSo() 5696 if (isDirEmpty && (InstalldClient::GetInstance()->RemoveDir(tempDir) != ERR_OK)) { in RemoveTempPathOnlyUsedForSo()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | installd_client.h | 177 ErrCode IsDirEmpty(const std::string &dir, bool &isDirEmpty);
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/ |
H A D | installd_host.cpp | 664 bool isDirEmpty = false; in HandleIsDirEmpty() local 665 ErrCode result = IsDirEmpty(dir, isDirEmpty); in HandleIsDirEmpty() 667 if (!reply.WriteBool(isDirEmpty)) { in HandleIsDirEmpty()
|
H A D | installd_proxy.cpp | 565 ErrCode InstalldProxy::IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument 578 isDirEmpty = reply.ReadBool(); in IsDirEmpty()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/ |
H A D | bms_install_daemon_ipc_test.cpp | 470 bool isDirEmpty = true; variable 471 auto ret = proxy->IsDirEmpty(TEST_STRING, isDirEmpty);
|
H A D | bms_install_daemon_host_impl_test.cpp | 392 bool isDirEmpty = true; variable 393 auto ret = hostImpl->IsDirEmpty(TEST_STRING, isDirEmpty);
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/ |
H A D | installd_interface.h | 331 virtual ErrCode IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument
|
H A D | installd_proxy.h | 192 virtual ErrCode IsDirEmpty(const std::string &dir, bool &isDirEmpty) override;
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/ |
H A D | installd_host_impl.h | 191 virtual ErrCode IsDirEmpty(const std::string &dir, bool &isDirEmpty) override;
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_installd_client_test/ |
H A D | bms_installd_client_test.cpp | 1071 bool isDirEmpty = true; variable 1072 ErrCode result = installClient_->IsDirEmpty(dir, isDirEmpty); 1073 EXPECT_EQ(result, installClient_->CallService(&IInstalld::IsDirEmpty, dir, isDirEmpty));
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/ |
H A D | installd_host_impl.cpp | 1260 ErrCode InstalldHostImpl::IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument 1266 isDirEmpty = InstalldOperator::IsDirEmpty(dir); in IsDirEmpty()
|