Lines Matching defs:process
42 constexpr const char* SA_TAG_PROCESS = "process";
313 string process;
314 GetStringFromJson(profileJson, SA_TAG_PROCESS, process);
315 if (process.empty()) {
316 HILOGE("profile format error: no process tag");
319 if (process.length() > MAX_JSON_STRING_LENGTH) {
320 HILOGE("profile format error: process is too long");
323 procName_ = Str8ToStr16(process);
625 string process;
626 GetStringFromJson(trustSaIdJson, SA_TAG_PROCESS, process);
627 if (process.empty()) {
628 HILOGE("trust profile format error: no process tag");
631 if (process.length() > MAX_JSON_STRING_LENGTH) {
632 HILOGE("trust profile format error: process is too long");
635 auto& saIds = values[Str8ToStr16(process)];