HomeSort by relevance Sort by last modified time
    Searched refs:username (Results 101 - 125 of 466) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/openssh/
logintest.c 77 li->username, li->hostname, li->exit,
91 char username[32]; local
101 strlcpy(username, pw->pw_name, sizeof(username));
108 li1 = login_alloc_entry((int)getpid(), username, NULL, ttyname(0));
loginrec.c 308 * If we don't have a 'real' lastlog, we need the username to
318 * username (XXX - so check for trunc!) */
319 strlcpy(li->username, pw->pw_name, sizeof(li->username));
339 logininfo *login_alloc_entry(pid_t pid, const char *username,
345 login_init_entry(newli, pid, username, hostname, line);
367 login_init_entry(struct logininfo *li, pid_t pid, const char *username,
380 if (username) {
381 strlcpy(li->username, username, sizeof(li->username))
    [all...]
  /external/smack/src/org/jivesoftware/smack/
NonSASLAuthentication.java 47 public String authenticate(String username, String resource, CallbackHandler cbh) throws XMPPException {
52 return authenticate(username, String.valueOf(pcb.getPassword()),resource);
58 public String authenticate(String username, String password, String resource) throws
60 // If we send an authentication packet in "get" mode with just the username,
64 discoveryAuth.setUsername(username);
85 auth.setUsername(username);
SASLAuthentication.java 207 * The server may assign a full JID with a username or resource different than the requested
210 * @param username the username that is authenticating with the server.
216 public String authenticate(String username, String resource, CallbackHandler cbh)
237 currentMechanism.authenticate(username, connection.getHost(), cbh);
289 * The server may assign a full JID with a username or resource different than the requested
292 * @param username the username that is authenticating with the server.
298 public String authenticate(String username, String password, String resource)
319 currentMechanism.authenticate(username, connection.getServiceName(), password);
    [all...]
  /external/chromium/net/http/
http_auth_handler_digest.cc 139 const string16* username,
154 *username,
318 const string16& username,
324 std::string ha1 = MD5String(UTF16ToUTF8(username) + ":" + realm_ + ":" +
344 const string16& username,
352 std::string authorization = (std::string("Digest username=") +
353 HttpUtil::Quote(UTF16ToUTF8(username)));
361 std::string response = AssembleResponseDigest(method, path, username,
http_auth_handler_digest.h 86 virtual int GenerateAuthTokenImpl(const string16* username,
150 const string16& username,
158 const string16& username,
  /external/chromium/net/url_request/
url_request_ftp_job.cc 110 server_auth_->username,
122 SetAuth(cached_auth->username, cached_auth->password);
124 // Prompt for a username/password.
152 int rv = transaction_->RestartWithAuth(server_auth_->username,
204 void URLRequestFtpJob::SetAuth(const string16& username,
208 server_auth_->username = username;
212 username, password);
url_request_ftp_job.h 55 virtual void SetAuth(const string16& username,
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/
CalendarSyncEnablerTest.java 214 protected Account makeAccountManagerAccount(String username) {
215 return new Account(username, AccountManagerTypes.TYPE_EXCHANGE);
218 protected void createAccountManagerAccount(String username) {
219 final Account account = makeAccountManagerAccount(username);
224 setupProviderAndAccountManagerAccount(String username) {
225 // Note that setupAccount creates the email address username@android.com, so that's what
227 createAccountManagerAccount(username + TEST_ACCOUNT_SUFFIX);
228 return setupTestAccount(username, true);
  /packages/apps/Exchange/tests/src/com/android/exchange/
CalendarSyncEnablerTest.java 214 protected Account makeAccountManagerAccount(String username) {
215 return new Account(username, AccountManagerTypes.TYPE_EXCHANGE);
218 protected void createAccountManagerAccount(String username) {
219 final Account account = makeAccountManagerAccount(username);
224 setupProviderAndAccountManagerAccount(String username) {
225 // Note that setupAccount creates the email address username@android.com, so that's what
227 createAccountManagerAccount(username + TEST_ACCOUNT_SUFFIX);
228 return setupTestAccount(username, true);
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 58 Process a request to authenticate a client. We assume that the username
67 self.username = self.request.get('username')
70 logging.info('Authenticatng username: ' + self.username)
72 if ((self.username != None) and
73 (self.username.startswith(BaseWebServiceHandler.ACCT_USER_NAME)) and
88 The request should include username/password parameters that correspond
95 self.username = self.request.get('username')
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
existing_user_controller.cc 156 void ExistingUserController::Login(const std::string& username,
158 if (username.empty() || password.empty())
166 if (last_login_attempt_username_ != username) {
167 last_login_attempt_username_ = username;
182 login_performer_->Login(username, password);
217 void ExistingUserController::OnUserSelected(const std::string& username) {
305 const std::string& username,
309 bool known_user = UserManager::Get()->IsKnownUser(username);
327 LoginUtils::Get()->PrepareProfile(username,
parallel_authenticator.h 81 // Given a |username| and |password|, this method attempts to authenticate to
84 // |username|, we will call consumer_->OnLoginSuccess() with |username| and a
109 const std::string& username,
114 // Given a |username| and |password|, this method attempts to
118 bool AuthenticateToUnlock(const std::string& username,
140 const std::string& username,
209 // username, we will mount a tmpfs for them and let them use the
230 // Name of a file, next to chrome, that contains a local account username.
user_image_loader.cc 28 void UserImageLoader::Start(const std::string& username,
33 ImageInfo image_info(username, should_save_image);
94 delegate_->OnImageLoaded(image_info.username,
account_screen.h 38 virtual void OnUserCreated(const std::string& username,
login_utils.h 52 const std::string& username,
user_image_downloader.h 30 UserImageDownloader(const std::string& username,
73 // Username saved to use as a key for user picture in preferences.
  /external/chromium/googleurl/src/
url_canon_etc.cc 168 // The username and password components reference ranges in the corresponding
174 const url_parse::Component& username,
180 if (username.len <= 0 && password.len <= 0) {
181 // Common case: no user info. We strip empty username/passwords.
187 // Write the username.
189 if (username.len > 0) {
190 // This will escape characters not valid for the username.
191 AppendStringOfType(&username_spec[username.begin], username.len,
336 const url_parse::Component& username,
    [all...]
url_parse.h 113 USERNAME,
151 // USERNAME: 5 5
169 // Username. Specified in URLs with an @ sign before the host. See |password|
170 Component username; member in struct:url_parse::Parsed
173 // Not all URLs with a username have a password, as in "http://me@host/".
174 // The password is separated form the username with a colon, as in
272 Component* username,
278 Component* username,
url_parse.cc 70 Component* username,
72 // Find the first colon in the user section, which separates the username and
79 // Found separator: <username>:<password>
80 *username = Component(user.begin, colon_offset);
84 // No separator, treat everything as the username
85 *username = user;
143 Component* username,
149 username->reset();
165 username, password);
170 username->reset()
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_aka.c 53 char permanent[20]; /* Permanent username */
92 const char *username)
95 username[0] != EAP_AKA_PRIME_REAUTH_ID_PREFIX)
98 username[0] != EAP_AKA_REAUTH_ID_PREFIX)
101 wpa_printf(MSG_DEBUG, "EAP-AKA: Reauth username '%s'", username);
103 username);
134 char *username; local
138 username = sim_get_username(sm->identity, sm->identity_len);
139 if (username == NULL
717 char *username; local
    [all...]
  /external/chromium/chrome/browser/policy/
policy_path_parser_win.cc 63 scoped_array<WCHAR> username(new WCHAR[return_length]);
64 ::GetUserName(username.get(), &return_length);
65 std::wstring username_string(username.get());
  /external/chromium/chrome/browser/password_manager/
ie7_password.cc 17 // Structures that IE7/IE8 use to store a username/password.
31 // the username, and one for the password.
48 // is the username, the second one if the password.
56 std::wstring* username,
66 if (information->header.item_count != 2) // Username and Password
79 *username = reinterpret_cast<const wchar_t*>(offset_to_data +
112 std::wstring* username, std::wstring* password) {
134 GetUserPassFromData(decrypted_data, username, password);
  /external/chromium/net/socket_stream/
socket_stream_job.h 60 virtual void RestartWithAuth(const string16& username,
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
p2ptransport.h 75 bool VerifyUsernameFormat(const std::string& username,

Completed in 622 milliseconds

1 2 3 45 6 7 8 91011>>