Searched refs:arkProfilePath (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/aot/ |
H A D | aot_handler.cpp | 148 aotArgs.arkProfilePath = GetArkProfilePath(aotArgs.bundleName, aotArgs.moduleName); in BuildAOTArgs() 149 if (aotArgs.arkProfilePath.empty()) { in BuildAOTArgs() 319 std::string arkProfilePath; in DeleteArkAp() local 320 arkProfilePath.append(ServiceConstants::ARK_PROFILE_PATH).append(std::to_string(userId)) in DeleteArkAp() 323 std::string runtimeAp = arkProfilePath; in DeleteArkAp() 324 std::string mergedAp = arkProfilePath; in DeleteArkAp() 446 std::string arkProfilePath; in CopyApWithBundle() local 447 arkProfilePath.append(ServiceConstants::ARK_PROFILE_PATH).append(std::to_string(userId)) in CopyApWithBundle() 451 …std::string mergedAp = arkProfilePath + PGO_MERGED_AP_PREFIX + moduleName + ServiceConstants::AP_S… in CopyApWithBundle() 452 … std::string rtAp = arkProfilePath + PGO_RT_AP_PREFIX + moduleName + ServiceConstants::AP_SUFFIX; in CopyApWithBundle()
|
H A D | aot_args.cpp | 97 arkProfilePath = Str16ToStr8(arkProfilePathVal); in ReadFromParcel() 136 WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, Str8ToStr16(arkProfilePath)); in Marshalling() 173 + ", arkProfilePath = " + arkProfilePath in ToString()
|
H A D | aot_executor.cpp | 90 … if (aotArgs.compileMode == ServiceConstants::COMPILE_PARTIAL && aotArgs.arkProfilePath.empty()) { in CheckArgs() 137 std::filesystem::path filePath(aotArgs.arkProfilePath); in GetSubjectInfo()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_user_mgr_host_impl.cpp | 275 std::string arkProfilePath; in RemoveArkProfile() local 276 arkProfilePath.append(ARK_PROFILE_PATH).append(std::to_string(userId)); in RemoveArkProfile() 277 APP_LOGI("DeleteArkProfile %{public}s when remove user", arkProfilePath.c_str()); in RemoveArkProfile() 278 InstalldClient::GetInstance()->RemoveDir(arkProfilePath); in RemoveArkProfile()
|
H A D | base_bundle_installer.cpp | 3123 std::string arkProfilePath; in CreateArkProfile() local 3124 arkProfilePath.append(ARK_PROFILE_PATH).append(std::to_string(userId)) in CreateArkProfile() 3126 LOG_D(BMS_TAG_INSTALLER, "CreateArkProfile %{public}s", arkProfilePath.c_str()); in CreateArkProfile() 3128 return InstalldClient::GetInstance()->Mkdir(arkProfilePath, mode, uid, gid); in CreateArkProfile() 3133 std::string arkProfilePath; in DeleteArkProfile() local 3134 arkProfilePath.append(ARK_PROFILE_PATH).append(std::to_string(userId)) in DeleteArkProfile() 3136 LOG_D(BMS_TAG_INSTALLER, "DeleteArkProfile %{public}s", arkProfilePath.c_str()); in DeleteArkProfile() 3137 return InstalldClient::GetInstance()->RemoveDir(arkProfilePath); in DeleteArkProfile()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/aot/ |
H A D | aot_args.h | 44 std::string arkProfilePath; member
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_aot_test/ |
H A D | bms_data_aot_test.cpp | 251 aotArgs.arkProfilePath = OUT_PUT_PATH; 270 aotArgs.arkProfilePath = OUT_PUT_PATH; 290 aotArgs.arkProfilePath = OUT_PUT_PATH; 704 aotArgs.arkProfilePath = "arkProfilePath"; 721 EXPECT_EQ(aotArgsPtr->arkProfilePath, aotArgs.arkProfilePath); 1126 aotArgs.arkProfilePath = "arkProfilePath";
|