/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/ |
H A D | bms_install_daemon_ipc_test.cpp | 639 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 D | bms_install_daemon_host_impl_test.cpp | 842 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 D | bms_install_daemon_operator_test.cpp | 1082 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 D | installd_operator.cpp | 1548 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 D | installd_host_impl.cpp | 1325 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 D | bms_installd_client_test.cpp | 1264 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 D | installd_client.cpp | 360 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 D | mock_install_client.cpp | 241 ErrCode InstalldClient::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isE… in CheckEncryption() argument
|
H A D | mock_installd_host_impl.cpp | 242 ErrCode InstalldHostImpl::CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &i… in CheckEncryption() argument
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/ |
H A D | installd_operator.h | 272 … static bool CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption); 274 …static bool CheckHapEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryptio…
|
H A D | installd_host_impl.h | 202 …virtual ErrCode CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncrypti…
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | installd_client.cpp | 427 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 D | installd_client.h | 207 ErrCode CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncryption);
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/ |
H A D | installd_interface.h | 357 …virtual ErrCode CheckEncryption(const CheckEncryptionParam &checkEncryptionParam, bool &isEncrypti… in CheckEncryption() argument
|
H A D | installd_proxy.h | 203 virtual ErrCode CheckEncryption(const CheckEncryptionParam &checkEncryptionParam,
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/ |
H A D | installd_proxy.cpp | 659 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 D | bms_bundle_installer_test.cpp | 5530 CheckEncryptionParam checkEncryptionParam; variable 5531 checkEncryptionParam.modulePath = ""; 5533 ErrCode res = hostImpl.CheckEncryption(checkEncryptionParam, isEncrypted);
|