HomeSort by relevance Sort by last modified time
    Searched refs:username (Results 201 - 225 of 463) sorted by null

1 2 3 4 5 6 7 891011>>

  /system/core/adb/
adb_auth_host.c 112 char hostname[1024], username[1024]; local
122 ret = getlogin_r(username, sizeof(username));
125 strcpy(username, "unknown");
127 ret = snprintf(buf, len, " %s@%s", username, hostname);
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
scm.py 295 def commit_with_message(self, message, username=None, password=None, git_commit=None, force_squash=False, changed_files=None):
563 def commit_with_message(self, message, username=None, password=None, git_commit=None, force_squash=False, changed_files=None):
567 if not username and not self.has_authorization_for_realm(self.svn_server_realm):
569 if username:
570 svn_commit_args.extend(["--username", username])
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
login_utils.cc 114 const std::string& username,
208 const std::string& username,
215 VLOG(1) << "Completing login for " << username;
219 CrosLibrary::Get()->GetLoginLibrary()->StartSession(username, "");
223 UserManager::Get()->UserLoggedIn(username);
230 username_ = username;
parallel_authenticator.cc 69 const std::string& username,
73 std::string canonicalized = Authenticator::Canonicalize(username);
98 bool ParallelAuthenticator::AuthenticateToUnlock(const std::string& username,
101 new AuthAttemptState(Authenticator::Canonicalize(username),
140 consumer_->OnLoginSuccess(current_state_->username,
178 if (!localaccount_.empty() && localaccount_ == current_state_->username) {
247 const std::string& username,
252 new AuthAttemptState(Authenticator::Canonicalize(username),
user_image_downloader.cc 39 UserImageDownloader::UserImageDownloader(const std::string& username,
41 : username_(username),
wizard_controller.h 174 virtual void OnSetUserNamePassword(const std::string& username,
213 void Login(const std::string& username, const std::string& password);
  /external/chromium/chrome/browser/ui/login/
login_prompt_gtk.cc 50 virtual void OnAutofillDataAvailable(const std::wstring& username,
58 WideToUTF8(username).c_str());
login_prompt_win.cc 38 virtual void OnAutofillDataAvailable(const std::wstring& username,
  /external/chromium/chrome/common/net/gaia/
gaia_auth_fetcher.h 55 void StartClientLogin(const std::string& username,
154 const std::string& username,
gaia_authenticator.cc 366 void GaiaAuthenticator::SetUsernamePassword(const string& username,
370 auth_results_.email = username;
373 void GaiaAuthenticator::SetUsername(const string& username) {
375 auth_results_.email = username;
  /external/chromium/net/http/
http_auth_sspi_win.h 142 // obtained using |*username| and |*password|. If |username| and |password|
145 int GenerateAuthToken(const string16* username,
156 int OnFirstRound(const string16* username, const string16* password);
177 // Splits |combined| into domain and username.
http_auth_handler_ntlm.h 123 virtual int GenerateAuthTokenImpl(const string16* username,
http_stream_factory_impl_request.h 82 virtual int RestartTunnelWithProxyAuth(const string16& username,
  /external/chromium/third_party/libjingle/source/talk/base/
socketadapters.h 119 const std::string& username, const CryptString& password);
178 const std::string& username, const CryptString& password);
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
basicportallocator.h 173 std::string username; member in struct:cricket::PortConfiguration
188 const std::string& username,
  /external/dropbear/
cli-auth.c 49 buf_putstring(ses.writepayload, cli_opts.username,
50 strlen(cli_opts.username));
cli-authpubkey.c 141 buf_putstring(ses.writepayload, cli_opts.username,
142 strlen(cli_opts.username));
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_mschapv2.c 488 /* TODO: prevent retries using same username/password */
502 const u8 *username, *password, *new_password; local
509 username = eap_get_config_identity(sm, &username_len);
512 if (username == NULL || password == NULL || new_password == NULL)
515 username = mschapv2_remove_domain(username, &username_len);
573 wpa_hexdump_ascii(MSG_DEBUG, "EAP-MSCHAPV2: username",
574 username, username_len);
578 username, username_len,
589 username, username_len
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_mschapv2.c 490 /* TODO: prevent retries using same username/password */
504 const u8 *username, *password, *new_password; local
511 username = eap_get_config_identity(sm, &username_len);
514 if (username == NULL || password == NULL || new_password == NULL)
517 username = mschapv2_remove_domain(username, &username_len);
575 wpa_hexdump_ascii(MSG_DEBUG, "EAP-MSCHAPV2: username",
576 username, username_len);
580 username, username_len,
591 username, username_len
    [all...]
  /frameworks/base/core/java/android/net/http/
HttpAuthHeader.java 55 * new username and password.
60 * A string to be displayed to users so they know which username and
101 * Username string we get from the user.
137 * @return The username string.
144 * Sets the username string.
146 public void setUsername(String username) {
147 mUsername = username;
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupExchange.java 56 * finish() (pop to previous, to re-enter username & password)
137 * Username or password not entered yet
149 // If we've got a username and password and we're NOT editing, try autodiscover
150 String username = account.mHostAuthRecv.mLogin; local
152 if (username != null && password != null) {
  /external/chromium/chrome/browser/password_manager/
password_store_mac_internal.h 32 // |form|. Differs from PasswordsFillingForm in that the username must match.
81 // optionally path and username (either of both can be NULL).
86 const char* path, const char* username);
  /external/chromium/net/websockets/
websocket_job.h 52 const string16& username,
  /external/libsepol/include/sepol/policydb/
services.h 116 char *username,
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebRequest.h 83 void setAuth(const string16& username, const string16& password);

Completed in 1834 milliseconds

1 2 3 4 5 6 7 891011>>