Searched refs:username (Results 26 - 50 of 347) sorted by relevance

1234567891011>>

/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitCredential.cpp36 CString username; member in struct:_WebKitCredential
87 * @username: The username for the new credential
91 * Create a new credential from the provided username, password and persistence mode.
97 WebKitCredential* webkit_credential_new(const gchar* username, const gchar* password, WebKitCredentialPersistence persistence) argument
99 g_return_val_if_fail(username, 0);
102 return webkitCredentialCreate(WebCore::Credential(String::fromUTF8(username), String::fromUTF8(password), toWebCoreCredentialPersistence(persistence)));
142 * Get the username currently held by this #WebKitCredential.
144 * Returns: The username stored in the #WebKitCredential.
152 if (credential->username
[all...]
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dcredential.cpp40 CredentialImpl::CredentialImpl(const uid_t uid, const string &username, const string &realname, bool shared) : mShared(shared), mRight(false), mUid(uid), mName(username), mRealName(realname), mCreationTime(CFAbsoluteTimeGetCurrent()), mValid(true) argument
44 CredentialImpl::CredentialImpl(const string &username, const string &password, bool shared) : mShared(shared), mRight(false), mName(username), mCreationTime(CFAbsoluteTimeGetCurrent()), mValid(false) argument
47 const char *user = username.c_str();
180 Credential::Credential(const uid_t uid, const string &username, const string &realname, bool shared) : argument
181 RefPointer<CredentialImpl>(new CredentialImpl(uid, username, realname, shared))
185 Credential::Credential(const string &username, const string &password, bool shared) : RefPointer<CredentialImpl>(new CredentialImpl(username, password, shared)) argument
/macosx-10.10/Heimdal-398.1.2/appl/login/
H A Dutmp_login.c86 const char *username, const char *hostname)
93 strncpy(utmp->ut_name, username, sizeof(utmp->ut_name));
96 strncpy(utmp->ut_user, username, sizeof(utmp->ut_user));
127 void utmp_login(char *tty, const char *username, const char *hostname) argument
133 void utmp_login(char *tty, const char *username, const char *hostname) argument
138 prepare_utmp (&utmp, tty, username, hostname);
85 prepare_utmp(struct utmp *utmp, char *tty, const char *username, const char *hostname) argument
/macosx-10.10/emacs-93/emacs/lisp/erc/
H A Derc-ezbounce.el46 (((server . port) . (username . password))
47 ((server . port) . (username . password))
82 Look up entries in `erc-ezb-login-alist'. If the username or password
86 (let ((username (car login))
88 (when (null username)
89 (setq username (read-from-minibuffer (format "EZBounce user name for %s:%s: " server port))))
92 (cons username password)))))
123 (let ((username (car login))
125 (erc-server-send (concat "LOGIN " username " " pass))))))
/macosx-10.10/pam_modules-140/modules/pam_launchd/
H A Dpam_launchd.c82 const char* username; local
99 /* Get the username (and UID). */
100 if (PAM_SUCCESS != pam_get_item(pamh, PAM_USER, (void *)&username) || NULL == username) {
101 openpam_log(PAM_LOG_DEBUG, "The username could not be obtained.");
104 if (0 != getpwnam_r(username, &pwdbuf, buffer, sizeof(buffer), &pwd) || NULL == pwd) {
105 openpam_log(PAM_LOG_DEBUG, "The pwd for %s could not be obtained.", username);
109 openpam_log(PAM_LOG_DEBUG, "Going to switch to (%s) %u's %s session", username, uid, session_type);
/macosx-10.10/tcsh-65/tcsh/win32/
H A Dbogus.c40 static char username[20]; variable
66 GetUserName(username,&size);
72 pass_bogus.pw_name = &username[0];
81 if (_stricmp(username,name) )
93 GetUserName(username,&size);
99 pass_bogus.pw_name = &username[0];
/macosx-10.10/cups-408/cups/scheduler/
H A Dauth.c95 char username[HTTP_MAX_VALUE], /* Username string */ member in struct:cupsd_authdata_s
278 username[HTTP_MAX_VALUE], local
282 cupsd_cert_t *localuser; /* Certificate username */
317 username[0] = '\0';
381 username[0] = '\0';
389 strlcpy(username, authinfo->items[0].value, sizeof(username));
393 con->number, username);
399 if (!username[0])
402 * No username i
1250 cupsdCheckGroup( const char *username, struct passwd *user, const char *groupname) argument
1616 username[256], /* Username to authorize */ local
[all...]
/macosx-10.10/pam_modules-140/modules/pam_mount/
H A Dpam_mount.c83 const char *username = NULL; local
90 /* get the username */
91 if (PAM_SUCCESS != (retval = pam_get_user(pamh, &username, NULL))) {
92 openpam_log(PAM_LOG_ERROR, "Unable to get the username: %s", pam_strerror(pamh, retval));
95 if (username == NULL || *username == '\0') {
102 if (0 != getpwnam_r(username, &pwdbuf, pwbuffer, sizeof(pwbuffer), &pwd) || NULL == pwd) {
103 openpam_log(PAM_LOG_ERROR, "Unknown user \"%s\".", username);
116 if (PAM_SUCCESS != (retval = od_extract_home(pamh, username, &server_URL, &path, &homedir))) {
125 openpam_log(PAM_LOG_DEBUG, " username
215 const char *username; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/examples/ftp/
H A Dmirror.tcl10 set username anonymous
36 if {[set conn [ftp::Open $server $username $passwd -progress ProgressBar]] != -1} {
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_auth_request.h48 * Queries the suggested username to be used for authenticating.
52 * @return the username pointer, that may be @c NULL. This pointer is
112 EAPI Eina_Bool ewk_auth_request_authenticate(Ewk_Auth_Request *request, const char *username, const char *password);
H A Dewk_auth_request.cpp112 bool EwkAuthRequest::authenticate(const char* username, const char* password) argument
118 WKRetainPtr<WKStringRef> wkUsername(AdoptWK, WKStringCreateWithUTF8CString(username));
146 Eina_Bool ewk_auth_request_authenticate(Ewk_Auth_Request* request, const char* username, const char* password) argument
149 EINA_SAFETY_ON_NULL_RETURN_VAL(username, false);
152 return impl->authenticate(username, password);
/macosx-10.10/bind9-45.101/bind9/bin/named/unix/include/named/
H A Dos.h43 ns_os_inituserinfo(const char *username);
/macosx-10.10/bind9-45.101/bind9/bin/named/win32/include/named/
H A Dos.h41 ns_os_inituserinfo(const char *username);
/macosx-10.10/iodbc-42.5/iodbc/drvproxy/gtk/
H A Dgui.h84 GtkWidget *username, *password, *mainwnd; member in struct:TLOGIN
/macosx-10.10/pam_modules-140/modules/pam_nologin/
H A Dpam_nologin.c71 const char *username; local
84 if ((pam_get_user(pamh, &username, NULL) != PAM_SUCCESS)
85 || !username) {
86 openpam_log(PAM_LOG_ERROR, "Failed to obtain the username.");
89 if (getpwnam_r(username, &pwdbuf, pwbuffer, sizeof(pwbuffer), &user_pwd) != 0) {
/macosx-10.10/OpenSSH-189/openssh/
H A Dloginrec.h69 char username[LINFO_NAMESIZE]; /* login username */ member in struct:logininfo
89 struct logininfo *login_alloc_entry(pid_t pid, const char *username,
94 int login_init_entry(struct logininfo *li, pid_t pid, const char *username,
/macosx-10.10/apr-32/apr/apr/include/
H A Dapr_user.h72 * @param username Pointer to new string containing user name (on output)
77 APR_DECLARE(apr_status_t) apr_uid_name_get(char **username, apr_uid_t userid,
81 * Get the userid (and groupid) for the specified username
84 * @param username The username to lookup
89 const char *username, apr_pool_t *p);
94 * @param username The named user
99 const char *username,
/macosx-10.10/apache-793/httpd/support/
H A Dhtdbm.c67 char *username; member in struct:htdbm_t
159 if (!htdbm->username)
162 key.dptr = htdbm->username;
163 key.dsize = strlen(htdbm->username);
182 key.dptr = htdbm->username;
183 key.dsize = strlen(htdbm->username);
196 key.dptr = htdbm->username;
197 key.dsize = strlen(htdbm->username);
265 if (!htdbm->username || (strlen(htdbm->username) > 6
[all...]
/macosx-10.10/emacs-93/emacs/lib-src/
H A Dupdate-game-score.c95 char *username; member in struct:score_entry
102 int newscore, char *username, char *newdata));
295 if (getdelim (&score->username, &count, ' ', f) < 1
296 || score->username == NULL)
299 score->username[strlen (score->username)-1] = '\0';
305 char *username = malloc (unamelen); local
306 if (!username)
313 if (!(username = realloc (username, unamele
[all...]
/macosx-10.10/cron-39/lib/
H A Dmisc.c345 /* int allowed(char *username)
351 int allowed(char* username, int allow_only_root) argument
354 allowed(username)
355 char *username;
375 isallowed = in_file(username, allow);
377 isallowed = !in_file(username, deny);
381 isallowed = (strcmp(username, ROOT_USER) == 0);
387 isallowed = (strcmp(username, ROOT_USER) == 0);
402 log_it(username, xpid, event, detail)
403 char *username;
[all...]
/macosx-10.10/webdavfs-367/mount.tproj/
H A Dwebdav_authcache.c41 CFStringRef username; member in struct:authcache_entry
119 if (entry_ptr->username != NULL)
121 CFRelease(entry_ptr->username);
122 entry_ptr->username = NULL;
145 entry_ptr->username = new_username;
176 CFStringRef *username,
215 *username = mount_username;
245 CFStringRef *username,
258 if (username == NULL) {
299 *username
174 CopyMountCredentials( CFHTTPAuthenticationRef auth, CFStringRef *username, CFStringRef *password, CFStringRef *domain, int *secureAuth) argument
244 CopyMountProxyCredentials(CFHTTPAuthenticationRef auth, CFStringRef *username, CFStringRef *password, CFStringRef *domain, int *secureAuth) argument
321 CFStringRef username; local
400 CFStringRef username; local
974 authcache_init( char *username, char *password, char *proxy_username, char *proxy_password, char *domain) argument
[all...]
/macosx-10.10/Heimdal-398.1.2/appl/dceutils/
H A Dk5dcecon.c530 char *username; local
563 /* now build the username as a single string or a /.../cell/user
567 if ((username = malloc(7+strlen(pname)+strlen(urealm))) == 0) {
568 fprintf(stderr,"Malloc failed for username\n");
578 strcpy(username,pname);
580 strcpy(username,"/.../");
581 strcat(username,urealm);
582 strcat(username,"/");
583 strcat(username,pname);
590 if (sec_login_setup_identity((unsigned_char_p_t)username,
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/sasl/
H A Dsasl.tcl259 set username [eval $ctx(callback) [list $context username]]
261 set reply "$username [string tolower $reply]"
312 set username [eval $ctx(callback) [list $context username]]
314 set ctx(response) "$authzid\x00$username\x00$password"
358 set ctx(response) [eval $ctx(callback) [list $context username]]
382 set ctx(username) $clientrsp
387 set user $ctx(username)
414 set user [eval $ctx(callback) [list $context username]]
[all...]
/macosx-10.10/Heimdal-398.1.2/tests/kdc/
H A Dcheck-digest.in63 username=foo
85 ${kadmin} add -p $userpassword --use-defaults ${username}@${R} || exit 1
180 --username="$username" \
189 #echo user: $username
197 --username="$username" \
218 --username="$username" \
248 --username
[all...]
/macosx-10.10/KerberosHelper-151/NAHSample/
H A DNAHSample.m61 doit(CFStringRef username, CFStringRef password,
78 if (username)
79 CFDictionaryAddValue(info, kNAHUserName, username);
163 CFStringRef username = NULL, password = NULL;
170 username = CFStringCreateWithCString(NULL, optarg, kCFStringEncodingUTF8);
195 doit(username, password, hostname, service);

Completed in 279 milliseconds

1234567891011>>