Searched refs:username (Results 251 - 275 of 334) sorted by relevance

<<11121314

/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Plugins/
H A DPluginView.h209 virtual bool getAuthenticationInfo(const WebCore::ProtectionSpace&, String& username, String& password) override;
/macosx-10.10.1/cups-408/cups/cgi-bin/
H A Dprinters.c30 static void show_all_printers(http_t *http, const char *username);
/macosx-10.10.1/eap8021x-198/EAP8021X.fproj/
H A Deapmschapv2_plugin.c356 plugin->username, plugin->password, plugin->password_length,
377 memcpy(out_pkt_p->name, plugin->username, plugin->username_length);
520 (const uint8_t *)plugin->username,
636 plugin->username,
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/irc/
H A Dirc.tcl225 proc cmd-user { username hostname servername {userinfo ""} } {
227 ircsend "USER $username $hostname server :$servername"
229 ircsend "USER $username $hostname $servername :$userinfo"
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/ldap/
H A Dldap.tcl934 login { return $options(-username) }
935 username { return $options(-username) }
960 set conn(options) [list -password $password -username $name]
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dslrnrc.vim67 syn keyword slrnrcVarStr contained top_status_line username
79 syn region slrnrcCmdLine matchgroup=slrnrcCmd start="\<\(cc_followup_string\|decode_directory\|editor_command\|followup\|hostname\|organization\|quote_string\|realname\|replyto\|scorefile\|signature\|username\)\>" end="$" oneline contains=slrnrc\(String\|Comment\)
/macosx-10.10.1/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/Appender/
H A DDBI.pm78 DBI->connect(@params{qw(datasource username password)},
331 log4j.appender.DBAppndr.username = bobjones
378 log4j.appender.DBAppndr.username = bobjones
/macosx-10.10.1/Heimdal-398.1.2/appl/ftp/ftpd/
H A Dftpcmd.y123 %type <s> pathstring pathname password username
140 : USER SP username CRLF check_secure
715 username
933 { "USER", USER, STR1, 1, "<sp> username" },
/macosx-10.10.1/Security-57031.1.35/Security/include/security_keychain/
H A DSecKeychain.cpp1200 OSStatus SecKeychainStoreUnlockKey(SecKeychainRef userKeychainRef, SecKeychainRef systemKeychainRef, CFStringRef username, CFStringRef password) { argument
1235 username,
1261 username,
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DSecKeychain.cpp1200 OSStatus SecKeychainStoreUnlockKey(SecKeychainRef userKeychainRef, SecKeychainRef systemKeychainRef, CFStringRef username, CFStringRef password) { argument
1235 username,
1261 username,
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DSecKeychain.cpp1200 OSStatus SecKeychainStoreUnlockKey(SecKeychainRef userKeychainRef, SecKeychainRef systemKeychainRef, CFStringRef username, CFStringRef password) { argument
1235 username,
1261 username,
/macosx-10.10.1/smb-759.0/lib/smb/
H A Dparse_url.c164 * If there are two array entries then we have a workgoup and username otherwise if we just have one item then its a
165 * username. Any other number could be an error, but since we have no idea what they are trying to do we just treat
166 * it as a username.
179 * username and server name. If no workgroup just return NULL.
278 if (!userArray) /* We just have a username name */
283 * URL = "//workgroup;username:password@smb-win2003.apple.com"
284 * URL = "//workgroup;username:@smb-win2003.apple.com"
285 * URL = "//workgroup;username@smb-win2003.apple.com"
288 /* Get the username first */
303 /* We now have a URL without the workgroup name, just copy out the username
344 char username[SMB_MAXUSERNAMELEN+1]; local
[all...]
/macosx-10.10.1/apache-793/httpd/modules/aaa/
H A Dmod_auth_digest.c145 const char *username; member in struct:digest_header_struct
960 if (!strcasecmp(key, "username"))
961 resp->username = apr_pstrdup(r->pool, value);
982 if (!resp->username || !resp->realm || !resp->nonce || !resp->uri
1141 * apr_pstrcat(r->pool, username, ":", ap_auth_name(r), ":", passwd))
1148 * MD5(MD5(username ":" realm ":" password) ":" nonce ":" cnonce)
1154 * the username, realm, nonce, and cnonce) and receiving the hash from it.
1713 r->user = (char *) resp->username;
1989 "info for user %s", resp->username);
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dinit_creds_pw.c1501 char *username; local
1509 ret = krb5_unparse_name_flags(context, principal, KRB5_PRINCIPAL_UNPARSE_NO_REALM, &username);
1517 free(username);
1532 krb5_xfree(username);
1536 ret = ccsrp_generate_verifier(srpctx, username,
1542 krb5_xfree(username);
1739 char *username; local
1767 ret = krb5_unparse_name_flags(context, principal, KRB5_PRINCIPAL_UNPARSE_NO_REALM, &username);
1777 free(username);
1783 _krb5_debugx(context, 5, "ccsrp client start for user: %s", username);
[all...]
/macosx-10.10.1/WebKit-7600.1.25/mac/Plugins/
H A DWebNetscapePluginView.mm2270 username:(char**)usernameStr usernameLength:(uint32_t*)usernameLength
2276 CString username;
2278 if (!getAuthenticationInfo(protocolStr, hostStr, port, schemeStr, realmStr, username, password))
2281 *usernameLength = username.length();
2282 *usernameStr = static_cast<char*>(NPN_MemAlloc(username.length()));
2283 memcpy(*usernameStr, username.data(), username.length());
H A DWebBaseNetscapePluginView.mm903 CString& username, CString& password)
940 username = [[credential user] UTF8String];
/macosx-10.10.1/cups-408/cups/test/
H A Dippserver.c290 *username, /* job-originating-user-name */ member in struct:_ipp_job_s
979 job->username = ippGetString(attr, 0, NULL);
981 job->username = "anonymous";
983 ippAddString(job->attrs, IPP_TAG_JOB, IPP_TAG_NAME, "job-originating-user-name", NULL, job->username);
2913 const char *username; /* Username */ local
3012 username = NULL;
3032 username = ippGetString(attr, 0, NULL);
3035 client->hostname, username);
3061 (username && job->username
[all...]
/macosx-10.10.1/vim-55/runtime/autoload/
H A Dphpcomplete.vim1375 \ 'db2_connect(': 'string database, string username, string password [, array options] | resource',
1399 \ 'db2_pconnect(': 'string database, string username, string password [, array options] | resource',
1499 \ 'dbx_connect(': 'mixed module, string host, string database, string username, string password [, int persistent] | object',
1641 \ 'fbsql_connect(': '[string hostname [, string username [, string password]]] | resource',
1676 \ 'fbsql_pconnect(': '[string hostname [, string username [, string password]]] | resource',
1689 \ 'fbsql_username(': 'resource link_identifier [, string username] | string',
1784 \ 'ftp_login(': 'resource ftp_stream, string username, string password | bool',
2023 \ 'hw_connect(': 'string host, int port [, string username, string password] | int',
2059 \ 'hw_identify(': 'int link, string username, string password | string',
2073 \ 'hw_pconnect(': 'string host, int port [, string username, strin
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dmonitor.c768 char *username; local
778 username = buffer_get_string(m, NULL);
780 pwent = getpwnamallow(username);
782 authctxt->user = xstrdup(username);
783 setproctitle("%s [priv]", pwent ? username : "unknown");
784 xfree(username);
/macosx-10.10.1/cups-408/cups/scheduler/
H A Dclient.c662 con->username[0] = '\0';
2209 _("Enter your username and password or the "
2210 "root username and password to access this "
3592 if (con->username[0])
3692 if (con->username[0])
3694 snprintf(remote_user, sizeof(remote_user), "REMOTE_USER=%s", con->username);
3811 if (con->username[0])
3812 cupsdAddCert(pid, con->username, con->type);
/macosx-10.10.1/Security-57031.1.35/securityd/src/
H A DAuthorizationRule.cpp645 string username = (**found).stringValue(); local
646 secdebug("AuthEvalMech", "found username");
656 if (username.length() && uid)
659 newCredentials.insert(Credential(*uid, username, "", mShared));
670 // username hint is taken from the user who created the authorization, unless it's clearly ineligible
682 // Check if username will authorize the request and set username to
733 // Get the username from the credential
740 // @@@ it could be the username, not password, was invalid
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/ntlm/
H A Daccept_sec_context.c468 ctx->srcname = _gss_ntlm_create_name(minor_status, type3.username, type3.targetname, 0);
H A Dinit_sec_context.c274 type3.username = "";
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/
H A DNetscapePlugin.h130 bool getAuthenticationInfo(const WebCore::ProtectionSpace&, String& username, String& password);
/macosx-10.10.1/apr-32/apr/apr/threadproc/beos/
H A Dproc.c436 const char *username,

Completed in 482 milliseconds

<<11121314