Home
last modified time | relevance | path

Searched refs:CheckEncryption (Results 1 - 22 of 22) sorted by relevance

/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dinstalld_client.cpp355 ErrCode InstalldClient::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption) in CheckEncryption() function in OHOS::AppExecFwk::InstalldClient
360 return CallService(&IInstalld::CheckEncryption, checkEncryptionParam, isEncryption); in CheckEncryption()
H A Dmock_installd_host_impl.cpp235 ErrCode InstalldHostImpl::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption) in CheckEncryption() function in OHOS::AppExecFwk::InstalldHostImpl
H A Dmock_install_client.cpp234 ErrCode InstalldClient::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption) in CheckEncryption() function in OHOS::AppExecFwk::InstalldClient
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/
H A Dgatt_connection_manager.h119 void CheckEncryption();
H A Dgatt_connection_manager.cpp283 device->CheckEncryption(); in GetEncryptionInfo()
295 dev->CheckEncryption(); in GetEncryptionInfo()
1157 void GattConnectionManager::Device::CheckEncryption() in CheckEncryption() function in OHOS::bluetooth::GattConnectionManager::Device
1374 device_.CheckEncryption(); in Entry()
1496 device_.CheckEncryption(); in Entry()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dinstalld_client.cpp416 ErrCode InstalldClient::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption) in CheckEncryption() function in OHOS::AppExecFwk::InstalldClient
422 return CallService(&IInstalld::CheckEncryption, checkEncryptionParam, isEncryption); in CheckEncryption()
H A Dbase_bundle_installer.cpp5317 ErrCode result = InstalldClient::GetInstance()->CheckEncryption(param, isEncrypted); in CheckSoEncryption()
5520 ErrCode result = InstalldClient::GetInstance()->CheckEncryption(param, isEncrypted); in CheckHapEncryption()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/
H A Dinstalld_host_impl.h199 virtual ErrCode CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption) override;
H A Dinstalld_operator.h260 static bool CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dinstalld_client.h202 ErrCode CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/
H A Dinstalld_interface.h351 virtual ErrCode CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption) in CheckEncryption() function in OHOS::AppExecFwk::IInstalld
H A Dinstalld_proxy.h200 virtual ErrCode CheckEncryption(const CheckEncryptionParam &checkEncryptionParam,
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_installd_client_test/
H A Dbms_installd_client_test.cpp1267 * @tc.name: CheckEncryption
1268 * @tc.desc: call CheckEncryption.
1276 ErrCode result = installClient_->CheckEncryption(checkEncryptionParam, isEncryption); in HWTEST_F()
1282 * @tc.name: CheckEncryption
1283 * @tc.desc: call CheckEncryption.
1291 ErrCode result = installClient_->CheckEncryption(checkEncryptionParam, isEncryption); in HWTEST_F()
1305 ErrCode result = installClient_->CheckEncryption(checkEncryptionParam, isEncryption); in HWTEST_F()
1320 ErrCode result = installClient_->CheckEncryption(checkEncryptionParam, isEncryption); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/
H A Dbms_install_daemon_ipc_test.cpp632 * @tc.desc: 1. calling CheckEncryption of proxy
645 auto ret = proxy->CheckEncryption(checkEncryptionParam, isEncrypted); in HWTEST_F()
652 * @tc.desc: 1. calling CheckEncryption of proxy
665 auto ret = installdProxy->CheckEncryption(checkEncryptionParam, isEncrypted); in HWTEST_F()
H A Dbms_install_daemon_operator_test.cpp1116 * @tc.name: test function of CheckEncryption
1117 * @tc.desc: 1. calling CheckEncryption
1127 bool res = InstalldOperator::CheckEncryption(checkEncryptionParam, isEncrypted); in HWTEST_F()
1550 * @tc.desc: 1. calling CheckEncryption of InstalldOperator
1560 auto ret = InstalldOperator::CheckEncryption(checkEncryptionParam, isEncrypted); in HWTEST_F()
1584 * @tc.desc: 1. calling CheckEncryption
1594 auto ret = InstalldOperator::CheckEncryption(checkEncryptionParam, isEncrypted); in HWTEST_F()
H A Dbms_install_daemon_host_impl_test.cpp838 * @tc.desc: 1. calling CheckEncryption of hostImpl
851 auto ret = hostImpl->CheckEncryption(checkEncryptionParam, isEncrypted); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/
H A Dbms_bundle_installer_permission_test.cpp478 * @tc.name: test CheckEncryption
479 * @tc.desc: 1.Test the CheckEncryption of InstalldHostImpl without permission
487 ErrCode ret = installdHostImpl.CheckEncryption(checkEncryptionParam, isEncrypted); in HWTEST_F()
H A Dbms_bundle_installer_test.cpp5488 * @tc.name: test function of CheckEncryption
5489 * @tc.desc: 1. calling CheckEncryption
5497 ErrCode res = hostImpl.CheckEncryption(checkEncryptionParam, isEncrypted); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/
H A Dinstalld_host_impl.cpp1273 ErrCode InstalldHostImpl::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption) in CheckEncryption() function in OHOS::AppExecFwk::InstalldHostImpl
1282 LOG_E(BMS_TAG_INSTALLD, "Calling the function CheckEncryption with invalid param"); in CheckEncryption()
1285 if (!InstalldOperator::CheckEncryption(checkEncryptionParam, isEncryption)) { in CheckEncryption()
H A Dinstalld_operator.cpp1425 bool InstalldOperator::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption) in CheckEncryption() function in OHOS::AppExecFwk::InstalldOperator
1468 LOG_D(BMS_TAG_INSTALLD, "CheckEncryption the targetSoPath is %{public}s", (path + fileName).c_str()); in CheckEncryption()
2191 LOG_E(BMS_TAG_INSTALLD, "CheckEncryption failed due to %{public}d", ret); in EnforceEncryption()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/
H A Dinstalld_host.cpp706 ErrCode result = CheckEncryption(*info, isEncryption); in HandleCheckEncryption()
H A Dinstalld_proxy.cpp630 ErrCode InstalldProxy::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption) in CheckEncryption() function in OHOS::AppExecFwk::InstalldProxy

Completed in 53 milliseconds