Lines Matching refs:saId
122 if (saProfile.saId == systemAbilityId) { in CloseSo()
147 string dlopenTag = ToString(saProfile.saId) + "_DLOPEN"; in OpenSo()
154 … SamgrXCollie samgrXCollie("safwk--openso_" + ToString(saProfile.saId), MAX_DLOPEN_SECONDS); in OpenSo()
158 ReportSaLoadDuration(saProfile.saId, SA_LOAD_OPENSO, duration); in OpenSo()
160 saProfile.saId, duration); in OpenSo()
168 ReportAddSystemAbilityFailed(saProfile.saId, getpid(), getuid(), fileName); in OpenSo()
170 saProfile.saId, fileName.c_str(), dlerror()); in OpenSo()
175 KHILOGI("SA:%{public}d handle is not null", saProfile.saId); in OpenSo()
182 if (saProfile.saId == systemAbilityId) { in LoadSaLib()
195 bool ParseUtil::GetProfile(int32_t saId, SaProfile& saProfile) in GetProfile() argument
197 auto iter = std::find_if(saProfiles_.begin(), saProfiles_.end(), [saId](auto saProfile) { in GetProfile()
198 return saProfile.saId == saId; in GetProfile()
207 void ParseUtil::RemoveSaProfile(int32_t saId) in RemoveSaProfile() argument
209 saProfiles_.remove_if([saId] (auto saInfo) -> bool { return saInfo.saId == saId; }); in RemoveSaProfile()
369 GetInt32FromJson(systemAbilityJson, SA_TAG_NAME, saProfile.saId); in ParseSystemAbilityGetSaBaseInfo()
370 if (saProfile.saId == 0) { in ParseSystemAbilityGetSaBaseInfo()
374 if (saProfile.saId < FIRST_SYS_ABILITY_ID || saProfile.saId > LAST_SYS_ABILITY_ID) { in ParseSystemAbilityGetSaBaseInfo()