user               94 lib/lock.c         const char *user = NULL;
user               99 lib/lock.c             user = pw->pw_name;
user              100 lib/lock.c         if (user == NULL)
user              101 lib/lock.c             user = getenv ("USER");
user              102 lib/lock.c         if (user == NULL)
user              103 lib/lock.c             user = getenv ("USERNAME");
user              104 lib/lock.c         if (user == NULL)
user              105 lib/lock.c             user = getenv ("LOGNAME");
user              106 lib/lock.c         if (user == NULL)
user              107 lib/lock.c             user = "";
user              113 lib/lock.c         return g_strdup_printf ("%s@%s.%d", user, host, (int) getpid ());
user              273 lib/vfs/path.c             path_element->user = g_strdup (pcopy);
user              880 lib/vfs/path.c     new_element->user = g_strdup (element->user);
user              914 lib/vfs/path.c     g_free (element->user);
user             1157 lib/vfs/path.c         mc_config_set_string_raw (cpath, groupname, "user", element->user);
user             1229 lib/vfs/path.c         element->user = mc_config_get_string_raw (cpath, groupname, "user", NULL);
user             1528 lib/vfs/path.c     if (element->user != NULL)
user             1529 lib/vfs/path.c         g_string_append (buffer, element->user);
user             1539 lib/vfs/path.c         if ((element->user != NULL) || (element->password != NULL))
user               35 lib/vfs/path.h     char *user;
user              289 lib/vfs/utilvfs.c             path_element->user = g_strdup (pcopy);
user              299 lib/vfs/utilvfs.c         g_free (path_element->user);
user              300 lib/vfs/utilvfs.c         path_element->user = vfs_get_local_username ();
user               24 src/filemanager/boxes.h int panel_listing_box (WPanel * p, int num, char **user, char **mini, gboolean * use_msformat,
user              461 src/filemanager/chown.c                 struct passwd *user;
user              469 src/filemanager/chown.c                 user = getpwnam (text);
user              470 src/filemanager/chown.c                 if (user != NULL)
user              471 src/filemanager/chown.c                     new_user = user->pw_uid;
user              501 src/filemanager/chown.c                 struct passwd *user;
user              505 src/filemanager/chown.c                 user = getpwnam (text);
user              506 src/filemanager/chown.c                 if (user != NULL)
user              508 src/filemanager/chown.c                     new_user = user->pw_uid;
user              468 src/filemanager/cmd.c                          char **user, char **status)
user              479 src/filemanager/cmd.c         p->user_format = *user;
user              480 src/filemanager/cmd.c         *user = NULL;
user             1416 src/filemanager/cmd.c     char *user, *status;
user             1422 src/filemanager/cmd.c     list_format = panel_listing_box (p, MENU_PANEL_IDX, &user, &status, &use_msformat, &brief_cols);
user             1427 src/filemanager/cmd.c         configure_panel_listing (p, list_format, brief_cols, use_msformat, &user, &status);
user             1428 src/filemanager/cmd.c         g_free (user);
user              357 src/vfs/ftpfs/ftpfs.c     if (path_element->user == NULL)
user              361 src/vfs/ftpfs/ftpfs.c             ftpfs_netrc_lookup (path_element->host, &path_element->user, &path_element->password);
user              363 src/vfs/ftpfs/ftpfs.c     if (path_element->user == NULL)
user              364 src/vfs/ftpfs/ftpfs.c         path_element->user = g_strdup ("anonymous");
user              375 src/vfs/ftpfs/ftpfs.c         if (new_user != NULL && strcmp (path_element->user, new_user) != 0)
user              628 src/vfs/ftpfs/ftpfs.c     else if (strcmp (super->path_element->user, "anonymous") == 0
user              629 src/vfs/ftpfs/ftpfs.c              || strcmp (super->path_element->user, "ftp") == 0)
user              640 src/vfs/ftpfs/ftpfs.c         p = g_strdup_printf (_("FTP: Password required for %s"), super->path_element->user);
user              659 src/vfs/ftpfs/ftpfs.c             g_strconcat (super->path_element->user, "@",
user              664 src/vfs/ftpfs/ftpfs.c         name = g_strdup (super->path_element->user);
user              695 src/vfs/ftpfs/ftpfs.c                                      super->path_element->user);
user              725 src/vfs/ftpfs/ftpfs.c              super->path_element->user);
user             1049 src/vfs/ftpfs/ftpfs.c               && (strcmp (path_element->user, super->path_element->user) == 0)
user              822 src/vfs/ftpfs/ftpfs_parse_ls.c     char *user;
user              833 src/vfs/ftpfs/ftpfs_parse_ls.c     user = t;
user              910 src/vfs/ftpfs/ftpfs_parse_ls.c     s->st_uid = ftpfs_get_uid (user);
user               56 src/vfs/sftpfs/config_parser.c     char *user;                 /* the user to log in as */
user               84 src/vfs/sftpfs/config_parser.c     {"^\\s*User\\s+(.*)$", NULL, STRING, offsetof (sftpfs_ssh_config_entity_t, user)},
user              108 src/vfs/sftpfs/config_parser.c     g_free (config_entity->user);
user              331 src/vfs/sftpfs/config_parser.c     if (config_entity->user == NULL)
user              333 src/vfs/sftpfs/config_parser.c         config_entity->user = vfs_get_local_username ();
user              334 src/vfs/sftpfs/config_parser.c         if (config_entity->user == NULL)
user              373 src/vfs/sftpfs/config_parser.c     if (super->path_element->user == NULL)
user              374 src/vfs/sftpfs/config_parser.c         super->path_element->user = g_strdup (config_entity->user);
user              629 src/vfs/sftpfs/connection.c     userauthlist = libssh2_userauth_list (sftpfs_super->session, super->path_element->user,
user              630 src/vfs/sftpfs/connection.c                                           strlen (super->path_element->user));
user              693 src/vfs/sftpfs/connection.c         if (libssh2_agent_userauth (sftpfs_super->agent, super->path_element->user, identity) == 0)
user              726 src/vfs/sftpfs/connection.c     if (libssh2_userauth_publickey_fromfile (sftpfs_super->session, super->path_element->user,
user              731 src/vfs/sftpfs/connection.c     p = g_strdup_printf (_("sftp: Enter passphrase for %s "), super->path_element->user);
user              740 src/vfs/sftpfs/connection.c                                                           super->path_element->user,
user              780 src/vfs/sftpfs/connection.c     if (strncmp (name, kbi_super->path_element->user, name_len) != 0)
user              818 src/vfs/sftpfs/connection.c         while ((rc = libssh2_userauth_password (sftpfs_super->session, super->path_element->user,
user              829 src/vfs/sftpfs/connection.c                                                        super->path_element->user,
user              841 src/vfs/sftpfs/connection.c     p = g_strdup_printf (_("sftp: Enter password for %s "), super->path_element->user);
user              849 src/vfs/sftpfs/connection.c         while ((rc = libssh2_userauth_password (sftpfs_super->session, super->path_element->user,
user              860 src/vfs/sftpfs/connection.c                                                            super->path_element->user,
user              700 src/vfs/sftpfs/sftpfs.c               && (g_strcmp0 (vpath_element->user, orig_connect_info->user) == 0)
user              544 src/vfs/shell/shell.c     if (super->path_element->user != NULL)
user              547 src/vfs/shell/shell.c         argv[i++] = super->path_element->user;
user              552 src/vfs/shell/shell.c         super->path_element->user = vfs_get_local_username ();
user              589 src/vfs/shell/shell.c                                  super->path_element->user);
user              649 src/vfs/shell/shell.c         g_strconcat ("sh://", super->path_element->user, "@", super->path_element->host,
user              738 src/vfs/shell/shell.c     if (path_element->user == NULL)
user              739 src/vfs/shell/shell.c         path_element->user = vfs_get_local_username ();
user              742 src/vfs/shell/shell.c               && (strcmp (path_element->user, super->path_element->user) == 0)
user             1740 src/vfs/shell/shell.c                          super->path_element->user, "@", super->path_element->host, flags,