Home
last modified time | relevance | path

Searched refs:isDirEmpty (Results 1 – 16 of 16) sorted by relevance

/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/
H A Dbms_bundle_install_driver_test.cpp302 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 Dinstalld_client.cpp331 ErrCode InstalldClient::IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument
333 return CallService(&IInstalld::IsDirEmpty, dir, isDirEmpty); in IsDirEmpty()
H A Dmock_install_client.cpp215 ErrCode InstalldClient::IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument
H A Dmock_installd_host_impl.cpp191 ErrCode InstalldHostImpl::IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dinstalld_client.cpp397 ErrCode InstalldClient::IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument
399 return CallService(&IInstalld::IsDirEmpty, dir, isDirEmpty); in IsDirEmpty()
H A Dbase_bundle_installer.cpp3450 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 Dinstalld_client.h177 ErrCode IsDirEmpty(const std::string &dir, bool &isDirEmpty);
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/
H A Dinstalld_host.cpp664 bool isDirEmpty = false; in HandleIsDirEmpty() local
665 ErrCode result = IsDirEmpty(dir, isDirEmpty); in HandleIsDirEmpty()
667 if (!reply.WriteBool(isDirEmpty)) { in HandleIsDirEmpty()
H A Dinstalld_proxy.cpp565 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 Dbms_install_daemon_ipc_test.cpp470 bool isDirEmpty = true; variable
471 auto ret = proxy->IsDirEmpty(TEST_STRING, isDirEmpty);
H A Dbms_install_daemon_host_impl_test.cpp392 bool isDirEmpty = true; variable
393 auto ret = hostImpl->IsDirEmpty(TEST_STRING, isDirEmpty);
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/
H A Dinstalld_interface.h331 virtual ErrCode IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument
H A Dinstalld_proxy.h192 virtual ErrCode IsDirEmpty(const std::string &dir, bool &isDirEmpty) override;
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/
H A Dinstalld_host_impl.h191 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 Dbms_installd_client_test.cpp1071 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 Dinstalld_host_impl.cpp1260 ErrCode InstalldHostImpl::IsDirEmpty(const std::string &dir, bool &isDirEmpty) in IsDirEmpty() argument
1266 isDirEmpty = InstalldOperator::IsDirEmpty(dir); in IsDirEmpty()