Home
last modified time | relevance | path

Searched refs:checkEncryptionParam (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/
H A Dbms_install_daemon_ipc_test.cpp639 CheckEncryptionParam checkEncryptionParam; variable
640 checkEncryptionParam.modulePath = TEST_STRING;
641 checkEncryptionParam.cpuAbi = TEST_STRING;
642 checkEncryptionParam.targetSoPath = TEST_STRING;
643 checkEncryptionParam.bundleId = -1;
645 auto ret = proxy->CheckEncryption(checkEncryptionParam, isEncrypted);
659 CheckEncryptionParam checkEncryptionParam; variable
660 checkEncryptionParam.modulePath = TEST_STRING;
661 checkEncryptionParam.cpuAbi = TEST_STRING;
662 checkEncryptionParam.targetSoPath = TEST_STRING;
[all …]
H A Dbms_install_daemon_host_impl_test.cpp842 CheckEncryptionParam checkEncryptionParam; variable
843 checkEncryptionParam.modulePath = TEST_STRING;
844 checkEncryptionParam.cpuAbi = TEST_STRING;
845 checkEncryptionParam.targetSoPath = TEST_STRING;
846 checkEncryptionParam.bundleId = -1;
848 auto ret = hostImpl->CheckEncryption(checkEncryptionParam, isEncrypted);
H A Dbms_install_daemon_operator_test.cpp1082 CheckEncryptionParam checkEncryptionParam; variable
1083 checkEncryptionParam.modulePath = "";
1084 checkEncryptionParam.cpuAbi = TEST_STRING;
1085 checkEncryptionParam.targetSoPath = TEST_STRING;
1086 checkEncryptionParam.bundleId = -1;
1088 bool res = InstalldOperator::CheckEncryption(checkEncryptionParam, isEncrypted);
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/
H A Dinstalld_operator.cpp1548 if (checkEncryptionParam.cpuAbi.empty() && checkEncryptionParam.targetSoPath.empty()) { in CheckEncryption()
1549 return CheckHapEncryption(checkEncryptionParam, isEncryption); in CheckEncryption()
1551 const std::string cpuAbi = checkEncryptionParam.cpuAbi; in CheckEncryption()
1552 const int32_t bundleId = checkEncryptionParam.bundleId; in CheckEncryption()
1553 InstallBundleType installBundleType = checkEncryptionParam.installBundleType; in CheckEncryption()
1554 const bool isCompressNativeLibrary = checkEncryptionParam.isCompressNativeLibrary; in CheckEncryption()
1559 BundleExtractor extractor(checkEncryptionParam.modulePath); in CheckEncryption()
1576 const std::string targetSoPath = checkEncryptionParam.targetSoPath; in CheckEncryption()
1600 const std::string hapPath = checkEncryptionParam.modulePath; in CheckHapEncryption()
1601 const int32_t bundleId = checkEncryptionParam.bundleId; in CheckHapEncryption()
[all …]
H A Dinstalld_host_impl.cpp1325 ErrCode InstalldHostImpl::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &i… in CheckEncryption() argument
1333 if (checkEncryptionParam.modulePath.empty()) { in CheckEncryption()
1337 if (!InstalldOperator::CheckEncryption(checkEncryptionParam, isEncryption)) { in CheckEncryption()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_installd_client_test/
H A Dbms_installd_client_test.cpp1264 CheckEncryptionParam checkEncryptionParam; variable
1265 checkEncryptionParam.modulePath = "";
1267 ErrCode result = installClient_->CheckEncryption(checkEncryptionParam, isEncryption);
1278 CheckEncryptionParam checkEncryptionParam; variable
1279 checkEncryptionParam.modulePath = "module.path";
1281 ErrCode result = installClient_->CheckEncryption(checkEncryptionParam, isEncryption);
1292 CheckEncryptionParam checkEncryptionParam; variable
1294 ErrCode result = installClient_->CheckEncryption(checkEncryptionParam, isEncryption);
1305 CheckEncryptionParam checkEncryptionParam; variable
1306 checkEncryptionParam.modulePath = "module.path";
[all …]
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dinstalld_client.cpp360 ErrCode InstalldClient::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isE… in CheckEncryption() argument
362 if (checkEncryptionParam.modulePath.empty()) { in CheckEncryption()
365 return CallService(&IInstalld::CheckEncryption, checkEncryptionParam, isEncryption); in CheckEncryption()
H A Dmock_install_client.cpp241 ErrCode InstalldClient::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isE… in CheckEncryption() argument
H A Dmock_installd_host_impl.cpp242 ErrCode InstalldHostImpl::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &i… in CheckEncryption() argument
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/
H A Dinstalld_operator.h272 … static bool CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption);
274 …static bool CheckHapEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryptio…
H A Dinstalld_host_impl.h202 …virtual ErrCode CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncrypti…
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dinstalld_client.cpp427 ErrCode InstalldClient::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isE… in CheckEncryption() argument
429 if (checkEncryptionParam.modulePath.empty()) { in CheckEncryption()
433 return CallService(&IInstalld::CheckEncryption, checkEncryptionParam, isEncryption); in CheckEncryption()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dinstalld_client.h207 ErrCode CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption);
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/
H A Dinstalld_interface.h357 …virtual ErrCode CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncrypti… in CheckEncryption() argument
H A Dinstalld_proxy.h203 virtual ErrCode CheckEncryption(const CheckEncryptionParam &checkEncryptionParam,
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/
H A Dinstalld_proxy.cpp659 ErrCode InstalldProxy::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEn… in CheckEncryption() argument
663 if (!data.WriteParcelable(&checkEncryptionParam)) { in CheckEncryption()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/
H A Dbms_bundle_installer_test.cpp5530 CheckEncryptionParam checkEncryptionParam; variable
5531 checkEncryptionParam.modulePath = "";
5533 ErrCode res = hostImpl.CheckEncryption(checkEncryptionParam, isEncrypted);