/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/ |
H A D | installd_client.cpp | 380 ErrCode InstalldClient::ExtractEncryptedSoFiles(const std::string &hapPath, const std::string &realSoFilesPath, in ExtractEncryptedSoFiles() argument 387 return CallService(&IInstalld::ExtractEncryptedSoFiles, hapPath, realSoFilesPath, cpuAbi, tmpSoPath, uid); in ExtractEncryptedSoFiles()
|
H A D | mock_installd_host_impl.cpp | 251 ErrCode InstalldHostImpl::ExtractEncryptedSoFiles(const std::string &hapPath, const std::string &realSoFilesPath,
in ExtractEncryptedSoFiles() argument
|
H A D | mock_install_client.cpp | 255 ErrCode InstalldClient::ExtractEncryptedSoFiles(const std::string &hapPath, const std::string &realSoFilesPath, in ExtractEncryptedSoFiles() argument
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/quick_fix/ |
H A D | quick_fix_deployer.cpp | 878 std::string realSoFilesPath; in ExtractEncryptedSoFiles() local 880 realSoFilesPath.append(Constants::BUNDLE_CODE_DIR).append(ServiceConstants::PATH_SEPARATOR) in ExtractEncryptedSoFiles() 887 realSoFilesPath.c_str(), tmpSoPath.c_str()); in ExtractEncryptedSoFiles() 888 return InstalldClient::GetInstance()->ExtractEncryptedSoFiles(hapPath, realSoFilesPath, cpuAbi, tmpSoPath, uid) == in ExtractEncryptedSoFiles()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | installd_client.cpp | 506 ErrCode InstalldClient::ExtractEncryptedSoFiles(const std::string &hapPath, const std::string &realSoFilesPath, in ExtractEncryptedSoFiles() argument 513 return CallService(&IInstalld::ExtractEncryptedSoFiles, hapPath, realSoFilesPath, cpuAbi, tmpSoPath, uid); in ExtractEncryptedSoFiles()
|
H A D | base_bundle_installer.cpp | 2638 std::string realSoFilesPath; in ExtractEncryptedSoFiles() local 2640 realSoFilesPath.append(Constants::BUNDLE_CODE_DIR).append(ServiceConstants::PATH_SEPARATOR) in ExtractEncryptedSoFiles() 2642 if (realSoFilesPath.back() != ServiceConstants::PATH_SEPARATOR[0]) { in ExtractEncryptedSoFiles() 2643 realSoFilesPath += ServiceConstants::PATH_SEPARATOR; in ExtractEncryptedSoFiles() 2646 LOG_D(BMS_TAG_INSTALLER, "real path %{public}s tmpPath %{public}s", realSoFilesPath.c_str(), tmpSoPath.c_str()); in ExtractEncryptedSoFiles() 2647 return InstalldClient::GetInstance()->ExtractEncryptedSoFiles(modulePath_, realSoFilesPath, cpuAbi, in ExtractEncryptedSoFiles()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/ |
H A D | installd_host_impl.h | 206 virtual ErrCode ExtractEncryptedSoFiles(const std::string &hapPath, const std::string &realSoFilesPath,
|
H A D | installd_operator.h | 279 static ErrCode ExtractSoFilesToTmpSoPath(const std::string &hapPath, const std::string &realSoFilesPath,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | installd_client.h | 215 ErrCode ExtractEncryptedSoFiles(const std::string &hapPath, const std::string &realSoFilesPath,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/ |
H A D | installd_interface.h | 367 virtual ErrCode ExtractEncryptedSoFiles(const std::string &hapPath, const std::string &realSoFilesPath, in ExtractEncryptedSoFiles() argument
|
H A D | installd_proxy.h | 208 virtual ErrCode ExtractEncryptedSoFiles(const std::string &hapPath, const std::string &realSoFilesPath,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_installd_client_test/ |
H A D | bms_installd_client_test.cpp | 1430 const std::string realSoFilesPath; in HWTEST_F() local 1436 realSoFilesPath, cpuAbi, tmpSoPath, uid); in HWTEST_F() 1448 const std::string realSoFilesPath = "realSofiles.path"; in HWTEST_F() local 1454 realSoFilesPath, cpuAbi, tmpSoPath, uid); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/ |
H A D | installd_host_impl.cpp | 1330 ErrCode InstalldHostImpl::ExtractEncryptedSoFiles(const std::string &hapPath, const std::string &realSoFilesPath, in ExtractEncryptedSoFiles() argument 1347 !CheckPathValid(realSoFilesPath, Constants::BUNDLE_CODE_DIR) || in ExtractEncryptedSoFiles() 1351 if (realSoFilesPath.empty()) { in ExtractEncryptedSoFiles() 1355 /* obtain the decoded so files from realSoFilesPath*/ in ExtractEncryptedSoFiles() 1356 return InstalldOperator::ExtractSoFilesToTmpSoPath(hapPath, realSoFilesPath, cpuAbi, tmpSoPath, uid); in ExtractEncryptedSoFiles()
|
H A D | installd_operator.cpp | 1800 ErrCode InstalldOperator::ExtractSoFilesToTmpSoPath(const std::string &hapPath, const std::string &realSoFilesPath, in ExtractSoFilesToTmpSoPath() argument 1804 if (realSoFilesPath.empty()) { in ExtractSoFilesToTmpSoPath() 1844 std::string soPath = realSoFilesPath + soFileName; in ExtractSoFilesToTmpSoPath()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/ |
H A D | installd_host.cpp | 746 std::string realSoFilesPath = Str16ToStr8(data.ReadString16()); in HandExtractEncryptedSoFiles() local 751 ErrCode result = ExtractEncryptedSoFiles(hapPath, realSoFilesPath, cpuAbi, tmpSoPath, uid); in HandExtractEncryptedSoFiles()
|
H A D | installd_proxy.cpp | 687 ErrCode InstalldProxy::ExtractEncryptedSoFiles(const std::string &hapPath, const std::string &realSoFilesPath, in ExtractEncryptedSoFiles() argument 693 INSTALLD_PARCEL_WRITE(data, String16, Str8ToStr16(realSoFilesPath)); in ExtractEncryptedSoFiles()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/ |
H A D | bms_install_daemon_test.cpp | 1092 std::string realSoFilesPath; in HWTEST_F() local 1096 ErrCode ret = hostImpl.ExtractEncryptedSoFiles(hapPath, realSoFilesPath, cpuAbi, tmpSoPath, uid); in HWTEST_F()
|