HomeSort by relevance Sort by last modified time
    Searched defs:username (Results 151 - 175 of 248) sorted by null

1 2 3 4 5 67 8 910

  /external/netperf/
netsh.c 118 char username[BUFSIZ]; /* login name of user */ variable
  /external/wpa_supplicant_8/src/eap_server/
eap_server_mschapv2.c 290 const u8 *username, *user; local
335 username = sm->identity;
338 if (username[i] == '\\') {
340 username += i + 1;
356 os_memcmp(username, user, username_len) != 0) {
359 "name", username, username_len);
367 username, username_len);
372 username, username_len,
378 username, username_len,
396 * calculate it here so that peer_challenge and username nee
    [all...]
eap_server_sim.c 40 char permanent[20]; /* Permanent username */
421 char *username; local
453 username = sim_get_username(sm->identity, sm->identity_len);
454 if (username == NULL)
457 if (username[0] == EAP_SIM_REAUTH_ID_PREFIX) {
458 wpa_printf(MSG_DEBUG, "EAP-SIM: Reauth username '%s'",
459 username);
461 sm->eap_sim_db_priv, username);
462 os_free(username);
478 if (username[0] == EAP_SIM_PSEUDONYM_PREFIX)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java 301 * and the peer's username is all numeric. Look up the username as it
313 String username = PhoneNumberUtils.getUsernameFromUriNumber(number); local
314 if (PhoneNumberUtils.isGlobalPhoneNumber(username)) {
317 Uri.encode(username)));
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLConnection.java 87 private String username = "anonymous"; field in class:FtpURLConnection
113 username = parse.substring(0, split);
116 username = parse;
379 write("USER " + username + "\r\n");
  /packages/apps/InCallUI/src/com/android/incallui/
CallerInfo.java 299 * and the peer's username is all numeric. Look up the username as it
311 String username = PhoneNumberUtils.getUsernameFromUriNumber(number); local
312 if (PhoneNumberUtils.isGlobalPhoneNumber(username)) {
315 Uri.encode(username)));
  /external/chromium/chrome/browser/importer/
importer_unittest.cc 454 std::wstring username; local
455 ASSERT_TRUE(ie7_password::GetUserPassFromData(decrypted_data1, &username,
457 EXPECT_EQ(L"abcdefgh", username);
460 ASSERT_TRUE(ie7_password::GetUserPassFromData(decrypted_data2, &username,
462 EXPECT_EQ(L"abcdefghi", username);
488 "mailto:username@host"},
496 const wchar_t* username; member in struct:PasswordList
591 EXPECT_EQ(WideToUTF16(p.username), form.username_value);
796 EXPECT_EQ(WideToUTF16(p.username), form.username_value);
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_mac.cc 42 const char* path, const char* username, OSType creator);
70 const char* username, OSType creator) {
128 if (username != NULL) {
131 search_attributes_.attr[entries].length = strlen(username);
133 const_cast<void*>(reinterpret_cast<const void*>(username));
486 std::string username = UTF16ToUTF8(query_form.username_value); local
489 NULL, username.c_str());
510 std::string username = UTF16ToUTF8(query_form.username_value); local
513 NULL, username.c_str());
553 std::string username = UTF16ToUTF8(form.username_value) local
625 std::string username = UTF16ToUTF8(form.username_value); local
    [all...]
password_store_mac_unittest.cc 233 const wchar_t* username; // Set to NULL to check for a blacklist entry. member in struct:__anon4733
291 if (expected[i].username) {
292 EXPECT_EQ(WideToUTF16(expected[i].username), form.username_value)
508 L"username", L"password", false, false, 0 }, true },
612 different_form.username_element = ASCIIToUTF16("username");
688 L"submit", L"username", L"password", L"joe_user", L"",
694 L"submit", L"username", L"password", L"joe_user", L"",
700 L"submit", L"username", L"password", L"second-account", L"",
705 L"submit", L"username", L"password", NULL, NULL,
711 L"submit", L"username", L"password", L"joe_user", L"sekrit"
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.cc 414 std::string username; local
419 !args->GetString(2, &username) ||
431 apn, network->apn().network_id, username, password));
696 dictionary->SetString("apn_username", apn.username);
702 dictionary->SetString("last_good_apn_username", last_good_apn.username);
    [all...]
  /external/chromium/googleurl/src/
url_canon_unittest.cc 89 const char* username; member in struct:__anon5331::ReplaceCase
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
port.cc 246 // The packet must include a username that either begins or ends with our
257 // Username not present or corrupted, don't reply.
258 LOG_J(LS_ERROR, this) << "Received STUN request without username from "
263 LOG_J(LS_ERROR, this) << "Received STUN request with bad local username "
277 LOG_J(LS_ERROR, this) << "Received STUN response without username from "
284 LOG_J(LS_ERROR, this) << "Received STUN response with bad local username "
327 // Retrieve the username from the request.
332 // No valid username, skip the response.
375 // Retrieve the username from the request. If it didn't have one, we
381 // No valid username, skip the response
476 std::string username = connection_->remote_candidate().username(); local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/options/
vpn_config_view.cc 296 // Username is always required.
614 // Username label and input.
702 std::string provider_type, server_hostname, username, group_name; local
720 flimflam::kL2tpIpsecUserProperty, &username);
729 flimflam::kOpenVPNUserProperty, &username);
745 if (username_textfield_ && !username.empty())
746 username_textfield_->SetText(UTF8ToUTF16(username));
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/webstore_private/
webstore_private_api.cc 171 std::string username = profile->GetPrefs()->GetString( local
173 dictionary->SetString(kLoginKey, username);
  /external/chromium_org/chrome/browser/password_manager/
password_store_mac.cc 45 const char* path, const char* username, OSType creator);
73 const char* username, OSType creator) {
131 if (username != NULL) {
134 search_attributes_.attr[entries].length = strlen(username);
136 const_cast<void*>(reinterpret_cast<const void*>(username));
490 std::string username = UTF16ToUTF8(query_form.username_value); local
493 NULL, username.c_str());
514 std::string username = UTF16ToUTF8(query_form.username_value); local
517 NULL, username.c_str());
557 std::string username = UTF16ToUTF8(form.username_value) local
629 std::string username = UTF16ToUTF8(form.username_value); local
    [all...]
password_store_mac_unittest.cc 234 const wchar_t* username; // Set to NULL to check for a blacklist entry. member in struct:__anon7828
292 if (expected[i].username) {
293 EXPECT_EQ(WideToUTF16(expected[i].username), form.username_value)
509 L"username", L"password", false, false, 0 }, true },
614 different_form.username_element = ASCIIToUTF16("username");
690 L"submit", L"username", L"password", L"joe_user", L"",
696 L"submit", L"username", L"password", L"joe_user", L"",
702 L"submit", L"username", L"password", L"second-account", L"",
707 L"submit", L"username", L"password", NULL, NULL,
713 L"submit", L"username", L"password", L"joe_user", L"sekrit"
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
avatar_menu_bubble_view.cc 430 std::string username; local
434 username = signin->GetAuthenticatedUsername();
446 if (username.empty()) {
454 UTF8ToUTF16(username)));
  /external/chromium_org/chrome/browser/ui/webui/
policy_ui.cc 143 std::string username = policy ? policy->username() : std::string(); local
154 dict->SetString("username", username);
164 std::string username; local
165 dict->GetString("username", &username);
166 if (!username.empty())
167 dict->SetString("domain", gaia::ExtractDomainName(username));
436 dict->SetString("username", std::string())
684 std::string username; local
    [all...]
  /external/chromium_org/net/ftp/
ftp_network_transaction.cc 254 base::string16 username; local
256 GetIdentityFromURL(request_->url, &username, &password);
257 credentials_.Set(username, password);
707 credentials_.username() == ASCIIToUTF16("anonymous")) {
754 std::string command = "USER " + UTF16ToUTF8(credentials_.username());
    [all...]
  /external/chromium_org/remoting/host/
remoting_me2me_host.cc 814 LOG(INFO) << "Policy requires host username match.";
815 std::string username = GetUsername(); local
816 bool shutdown = username.empty() ||
817 !StartsWithASCII(xmpp_login_, username + std::string("@"),
821 // On Mac, we run as root at the login screen, so the username won't match.
837 // Shutdown the host if the username does not match.
839 LOG(ERROR) << "The host username does not match.";
843 LOG(INFO) << "Policy does not require host username match.";
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
AppRTCClient.java 358 String username = responseJSON.getString("username"); local
360 return new PeerConnection.IceServer(uri, username, password);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
p2ptransportchannel.cc 418 std::string username = it->username(); local
420 if (it->username() != username) {
431 if (it->username() == remote_username) {
452 // Don't know about this username, the request is bogus
619 // ICE candidates don't need to have username and password set, but
621 // port.cc) uses the remote candidates's username. So, we set it
623 if (remote_candidate.username().empty()) {
    [all...]
stun_unittest.cc 150 // ByteString Attribute (username)
157 0x00, 0x06, 0x00, 0x08, // username attribute (length 8)
174 0x61, 0x62, 0x63, 0x00 // check for (username of length 3)
177 // ByteString Attribute (username) with padding byte
184 0x00, 0x06, 0x00, 0x03, // username attribute (length 3)
195 0x00, 0x0a, 0x00, 0x06, // username attribute (length 6)
216 // bogus address family and don't read the username attribute.
226 0x00, 0x06, 0x00, 0x08, // Username attribute (length 8)
295 // Username: "evtj:h6vY" (without quotes)
336 0x00, 0x06, 0x00, 0x09, // USERNAME attribute heade
652 const StunByteStringAttribute* username = local
721 const StunByteStringAttribute* username = local
1034 const StunByteStringAttribute* username = local
1047 const StunByteStringAttribute* username = local
1085 const StunByteStringAttribute* username = local
    [all...]
  /external/chromium_org/url/
url_canon_unittest.cc 76 const char* username; member in struct:__anon17005::ReplaceCase
    [all...]
  /external/ganymed-ssh2/examples/
SwingShell.java 517 String username; field in class:SwingShell.ConnectionThread
519 public ConnectionThread(String hostname, String username)
522 this.username = username;
558 if ((enableDSA || enableRSA) && conn.isAuthMethodAvailable(username, "publickey"))
570 boolean res = conn.authenticateWithPublicKey(username, key, esd.answer);
590 boolean res = conn.authenticateWithPublicKey(username, key, esd.answer);
603 if (enableKeyboardInteractive && conn.isAuthMethodAvailable(username, "keyboard-interactive"))
607 boolean res = conn.authenticateWithKeyboardInteractive(username, il);
631 if (conn.isAuthMethodAvailable(username, "password")
711 String username = userField.getText().trim(); local
    [all...]

Completed in 1046 milliseconds

1 2 3 4 5 67 8 910