pw                 95 lib/lock.c         struct passwd *pw;
pw                 97 lib/lock.c         pw = getpwuid (getuid ());
pw                 98 lib/lock.c         if (pw != NULL)
pw                 99 lib/lock.c             user = pw->pw_name;
pw                118 lib/vfs/utilvfs.c         struct passwd *pw;
pw                121 lib/vfs/utilvfs.c         pw = getpwnam (uname);
pw                122 lib/vfs/utilvfs.c         if (pw != NULL)
pw                123 lib/vfs/utilvfs.c             saveuid = pw->pw_uid;
pw               1190 lib/widget/input.c     int pw;
pw               1210 lib/widget/input.c     pw = str_term_width2 (in->buffer->str, in->point);
pw               1213 lib/widget/input.c     if ((pw < in->term_first_shown) || (pw >= in->term_first_shown + w->cols - has_history))
pw               1215 lib/widget/input.c         in->term_first_shown = pw - (w->cols / 3);
pw               1534 src/filemanager/layout.c     struct passwd *pw = NULL;
pw               1546 src/filemanager/layout.c     pw = getpwuid (getuid ());
pw               1547 src/filemanager/layout.c     if (pw != NULL)
pw               1548 src/filemanager/layout.c         *login = g_strdup_printf ("%s@%s", pw->pw_name, host);
pw               1414 src/vfs/shell/shell.c     struct passwd *pw;
pw               1422 src/vfs/shell/shell.c     pw = getpwuid (owner);
pw               1423 src/vfs/shell/shell.c     if (pw == NULL)
pw               1430 src/vfs/shell/shell.c     sowner = pw->pw_name;