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               281 lib/utilunix.c     struct passwd *pwd;
pwd               289 lib/utilunix.c     pwd = getpwuid (uid);
pwd               290 lib/utilunix.c     if (pwd != NULL)
pwd               292 lib/utilunix.c         i_cache_add ((int) uid, uid_cache, UID_CACHE_SIZE, pwd->pw_name, (int *) &uid_last);
pwd               293 lib/utilunix.c         return pwd->pw_name;
pwd               777 lib/vfs/interface.c     struct passwd *pwd;
pwd               794 lib/vfs/interface.c     pwd = getpwuid (getuid ());
pwd               795 lib/vfs/interface.c     if (pwd != NULL)
pwd               796 lib/vfs/interface.c         g_snprintf (buffer, sizeof (buffer), "%s/mc-%s", sys_tmp, pwd->pw_name);