ucred            1311 lib/common/ipc_client.c     struct ucred ucred;
ucred            1312 lib/common/ipc_client.c     socklen_t ucred_len = sizeof(ucred);
ucred            1323 lib/common/ipc_client.c                     &ucred, &ucred_len)
ucred            1324 lib/common/ipc_client.c                 && ucred_len == sizeof(ucred)) {
ucred            1325 lib/common/ipc_client.c         found_pid = ucred.pid; found_uid = ucred.uid; found_gid = ucred.gid;
ucred            1342 lib/common/ipc_client.c     ucred_t *ucred;
ucred            1343 lib/common/ipc_client.c     if (!getpeerucred(sock, &ucred)) {
ucred            1345 lib/common/ipc_client.c         found_pid = ucred_getpid(ucred);
ucred            1346 lib/common/ipc_client.c         found_uid = ucred_geteuid(ucred); found_gid = ucred_getegid(ucred);
ucred            1348 lib/common/ipc_client.c         ucred_free(ucred);