Lines Matching refs:username

72                               const char *username,
82 if (str && username && strcmp(str->data, username) == 0)
101 const char *username,
114 /* Set **USERNAME to the username retrieved from CREDS; ignore
117 simple_username_get(const char **username,
126 *username = str->data;
148 const char *username = svn_hash_gets(parameters,
155 const char *default_username = NULL; /* Default username from cache. */
190 /* See if we need to save this username if it is not present in
192 if (username)
201 if (strcmp(default_username, username) != 0)
215 realmstring, username, parameters,
229 /* If we don't have a username and a password yet, we try the
231 if (! (username && password))
233 if (! username)
234 if (!simple_username_get(&username, creds_hash, realmstring,
236 username = NULL;
238 if (username && ! password)
247 realmstring, username, parameters,
268 /* If we don't have a username yet, check the 'servers' file */
269 if (! username)
271 username = svn_config_get_server_setting(cfg, server_group,
276 /* Ask the OS for the username if we have a password but no
277 username. */
278 if (password && ! username)
279 username = svn_user_get_name(pool);
281 if (username && password)
284 creds->username = username;
332 /* Put the username into the credentials hash. */
335 svn_string_create(creds->username, pool));
457 creds->username, creds->password,
546 /* Baton type for username/password prompting. */
557 /* Iteration baton type for username/password prompting. */
589 /* No default username? Try the auth cache. */
609 /* Still no default username? Try the 'servers' file. */
622 /* Still no default username? Try the UID. */
639 (*cred_p)->username = apr_pstrdup(pool, default_username);
653 /* Our first attempt will use any default username/password passed