/external/chromium_org/third_party/libjingle/source/talk/p2p/client/ |
connectivitychecker_unittest.cc | 73 const std::string& username, const std::string& password) 75 username, password) { 92 const std::string& username, const std::string& password, 95 username, password, server_addr) { 146 ss << "username=" << kUserName << std::endl 236 const std::string& username, const std::string& password, 248 username, 253 const std::string& username, const std::string& password, 265 username,
|
/external/chromium_org/url/ |
url_canon_internal.cc | 319 DoOverrideComponent(repl_source.username, repl_parsed.username, 320 &source->username, &parsed->username); 355 repl_source.username, repl_parsed.username, 356 utf8_buffer, &parsed->username); 380 if (repl_source.username) source->username = utf8_buffer->data();
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
screen_supervised_user_creation.js | 73 this.imageElement.src = 'chrome://userimage/' + this.user.username + 74 '?id=' + ManagerPod.userImageSalt_[this.user.username]; 212 [podToSelect.user.username]); 791 ['manager', 'username'], 820 var managerId = selectedPod.user.username; 844 var userName = $('supervised-user-creation-name').value; 854 this.context_.supervisedName = userName; 856 [userName, firstPassword]); 906 var userName = this.getScreenElement('name').value; 909 if (userName == this.lastIncorrectUserName_ | [all...] |
/external/smack/src/org/jivesoftware/smack/ |
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...] |
SASLAuthentication.java.orig | 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...] |
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/ |
AuthenticatorActivity.java | 52 /** The Intent extra to store username. */ 53 public static final String PARAM_USERNAME = "username"; 55 /** The Intent extra to store username. */ 142 * Handles onClick event on the Submit button. Sends username/password to 236 // "Please enter a valid username/password. 263 // If no username, then we ask the user to log in using an
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/ |
NetworkUtilities.java | 63 public static final String PARAM_USERNAME = "username"; 98 * username and password. 100 * @param username The server account username 104 public static String authenticate(String username, String password) { 108 params.add(new BasicNameValuePair(PARAM_USERNAME, username));
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
blocking_login_browsertest.cc | 79 const char* username; member in struct:chromeos::BlockingLoginTestParam 162 void EnrollDevice(const std::string& username) { 166 username, policy::DEVICE_MODE_ENTERPRISE, "100200300", 173 void Login(const std::string& username) { 185 login_display->ShowSigninScreenForCreds(username, "password"); 325 Login(GetParam().username);
|
user_cloud_policy_store_chromeos.h | 47 const std::string& username, 118 // Callback for getting the sanitized username from |cryptohome_client_|.
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
profile_sync_service_harness.cc | 112 const std::string& username, 114 return new ProfileSyncServiceHarness(profile, username, password); 119 const std::string& username, 123 username_(username), 131 void ProfileSyncServiceHarness::SetCredentials(const std::string& username, 133 username_ = username;
|
/external/chromium_org/chrome/browser/ui/webui/ntp/ |
ntp_login_handler.cc | 128 std::string username = profile->GetPrefs()->GetString( local 135 if (username.empty()) { 198 std::string username = profile->GetPrefs()->GetString( local 203 if (!username.empty()) { 221 header = CreateSpanWithClass(base::UTF8ToUTF16(username), 248 base::FundamentalValue is_user_signed_in(!username.empty());
|
/external/chromium_org/remoting/protocol/ |
jingle_messages.cc | 58 const std::string& username = local 59 element->Attr(QName(kEmptyNamespace, "username")); 72 username.empty() || password.empty() || 83 candidate->candidate.set_username(username); 102 result->SetAttr(QName(kEmptyNamespace, "username"), 103 candidate.candidate.username());
|
/external/chromium_org/sync/util/ |
cryptographer.cc | 20 // a username, and a password) by calling Permute on this string. Since the 166 params.username, 168 NOTREACHED(); // Invalid username or password. 179 params.username, 181 NOTREACHED(); // Invalid username or password. 248 params.username,
|
/external/chromium_org/tools/grit/grit/node/ |
base_unittest.py | 74 ph.HandleAttribute(u'name', u'USERNAME') 88 u'<young> <ph name="USERNAME">$1<ex>Joi</ex></ph>' 93 u'<young> <ph name="USERNAME">$1<ex>Joi</ex></ph>' 106 ph.HandleAttribute(u'name', u'USERNAME') 122 u' <young> <ph name="USERNAME">$1<ex>Joi</ex></ph>' 128 u' <young> <ph name="USERNAME">$1<ex>Joi</ex></ph>'
|
/external/chromium_org/net/base/ |
net_util_icu.cc | 422 AdjustComponent(delta, &(parsed->username)); 692 spec.begin() + parsed.CountCharactersBefore(url::Parsed::USERNAME, true)); 706 // Username & password. 708 // Remove the username and password fields. We don't want to display those 711 new_parsed->username.reset(); 713 // Update the adjustments based on removed username and/or password. 714 if (parsed.username.is_nonempty() || parsed.password.is_nonempty()) { 715 if (parsed.username.is_nonempty() && parsed.password.is_nonempty()) { 716 // The seeming off-by-two is to account for the ':' after the username 719 static_cast<size_t>(parsed.username.begin) [all...] |
/external/chromium_org/net/http/ |
http_auth_cache_unittest.cc | 70 const base::string16 kUsername(ASCIIToUTF16("username")); 73 AuthCredentials CreateASCIICredentials(const char* username, 75 return AuthCredentials(ASCIIToUTF16(username), ASCIIToUTF16(password)); 160 EXPECT_EQ(ASCIIToUTF16("realm3-basic-user"), entry->credentials().username()); 173 entry->credentials().username()); 183 EXPECT_EQ(ASCIIToUTF16("realm2-user"), entry->credentials().username()); 298 EXPECT_EQ(ASCIIToUTF16("user3"), entry->credentials().username()); 349 // Fails because the username is wrong. 498 EXPECT_EQ(kAlice, entry->credentials().username()); 504 EXPECT_EQ(kAlice2, entry->credentials().username()); [all...] |
/external/chromium_org/chrome/browser/policy/test/ |
policy_testserver.py | 452 # If this is a |publicaccount| request, get the |username| now and use 455 # Unfortunately, the |username| can't be obtained from |msg| because that 457 username = None 460 username = request.settings_entity_id 472 self.ProcessCloudPolicy(request, token_info, fetch_response, username) 475 request, response.policy_response, token_info, username) 648 username=None): 660 username: The username for the response. May be None. 670 self.ProcessCloudPolicy(request, token_info, fetch_response, username) [all...] |
/device/generic/goldfish/ |
init.goldfish.rc | 52 # setprop ro.config.hosted_account username@hosteddomain.org:password 53 # setprop ro.config.google_account username@gmail.com:password
|
/device/generic/mini-emulator-arm64/ |
init.mini-emulator.rc | 61 # setprop ro.config.hosted_account username@hosteddomain.org:password 62 # setprop ro.config.google_account username@gmail.com:password
|
/device/generic/mini-emulator-armv7-a-neon/ |
init.mini-emulator.rc | 61 # setprop ro.config.hosted_account username@hosteddomain.org:password 62 # setprop ro.config.google_account username@gmail.com:password
|
/external/apache-http/src/org/apache/http/impl/auth/ |
NTLMEngine.java | 66 * @param username Windows user name 75 String username,
|
/external/chromium_org/chrome/browser/chromeos/login/ |
login_utils.h | 50 // Checks if the given username is whitelisted and allowed to sign-in to 53 static bool IsWhitelisted(const std::string& username, bool* wildcard_match);
|
oobe_browsertest.cc | 94 // username/password configuration. 95 GetLoginDisplay()->ShowSigninScreenForCreds("username", "password");
|
/external/chromium_org/chrome/browser/metrics/ |
signin_status_metrics_provider.h | 82 const std::string& username, 85 const std::string& username) OVERRIDE;
|
/external/chromium_org/chrome/browser/resources/ |
gcm_internals.html | 48 Signed In Username 50 <td id="signed-in-username">
|