/external/chromium_org/third_party/webrtc/base/ |
autodetectproxy.cc | 111 char username[kSavedStringLimit]; local 112 SaveStringToStack(username, proxy().username, sizeof username); 121 << autodetect << " " << bypass_list << " " << username; local
|
/external/smack/src/org/jivesoftware/smack/ |
ConnectionConfiguration.java | 88 private String username; field in class:ConnectionConfiguration 95 // Holds the proxy information (such as proxyhost, proxyport, username, password etc) 728 * Returns the username to use when trying to reconnect to the server. 730 * @return the username to use when trying to reconnect to the server. 733 return this.username; 771 void setLoginInfo(String username, String password, String resource) { 772 this.username = username;
|
BOSHConnection.java | 304 public void login(String username, String password, String resource) 312 // Do partial version of nameprep on the username. 313 username = username.toLowerCase().trim(); 320 response = saslAuthentication.authenticate(username, password, resource); 322 response = saslAuthentication.authenticate(username, resource, config.getCallbackHandler()); 326 response = new NonSASLAuthentication(this).authenticate(username, password, resource); 335 this.user = username + "@" + getServiceName(); 363 config.setLoginInfo(username, password, resource);
|
/external/smack/src/org/jivesoftware/smack/sasl/ |
SASLMechanism.java | 75 * @param username the username of the user being authenticated.
81 public void authenticate(String username, String host, String password) throws IOException, XMPPException {
85 //Set the authenticationID as the username, since they must be the same in this case.
86 this.authenticationId = username;
92 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, this);
100 * @param username the username of the user being authenticated.
106 public void authenticate(String username, String host, CallbackHandler cbh) throws IOException, XMPPException {
109 sc = Sasl.createSaslClient(mechanisms, username, "xmpp", host, props, cbh); [all...] |
/packages/apps/Settings/tests/src/com/android/settings/vpn2/ |
VpnProfileParser.java | 47 boolean username; 82 if (tagName.equalsIgnoreCase("username")) { 83 username = true; 153 if (username) { 154 profile.username = strValue; 155 username = false;
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
relayserver.cc | 275 // The initial packet should have a username (which identifies the binding). 279 LOG(LS_WARNING) << "Dropping packet: no username"; 285 std::string username(username_attr->bytes(), length); 289 BindingMap::iterator biter = bindings_.find(username); 291 LOG(LS_WARNING) << "Dropping packet: no binding with username"; 314 talk_base::AsyncPacketSocket* socket, std::string* username, 323 // The initial packet should have a username (which identifies the binding). 327 SendStunError(*msg, socket, remote_addr, 432, "Missing Username", ""); 331 // Record the username if requested. 332 if (username) 346 std::string username; local 406 std::string username; local [all...] |
/external/chromium_org/chrome/browser/chromeos/settings/ |
device_settings_test_helper.h | 107 const std::string& username, 110 const std::string& username) OVERRIDE; 116 virtual void StorePolicyForUser(const std::string& username,
|
session_manager_operation.h | 66 void set_username(const std::string& username) { username_ = username; }
|
/external/chromium_org/chrome/browser/policy/ |
policy_path_parser_win.cc | 94 scoped_ptr<WCHAR[]> username(new WCHAR[return_length]); 95 ::GetUserName(username.get(), &return_length); 96 std::wstring username_string(username.get());
|
/external/chromium_org/sync/test/accounts_client/ |
test_accounts_client.cc | 90 url = net::AppendQueryParameter(url, "username", *it); 102 dict_value->GetString("username", &session->username); 116 if (session.username.empty() || session.account_space.empty() || 124 url = net::AppendQueryParameter(url, "username", session.username);
|
test_accounts_client_unittest.cc | 32 session.username = kUsername; 65 success_dict.Set("username", new base::StringValue(kUsername)); 77 EXPECT_EQ(kUsername, session.username);
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/ |
connectivitychecker.cc | 59 SignalConfigReady(username(), password(), config, proxy_); 235 const std::string& username, const std::string& password, 243 CreateRelayPorts(username, password, config, proxy_info); 334 const std::string& username, const std::string& password, 338 username, password, config->stun_address); 342 const std::string& username, const std::string& password, 348 username, password); 352 const std::string& username, const std::string& password, 381 RelayPort* port = CreateRelayPort(username, password, 408 const std::string username = talk_base::CreateRandomString(ICE_UFRAG_LENGTH) local [all...] |
/external/chromium_org/url/ |
gurl.h | 189 // and port from a URL. Equivalent to clearing any username and password, 192 // invalid GURL. If the URL has neither username nor password, this 200 // supposed to be sent as HTTP referrer: username, password and ref fragment. 254 std::string username() const { function in class:GURL 255 return ComponentString(parsed_.username); 287 return parsed_.username.len >= 0;
|
/external/chromium_org/url/third_party/mozilla/ |
url_parse.h | 88 USERNAME, 130 // USERNAME: 5 5 147 // Username. Specified in URLs with an @ sign before the host. See |password| 148 Component username; member in struct:url::Parsed 151 // Not all URLs with a username have a password, as in "http://me@host/". 152 // The password is separated form the username with a colon, as in 308 Component* username, 314 Component* username,
|
/external/smack/src/org/jivesoftware/smack/proxy/ |
HTTPProxySocketFactory.java | 85 String username = proxy.getProxyUsername(); local 86 if (username == null) 93 proxyLine = "\r\nProxy-Authorization: Basic " + StringUtils.encodeBase64(username + ":" + password);
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
profile_sync_service_harness.cc | 110 const std::string& username, 112 return new ProfileSyncServiceHarness(profile, username, password); 117 const std::string& username, 121 username_(username), 129 void ProfileSyncServiceHarness::SetCredentials(const std::string& username, 131 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/chrome/browser/chromeos/login/lock/ |
webui_screen_locker.h | 84 virtual void LoginAsPublicAccount(const std::string& username) OVERRIDE; 86 virtual void OnUserSelected(const std::string& username) OVERRIDE;
|
/external/chromium_org/chrome/browser/signin/ |
signin_global_error.cc | 128 std::string username = signin_manager->GetAuthenticatedUsername(); local 129 if (username.empty())
|
/external/chromium_org/chrome/browser/ui/views/ |
login_view.cc | 102 void LoginView::OnAutofillDataAvailable(const base::string16& username, 105 username_field_->SetText(username);
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/ |
options.js | 21 var textbox = document.getElementById('try-job-username');
|
/external/chromium_org/components/policy/core/common/cloud/ |
component_cloud_policy_service.cc | 67 // |username| and |dm_token| will be used to validate the cached policies. 68 void SetCredentials(const std::string& username, const std::string& dm_token); 125 const std::string& username, 127 if (username.empty() || dm_token.empty()) { 131 store_.SetCredentials(username, dm_token); 342 std::string username; local 346 username = policy->username(); 356 username,
|
/external/chromium_org/net/http/ |
http_auth_handler_basic_unittest.cc | 21 const char* username; member in struct:net::__anon13280 26 // Empty username 30 // Empty username and empty password. 40 AuthCredentials credentials(base::ASCIIToUTF16(tests[i].username),
|
/external/chromium_org/ppapi/api/dev/ |
ppb_url_util_dev.idl | 21 * the scheme doesn't include the trailing colon, the username and password 42 PP_URLComponent_Dev username;
|
/external/chromium_org/ppapi/shared_impl/ |
ppb_url_util_shared.cc | 34 ConvertComponent(input.username, &output->username);
|