ucred            1299 lib/common/ipc_client.c     struct ucred ucred;
ucred            1300 lib/common/ipc_client.c     socklen_t ucred_len = sizeof(ucred);
ucred            1303 lib/common/ipc_client.c                     &ucred, &ucred_len)
ucred            1304 lib/common/ipc_client.c                 && ucred_len == sizeof(ucred)) {
ucred            1305 lib/common/ipc_client.c         found_pid = ucred.pid; found_uid = ucred.uid; found_gid = ucred.gid;
ucred            1322 lib/common/ipc_client.c     ucred_t *ucred;
ucred            1323 lib/common/ipc_client.c     if (!getpeerucred(sock, &ucred)) {
ucred            1325 lib/common/ipc_client.c         found_pid = ucred_getpid(ucred);
ucred            1326 lib/common/ipc_client.c         found_uid = ucred_geteuid(ucred); found_gid = ucred_getegid(ucred);
ucred            1328 lib/common/ipc_client.c         ucred_free(ucred);