pwd               109 lib/shell.c            struct passwd *pwd;
pwd               111 lib/shell.c            pwd = getpwuid (geteuid ());
pwd               112 lib/shell.c            if (pwd != NULL)
pwd               113 lib/shell.c                shell_name = g_strdup (pwd->pw_shell);
pwd               273 lib/utilunix.c     struct passwd *pwd;
pwd               281 lib/utilunix.c     pwd = getpwuid (uid);
pwd               282 lib/utilunix.c     if (pwd != NULL)
pwd               284 lib/utilunix.c         i_cache_add ((int) uid, uid_cache, UID_CACHE_SIZE, pwd->pw_name, (int *) &uid_last);
pwd               285 lib/utilunix.c         return pwd->pw_name;