Lines Matching refs:message
87 return prctl(PR_SET_NAME, appProperty->message.bundleName); in SetProcessName()
105 APPSPAWN_LOGE("SetUidGid %d %d", appProperty->message.uID, appProperty->message.gID); in SetUidGid()
106 if (setgid(appProperty->message.gID) != 0) { in SetUidGid()
107 … APPSPAWN_LOGE("[appspawn] setgid failed, gID %u, err: %d.", appProperty->message.gID, errno); in SetUidGid()
111 if (setuid(appProperty->message.uID) != 0) { in SetUidGid()
112 … APPSPAWN_LOGE("[appspawn] setuid failed, uID %u, err: %d.", appProperty->message.uID, errno); in SetUidGid()
117 … if (appProperty->message.gID >= LOWER_BOUND_GID && appProperty->message.gID <= UPPER_BOUND_GID) { in SetUidGid()
118 groups[0] = appProperty->message.gID; in SetUidGid()
121 … APPSPAWN_LOGE("[appspawn] setgroups failed, uID %u, err: %d.", appProperty->message.uID, errno); in SetUidGid()
134 APPSPAWN_LOGE("SetCapabilities appProperty->message.capsCnt %d", appProperty->message.capsCnt); in SetCapabilities()
155 if (SetCapability(appProperty->message.capsCnt, appProperty->message.caps) != 0) { in SetCapabilities()
160 APPSPAWN_LOGE("SetCapabilities appProperty->message.capsCnt %d", appProperty->message.capsCnt); in SetCapabilities()
169 appProperty->message.bundleName, appProperty->message.identityID, appProperty->message.uID, in RunChildProcessor()
170 appProperty->message.gID); in RunChildProcessor()
173 if (AbilityMain(appProperty->message.identityID) != 0) { in RunChildProcessor()