/external/chromium/third_party/libjingle/source/talk/examples/call/ |
call_main.cc | 278 // parse username and password, if present 280 std::string username; local 283 username = argv[1]; 292 if (username.empty()) { 294 std::cin >> username; local 296 if (username.find('@') == std::string::npos) { 297 username.append("@localhost"); 299 jid = buzz::Jid(username);
|
/external/chromium/chrome/browser/ui/login/ |
login_prompt.cc | 127 void LoginHandler::SetAuth(const string16& username, 136 password_form_.username_value = username; 147 NotifyAuthSupplied(username, password); 155 this, &LoginHandler::SetAuthDeferred, username, password)); 240 SetAuth(supplied_details->username(), supplied_details->password()); 296 void LoginHandler::NotifyAuthSupplied(const string16& username, 307 AuthSuppliedLoginNotificationDetails details(this, username, password); 348 void LoginHandler::SetAuthDeferred(const string16& username, 353 request_->SetAuth(username, password);
|
/external/chromium/googleurl/src/ |
url_canon_internal.cc | 314 DoOverrideComponent(repl_source.username, repl_parsed.username, 315 &source->username, &parsed->username); 350 repl_source.username, repl_parsed.username, 351 utf8_buffer, &parsed->username); 375 if (repl_source.username) source->username = utf8_buffer->data();
|
gurl.h | 201 // and port from a URL. Equivalent to clearing any username and password, 204 // invalid GURL. If the URL has neither username nor password, this 244 std::string username() const { function in class:GURL 245 return ComponentString(parsed_.username); 277 return parsed_.username.len >= 0;
|
/external/ppp/pppd/plugins/ |
winbind.c | 250 unsigned int run_ntlm_auth(const char *username, 331 if (username) { 332 char *b64_username = base64_encode(username); 333 fprintf(pipe_in, "Username:: %s\n", b64_username); 345 fprintf(pipe_in, "Full-Username:: %s\n", b64_full_username); 526 char *username; local 534 /* remove domain from "domain\username" */ 535 if ((username = strrchr(user, '\\')) != NULL) 536 ++username; 538 username = user [all...] |
/external/chromium/chrome/browser/chromeos/login/ |
screen_lock_view.cc | 179 UsernameView* username = UsernameView::CreateShapedUsernameView(text, false); local 180 username_ = username; 181 username->SetColor(login::kTextColor); 182 username->SetFont(font); 183 AddChildView(username);
|
google_authenticator.h | 42 // Given a |username| and |password|, this method attempts to authenticate to 44 // consumer_->OnLoginSuccess() with the |username| and a vector of 56 const std::string& username, 61 // Given a |username| and |password|, this method attempts to 65 bool AuthenticateToUnlock(const std::string& username, 101 const std::string& username, 120 // username, we will mount a tmpfs for them and let them use the 170 // Name of a file, next to chrome, that contains a local account username.
|
account_screen.cc | 162 void AccountScreen::OnUserCreated(const std::string& username, 164 delegate()->GetObserver(this)->OnSetUserNamePassword(username, password); 171 // Disable input methods since they are not necessary to input username and
|
new_user_view.h | 29 // View that is used for new user login. It asks for username and password, 42 // User provided |username|, |password| and initiated login. 43 virtual void OnLogin(const std::string& username, 78 // Returns bounds of username field in screen coordinates. 87 void SetUsername(const std::string& username);
|
/external/chromium/net/http/ |
http_auth_cache.cc | 115 const string16& username, 141 entry->username_ = username; 202 const string16& username, 207 if (username == it->username() && password == it->password()) {
|
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
p2ptransport.cc | 130 if (!VerifyUsernameFormat(candidate->username(), error)) 136 bool P2PTransportParser::VerifyUsernameFormat(const std::string& username, 138 if (username.size() > kMaxUsernameSize) 139 return BadParse("candidate username is too long", error); 140 if (!talk_base::Base64::IsBase64Encoded(username)) 142 "candidate username has non-base64 encoded characters", error); 180 elem->SetAttr(QN_USERNAME, candidate.username());
|
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, 324 // The initial packet should have a username (which identifies the binding). 328 SendStunError(*msg, socket, remote_addr, 432, "Missing Username", ""); 332 // Record the username if requested. 333 if (username) 347 std::string username; local 407 std::string username; local [all...] |
/external/dropbear/ |
cli-runopts.c | 50 "-l <username>\n" 92 cli_opts.username = NULL; 195 next = &cli_opts.username; 333 /* no username portion, the cli-auth.c code can figure the 339 cli_opts.username = userhostarg; 342 if (cli_opts.username == NULL) { 350 cli_opts.username = m_strdup(pw->pw_name);
|
cli-authinteract.c | 145 /* username */ 146 buf_putstring(ses.writepayload, cli_opts.username, 147 strlen(cli_opts.username));
|
/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;
|
/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...] |
/external/chromium/chrome/browser/remoting/ |
setup_flow_login_step.cc | 48 std::string username, password, captcha, access_code; local 51 if (!result->GetString("user", &username) || 59 OnUserSubmittedAuth(username, password, captcha, access_code);
|
/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);
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
ContactInfoHelper.java | 60 // Check whether the "username" part of the SIP address is 62 String username = PhoneNumberUtils.getUsernameFromUriNumber(number); local 63 if (PhoneNumberUtils.isGlobalPhoneNumber(username)) { 64 sipInfo = queryContactInfoForPhoneNumber(username, countryIso);
|
/external/chromium/chrome/browser/policy/ |
cloud_policy_controller.cc | 26 // Checks the domain part of the given username against the list of known 27 // non-managed domain names. Returns false if |username| is empty or 29 static bool CanBeInManagedDomain(const std::string& username) { 30 if (username.empty()) { 36 if (EndsWith(username, kNonManagedDomains[i], true)) { 231 std::string username; local 238 if (identity_strategy_->GetCredentials(&username, &auth_token) && 239 CanBeInManagedDomain(username)) {
|
/external/chromium/chrome/browser/ui/views/ |
login_view.cc | 105 void LoginView::OnAutofillDataAvailable(const std::wstring& username, 108 username_field_->SetText(username);
|
/external/chromium/net/tools/testserver/ |
xmppserver.py | 161 def __init__(self, username, domain, resource=''): 162 self.username = username 167 jid_str = "%s@%s" % (self.username, self.domain) 173 return Jid(self.username, self.domain) 296 # username, _, domain = username_domain.partition('@') 301 username = username_domain[:at_pos] 304 username = username_domain 306 return (username, domain)
|
/external/chromium/net/url_request/ |
url_request_http_job.h | 63 void RestartTransactionWithAuth(const string16& username, 82 virtual void SetAuth(const string16& username,
|
/external/chromium/third_party/libjingle/source/talk/base/ |
basicpacketsocketfactory.cc | 113 socket, proxy_info.address, proxy_info.username, proxy_info.password); 117 proxy_info.username, proxy_info.password);
|
sslsocketfactory.cc | 145 proxy.username, proxy.password); 150 proxy.username, proxy.password);
|