Files
source/Y/user.html
github-actions[bot] 08571174ab Deploy to GitHub Pages
2026-02-01 17:32:02 +00:00

100 lines
16 KiB
HTML

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>user</title>
<meta name='robots' content='noindex,nofollow' />
<meta name='generator' content='GLOBAL-6.6.11' />
<meta http-equiv='Content-Style-Type' content='text/css' />
<link rel='stylesheet' type='text/css' href='../style.css' />
</head>
<body>
<pre>
<span class='curline'><a href='../S/lib--lock.c.html#L94'>user</a> 94 lib/lock.c const char *user = NULL;</span>
<span class='curline'><a href='../S/lib--lock.c.html#L99'>user</a> 99 lib/lock.c user = pw-&gt;pw_name;</span>
<span class='curline'><a href='../S/lib--lock.c.html#L100'>user</a> 100 lib/lock.c if (user == NULL)</span>
<span class='curline'><a href='../S/lib--lock.c.html#L101'>user</a> 101 lib/lock.c user = getenv ("USER");</span>
<span class='curline'><a href='../S/lib--lock.c.html#L102'>user</a> 102 lib/lock.c if (user == NULL)</span>
<span class='curline'><a href='../S/lib--lock.c.html#L103'>user</a> 103 lib/lock.c user = getenv ("USERNAME");</span>
<span class='curline'><a href='../S/lib--lock.c.html#L104'>user</a> 104 lib/lock.c if (user == NULL)</span>
<span class='curline'><a href='../S/lib--lock.c.html#L105'>user</a> 105 lib/lock.c user = getenv ("LOGNAME");</span>
<span class='curline'><a href='../S/lib--lock.c.html#L106'>user</a> 106 lib/lock.c if (user == NULL)</span>
<span class='curline'><a href='../S/lib--lock.c.html#L107'>user</a> 107 lib/lock.c user = "";</span>
<span class='curline'><a href='../S/lib--lock.c.html#L113'>user</a> 113 lib/lock.c return g_strdup_printf ("%s@%s.%d", user, host, (int) getpid ());</span>
<span class='curline'><a href='../S/lib--vfs--path.c.html#L236'>user</a> 236 lib/vfs/path.c path_element-&gt;user = g_strdup (pcopy);</span>
<span class='curline'><a href='../S/lib--vfs--path.c.html#L828'>user</a> 828 lib/vfs/path.c new_element-&gt;user = g_strdup (element-&gt;user);</span>
<span class='curline'><a href='../S/lib--vfs--path.c.html#L860'>user</a> 860 lib/vfs/path.c g_free (element-&gt;user);</span>
<span class='curline'><a href='../S/lib--vfs--path.c.html#L1127'>user</a> 1127 lib/vfs/path.c mc_config_set_string_raw (cpath, groupname, "user", element-&gt;user);</span>
<span class='curline'><a href='../S/lib--vfs--path.c.html#L1197'>user</a> 1197 lib/vfs/path.c element-&gt;user = mc_config_get_string_raw (cpath, groupname, "user", NULL);</span>
<span class='curline'><a href='../S/lib--vfs--path.c.html#L1495'>user</a> 1495 lib/vfs/path.c if (element-&gt;user != NULL)</span>
<span class='curline'><a href='../S/lib--vfs--path.c.html#L1496'>user</a> 1496 lib/vfs/path.c g_string_append (buffer, element-&gt;user);</span>
<span class='curline'><a href='../S/lib--vfs--path.c.html#L1506'>user</a> 1506 lib/vfs/path.c if ((element-&gt;user != NULL) || (element-&gt;password != NULL))</span>
<span class='curline'><a href='../S/lib--vfs--path.h.html#L35'>user</a> 35 lib/vfs/path.h char *user;</span>
<span class='curline'><a href='../S/lib--vfs--utilvfs.c.html#L293'>user</a> 293 lib/vfs/utilvfs.c path_element-&gt;user = g_strdup (pcopy);</span>
<span class='curline'><a href='../S/lib--vfs--utilvfs.c.html#L303'>user</a> 303 lib/vfs/utilvfs.c g_free (path_element-&gt;user);</span>
<span class='curline'><a href='../S/lib--vfs--utilvfs.c.html#L304'>user</a> 304 lib/vfs/utilvfs.c path_element-&gt;user = vfs_get_local_username ();</span>
<span class='curline'><a href='../S/src--filemanager--boxes.h.html#L25'>user</a> 25 src/filemanager/boxes.h int panel_listing_box (WPanel *p, int num, char **user, char **mini, gboolean *use_msformat,</span>
<span class='curline'><a href='../S/src--filemanager--chown.c.html#L425'>user</a> 425 src/filemanager/chown.c struct passwd *user;</span>
<span class='curline'><a href='../S/src--filemanager--chown.c.html#L433'>user</a> 433 src/filemanager/chown.c user = getpwnam (text);</span>
<span class='curline'><a href='../S/src--filemanager--chown.c.html#L434'>user</a> 434 src/filemanager/chown.c if (user != NULL)</span>
<span class='curline'><a href='../S/src--filemanager--chown.c.html#L435'>user</a> 435 src/filemanager/chown.c new_user = user-&gt;pw_uid;</span>
<span class='curline'><a href='../S/src--filemanager--chown.c.html#L464'>user</a> 464 src/filemanager/chown.c struct passwd *user;</span>
<span class='curline'><a href='../S/src--filemanager--chown.c.html#L468'>user</a> 468 src/filemanager/chown.c user = getpwnam (text);</span>
<span class='curline'><a href='../S/src--filemanager--chown.c.html#L469'>user</a> 469 src/filemanager/chown.c if (user != NULL)</span>
<span class='curline'><a href='../S/src--filemanager--chown.c.html#L471'>user</a> 471 src/filemanager/chown.c new_user = user-&gt;pw_uid;</span>
<span class='curline'><a href='../S/src--filemanager--cmd.c.html#L441'>user</a> 441 src/filemanager/cmd.c char **user, char **status)</span>
<span class='curline'><a href='../S/src--filemanager--cmd.c.html#L452'>user</a> 452 src/filemanager/cmd.c p-&gt;user_format = *user;</span>
<span class='curline'><a href='../S/src--filemanager--cmd.c.html#L453'>user</a> 453 src/filemanager/cmd.c *user = NULL;</span>
<span class='curline'><a href='../S/src--filemanager--cmd.c.html#L1377'>user</a> 1377 src/filemanager/cmd.c char *user, *status;</span>
<span class='curline'><a href='../S/src--filemanager--cmd.c.html#L1383'>user</a> 1383 src/filemanager/cmd.c list_format = panel_listing_box (p, MENU_PANEL_IDX, &amp;user, &amp;status, &amp;use_msformat, &amp;brief_cols);</span>
<span class='curline'><a href='../S/src--filemanager--cmd.c.html#L1388'>user</a> 1388 src/filemanager/cmd.c configure_panel_listing (p, list_format, brief_cols, use_msformat, &amp;user, &amp;status);</span>
<span class='curline'><a href='../S/src--filemanager--cmd.c.html#L1389'>user</a> 1389 src/filemanager/cmd.c g_free (user);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L357'>user</a> 357 src/vfs/ftpfs/ftpfs.c if (path_element-&gt;user == NULL)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L361'>user</a> 361 src/vfs/ftpfs/ftpfs.c ftpfs_netrc_lookup (path_element-&gt;host, &amp;path_element-&gt;user, &amp;path_element-&gt;password);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L363'>user</a> 363 src/vfs/ftpfs/ftpfs.c if (path_element-&gt;user == NULL)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L364'>user</a> 364 src/vfs/ftpfs/ftpfs.c path_element-&gt;user = g_strdup ("anonymous");</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L375'>user</a> 375 src/vfs/ftpfs/ftpfs.c if (new_user != NULL &amp;&amp; strcmp (path_element-&gt;user, new_user) == 0)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L625'>user</a> 625 src/vfs/ftpfs/ftpfs.c else if (strcmp (super-&gt;path_element-&gt;user, "anonymous") == 0</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L626'>user</a> 626 src/vfs/ftpfs/ftpfs.c || strcmp (super-&gt;path_element-&gt;user, "ftp") == 0)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L637'>user</a> 637 src/vfs/ftpfs/ftpfs.c p = g_strdup_printf (_ ("FTP: Password required for %s"), super-&gt;path_element-&gt;user);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L655'>user</a> 655 src/vfs/ftpfs/ftpfs.c name = g_strconcat (super-&gt;path_element-&gt;user, "@",</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L660'>user</a> 660 src/vfs/ftpfs/ftpfs.c name = g_strdup (super-&gt;path_element-&gt;user);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L692'>user</a> 692 src/vfs/ftpfs/ftpfs.c super-&gt;path_element-&gt;user);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L722'>user</a> 722 src/vfs/ftpfs/ftpfs.c super-&gt;path_element-&gt;user);</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs.c.html#L1046'>user</a> 1046 src/vfs/ftpfs/ftpfs.c &amp;&amp; (strcmp (path_element-&gt;user, super-&gt;path_element-&gt;user) == 0)</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L823'>user</a> 823 src/vfs/ftpfs/ftpfs_parse_ls.c char *user;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L834'>user</a> 834 src/vfs/ftpfs/ftpfs_parse_ls.c user = t;</span>
<span class='curline'><a href='../S/src--vfs--ftpfs--ftpfs_parse_ls.c.html#L911'>user</a> 911 src/vfs/ftpfs/ftpfs_parse_ls.c s-&gt;st_uid = ftpfs_get_uid (user);</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--config_parser.c.html#L56'>user</a> 56 src/vfs/sftpfs/config_parser.c char *user; // the user to log in as</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--config_parser.c.html#L87'>user</a> 87 src/vfs/sftpfs/config_parser.c offsetof (sftpfs_ssh_config_entity_t, user),</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--config_parser.c.html#L141'>user</a> 141 src/vfs/sftpfs/config_parser.c g_free (config_entity-&gt;user);</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--config_parser.c.html#L380'>user</a> 380 src/vfs/sftpfs/config_parser.c if (config_entity-&gt;user == NULL)</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--config_parser.c.html#L382'>user</a> 382 src/vfs/sftpfs/config_parser.c config_entity-&gt;user = vfs_get_local_username ();</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--config_parser.c.html#L383'>user</a> 383 src/vfs/sftpfs/config_parser.c if (config_entity-&gt;user == NULL)</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--config_parser.c.html#L422'>user</a> 422 src/vfs/sftpfs/config_parser.c if (super-&gt;path_element-&gt;user == NULL)</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--config_parser.c.html#L423'>user</a> 423 src/vfs/sftpfs/config_parser.c super-&gt;path_element-&gt;user = g_strdup (config_entity-&gt;user);</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--connection.c.html#L638'>user</a> 638 src/vfs/sftpfs/connection.c userauthlist = libssh2_userauth_list (sftpfs_super-&gt;session, super-&gt;path_element-&gt;user,</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--connection.c.html#L639'>user</a> 639 src/vfs/sftpfs/connection.c strlen (super-&gt;path_element-&gt;user));</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--connection.c.html#L702'>user</a> 702 src/vfs/sftpfs/connection.c if (libssh2_agent_userauth (sftpfs_super-&gt;agent, super-&gt;path_element-&gt;user, identity) == 0)</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--connection.c.html#L735'>user</a> 735 src/vfs/sftpfs/connection.c if (libssh2_userauth_publickey_fromfile (sftpfs_super-&gt;session, super-&gt;path_element-&gt;user,</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--connection.c.html#L741'>user</a> 741 src/vfs/sftpfs/connection.c p = g_strdup_printf (_ ("sftp: Enter passphrase for %s "), super-&gt;path_element-&gt;user);</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--connection.c.html#L750'>user</a> 750 src/vfs/sftpfs/connection.c sftpfs_super-&gt;session, super-&gt;path_element-&gt;user, sftpfs_super-&gt;pubkey,</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--connection.c.html#L789'>user</a> 789 src/vfs/sftpfs/connection.c if (strncmp (name, kbi_super-&gt;path_element-&gt;user, name_len) != 0)</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--connection.c.html#L827'>user</a> 827 src/vfs/sftpfs/connection.c while ((rc = libssh2_userauth_password (sftpfs_super-&gt;session, super-&gt;path_element-&gt;user,</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--connection.c.html#L838'>user</a> 838 src/vfs/sftpfs/connection.c super-&gt;path_element-&gt;user,</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--connection.c.html#L850'>user</a> 850 src/vfs/sftpfs/connection.c p = g_strdup_printf (_ ("sftp: Enter password for %s "), super-&gt;path_element-&gt;user);</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--connection.c.html#L858'>user</a> 858 src/vfs/sftpfs/connection.c while ((rc = libssh2_userauth_password (sftpfs_super-&gt;session, super-&gt;path_element-&gt;user,</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--connection.c.html#L869'>user</a> 869 src/vfs/sftpfs/connection.c super-&gt;path_element-&gt;user,</span>
<span class='curline'><a href='../S/src--vfs--sftpfs--sftpfs.c.html#L695'>user</a> 695 src/vfs/sftpfs/sftpfs.c &amp;&amp; (g_strcmp0 (vpath_element-&gt;user, orig_connect_info-&gt;user) == 0)</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L540'>user</a> 540 src/vfs/shell/shell.c if (super-&gt;path_element-&gt;user != NULL)</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L543'>user</a> 543 src/vfs/shell/shell.c argv[i++] = super-&gt;path_element-&gt;user;</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L548'>user</a> 548 src/vfs/shell/shell.c super-&gt;path_element-&gt;user = vfs_get_local_username ();</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L585'>user</a> 585 src/vfs/shell/shell.c super-&gt;path_element-&gt;user);</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L646'>user</a> 646 src/vfs/shell/shell.c g_strconcat ("sh://", super-&gt;path_element-&gt;user, "@", super-&gt;path_element-&gt;host,</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L720'>user</a> 720 src/vfs/shell/shell.c if (path_element-&gt;user == NULL)</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L721'>user</a> 721 src/vfs/shell/shell.c path_element-&gt;user = vfs_get_local_username ();</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L724'>user</a> 724 src/vfs/shell/shell.c &amp;&amp; (strcmp (path_element-&gt;user, super-&gt;path_element-&gt;user) == 0)</span>
<span class='curline'><a href='../S/src--vfs--shell--shell.c.html#L1677'>user</a> 1677 src/vfs/shell/shell.c super-&gt;path_element-&gt;user, "@", super-&gt;path_element-&gt;host, flags,</span>
</pre>
</body>
</html>