Home
last modified time | relevance | path

Searched refs:targetSoPath (Results 1 – 25 of 33) sorted by relevance

12

/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/
H A Dcode_signature_param.cpp40 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 Dcheck_encryption_param.cpp27 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 Dbasebundleinstallerextractmodulefiles_fuzzer.cpp33 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 Dappservicefwkinstallerupdateappservice_fuzzer.cpp56 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 Dcheck_encryption_param.h34 std::string targetSoPath; member
H A Dcode_signature_param.h26 std::string targetSoPath; member
H A Dinstalld_interface.h56 const std::string &targetSoPath, const std::string &cpuAbi) in ExtractModuleFiles() argument
H A Dinstalld_proxy.h48 const std::string &targetSoPath, const std::string &cpuAbi) override;
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/
H A Dinstalld_operator.cpp332 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 Dbms_install_daemon_ipc_test.cpp552 codeSignatureParam.targetSoPath = TEST_STRING;
574 codeSignatureParam.targetSoPath = TEST_STRING;
642 checkEncryptionParam.targetSoPath = TEST_STRING;
662 checkEncryptionParam.targetSoPath = TEST_STRING;
H A Dbms_install_daemon_operator_test.cpp934 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 Dbms_installd_client_test.cpp125 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 Dinner_shared_bundle_installer.cpp711 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 Dinner_shared_bundle_installer.h119 …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 Dapp_service_fwk_installer.cpp524 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 Dapp_service_fwk_installer.h100 const std::string &targetSoPath) const;
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dinstalld_client.cpp36 const std::string &targetSoPath, const std::string &cpuAbi) in ExtractModuleFiles() argument
43 …return CallService(&IInstalld::ExtractModuleFiles, srcModulePath, targetPath, targetSoPath, cpuAbi… in ExtractModuleFiles()
H A Dmock_install_client.cpp26 const std::string &targetSoPath, const std::string &cpuAbi) in ExtractModuleFiles() argument
H A Dmock_installd_host_impl.cpp38 const std::string &targetSoPath, const std::string &cpuAbi) in ExtractModuleFiles() argument
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dinstalld_client.cpp41 const std::string &targetSoPath, const std::string &cpuAbi) in ExtractModuleFiles() argument
48 …return CallService(&IInstalld::ExtractModuleFiles, srcModulePath, targetPath, targetSoPath, cpuAbi… in ExtractModuleFiles()
H A Dbase_bundle_installer.cpp3502 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 Dbase_bundle_installer.h297 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 Dinstalld_client.h52 const std::string &targetSoPath, const std::string &cpuAbi);
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/quick_fix/
H A Dquick_fix_deployer.cpp900 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 Dinstalld_operator.h96 static bool ExtractFiles(const std::string &sourcePath, const std::string &targetSoPath,

12