Lines Matching refs:gid
121 auto gid = DecodeUid(args[1]); in ParseGroup() local
122 if (!gid.ok()) { in ParseGroup()
123 return Error() << "Unable to decode GID for '" << args[1] << "': " << gid.error(); in ParseGroup()
125 service_->proc_attr_.gid = *gid; in ParseGroup()
128 gid = DecodeUid(args[n]); in ParseGroup()
129 if (!gid.ok()) { in ParseGroup()
130 return Error() << "Unable to decode GID for '" << args[n] << "': " << gid.error(); in ParseGroup()
132 service_->proc_attr_.supp_gids.emplace_back(*gid); in ParseGroup()
423 auto gid = DecodeUid(args[5]); in ParseSocket() local
424 if (!gid.ok()) { in ParseSocket()
425 return Error() << "Unable to find GID for '" << args[5] << "': " << gid.error(); in ParseSocket()
427 socket.gid = *gid; in ParseSocket()