/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/ |
H A D | code_signature_param.cpp | 40 targetSoPath = Str16ToStr8(parcel.ReadString16()); in ReadFromParcel() 53 WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, Str8ToStr16(targetSoPath)); in Marshalling() 78 { CODE_SIGNATURE_TARGET_SO_PATH, targetSoPath }, in ToString()
|
H A D | check_encryption_param.cpp | 27 targetSoPath = Str16ToStr8(parcel.ReadString16()); in ReadFromParcel() 38 WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, Str8ToStr16(targetSoPath)); in Marshalling()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_others/basebundleinstallerextractmodulefiles_fuzzer/ |
H A D | basebundleinstallerextractmodulefiles_fuzzer.cpp | 33 std::string targetSoPath; in DoSomethingInterestingWithMyAPI() local 35 auto ret1 = basebundleinstall.ExtractModuleFiles(info, modulePath, targetSoPath, cpuAbi); in DoSomethingInterestingWithMyAPI()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_others/appservicefwkinstallerupdateappservice_fuzzer/ |
H A D | appservicefwkinstallerupdateappservice_fuzzer.cpp | 56 std::string targetSoPath(data, size); in DoSomethingInterestingWithMyAPI() local 58 appServiceFwk.VerifyCodeSignatureForNativeFiles(bundlePath, cpuAbi, targetSoPath); in DoSomethingInterestingWithMyAPI()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/ |
H A D | check_encryption_param.h | 34 std::string targetSoPath; member
|
H A D | code_signature_param.h | 26 std::string targetSoPath; member
|
H A D | installd_interface.h | 56 const std::string &targetSoPath, const std::string &cpuAbi) in ExtractModuleFiles() argument
|
H A D | installd_proxy.h | 48 const std::string &targetSoPath, const std::string &cpuAbi) override;
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/ |
H A D | installd_operator.cpp | 332 bool InstalldOperator::ExtractFiles(const std::string &sourcePath, const std::string &targetSoPath, in ExtractFiles() argument 336 if (targetSoPath.empty()) { in ExtractFiles() 352 …for_each(soEntryFiles.begin(), soEntryFiles.end(), [&extractor, &targetSoPath, &cpuAbi](const auto… in ExtractFiles() 353 ExtractTargetFile(extractor, entry, targetSoPath, cpuAbi); in ExtractFiles() 1468 if (codeSignatureParam.targetSoPath.empty()) { in PrepareEntryMap() 1475 std::string path = codeSignatureParam.targetSoPath; in PrepareEntryMap() 1548 if (checkEncryptionParam.cpuAbi.empty() && checkEncryptionParam.targetSoPath.empty()) { in CheckEncryption() 1576 const std::string targetSoPath = checkEncryptionParam.targetSoPath; in CheckEncryption() local 1579 if (!targetSoPath.empty()) { in CheckEncryption() 1581 …std::for_each(soEntryFiles.begin(), soEntryFiles.end(), [&entryMap, &prefix, &targetSoPath](const … in CheckEncryption() [all …]
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/ |
H A D | bms_install_daemon_ipc_test.cpp | 552 codeSignatureParam.targetSoPath = TEST_STRING; 574 codeSignatureParam.targetSoPath = TEST_STRING; 642 checkEncryptionParam.targetSoPath = TEST_STRING; 662 checkEncryptionParam.targetSoPath = TEST_STRING;
|
H A D | bms_install_daemon_operator_test.cpp | 934 codeSignatureParam.targetSoPath = TEST_STRING; 1085 checkEncryptionParam.targetSoPath = TEST_STRING; 1373 codeSignatureParam.targetSoPath = "target/file.path";
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_installd_client_test/ |
H A D | bms_installd_client_test.cpp | 125 std::string targetSoPath = TARGET_SO_PATH; variable 127 …ErrCode result = installClient_->ExtractModuleFiles(srcModulePath, targetPath, targetSoPath, cpuAb… 142 std::string targetSoPath = TARGET_SO_PATH; variable 144 …ErrCode result = installClient_->ExtractModuleFiles(srcModulePath, targetPath, targetSoPath, cpuAb… 159 std::string targetSoPath = TARGET_SO_PATH; variable 161 …ErrCode result = installClient_->ExtractModuleFiles(srcModulePath, targetPath, targetSoPath, cpuAb… 163 srcModulePath, targetPath, targetSoPath, cpuAbi));
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/shared/ |
H A D | inner_shared_bundle_installer.cpp | 711 const std::string &cpuAbi, const std::string &targetSoPath, const std::string &signatureFileDir, in VerifyCodeSignatureForNativeFiles() argument 723 codeSignatureParam.targetSoPath = targetSoPath; in VerifyCodeSignatureForNativeFiles() 740 codeSignatureParam.targetSoPath = tempSoPath_; in VerifyCodeSignatureForHsp()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/shared/ |
H A D | inner_shared_bundle_installer.h | 119 …const std::string &targetSoPath, const std::string &signatureFileDir, bool isPreInstalledBundle) c…
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/app_service_fwk/ |
H A D | app_service_fwk_installer.cpp | 524 codeSignatureParam.targetSoPath = realSoPath; in VerifyCodeSignatureForHsp() 993 const std::string &cpuAbi, const std::string &targetSoPath) const in VerifyCodeSignatureForNativeFiles() 999 codeSignatureParam.targetSoPath = targetSoPath; in VerifyCodeSignatureForNativeFiles()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/app_service_fwk/ |
H A D | app_service_fwk_installer.h | 100 const std::string &targetSoPath) const;
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/ |
H A D | installd_client.cpp | 36 const std::string &targetSoPath, const std::string &cpuAbi) in ExtractModuleFiles() argument 43 …return CallService(&IInstalld::ExtractModuleFiles, srcModulePath, targetPath, targetSoPath, cpuAbi… in ExtractModuleFiles()
|
H A D | mock_install_client.cpp | 26 const std::string &targetSoPath, const std::string &cpuAbi) in ExtractModuleFiles() argument
|
H A D | mock_installd_host_impl.cpp | 38 const std::string &targetSoPath, const std::string &cpuAbi) in ExtractModuleFiles() argument
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | installd_client.cpp | 41 const std::string &targetSoPath, const std::string &cpuAbi) in ExtractModuleFiles() argument 48 …return CallService(&IInstalld::ExtractModuleFiles, srcModulePath, targetPath, targetSoPath, cpuAbi… in ExtractModuleFiles()
|
H A D | base_bundle_installer.cpp | 3502 const std::string &targetSoPath, const std::string &cpuAbi) in ExtractModuleFiles() argument 4989 std::string targetSoPath; in InnerProcessNativeLibs() local 5009 targetSoPathMap_.emplace(info.GetCurModuleName(), targetSoPath); in InnerProcessNativeLibs() 5014 modulePath.c_str(), targetSoPath.c_str(), cpuAbi.c_str()); in InnerProcessNativeLibs() 5027 result = CheckSoEncryption(info, cpuAbi, targetSoPath); in InnerProcessNativeLibs() 5052 codeSignatureParam.targetSoPath = targetSoPath; in VerifyCodeSignatureForNativeFiles() 5080 auto targetSoPath = targetSoPathMap_.find(moduleName); in VerifyCodeSignatureForHap() local 5082 if (targetSoPath != targetSoPathMap_.end()) { in VerifyCodeSignatureForHap() 5083 codeSignatureParam.targetSoPath = targetSoPath->second; in VerifyCodeSignatureForHap() 5097 const std::string &targetSoPath) in CheckSoEncryption() argument [all …]
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | base_bundle_installer.h | 297 const std::string &targetSoPath, const std::string &cpuAbi); 623 …eckSoEncryption(InnerBundleInfo &info, const std::string &cpuAbi, const std::string &targetSoPath); 673 const std::string &targetSoPath, const std::string &signatureFileDir) const;
|
H A D | installd_client.h | 52 const std::string &targetSoPath, const std::string &cpuAbi);
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/quick_fix/ |
H A D | quick_fix_deployer.cpp | 900 codeSignatureParam.targetSoPath = ""; in PrepareCodeSignatureParam() 903 codeSignatureParam.targetSoPath = soPath; in PrepareCodeSignatureParam() 916 codeSignatureParam.targetSoPath = ""; in PrepareCodeSignatureParam()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/ |
H A D | installd_operator.h | 96 static bool ExtractFiles(const std::string &sourcePath, const std::string &targetSoPath,
|