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

1 2 3 45 6 7 8 910

  /external/dropbear/
runopts.h 102 char *username; member in struct:cli_runopts
  /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));
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
AgentStatus.java 120 private String username; field in class:AgentStatus.ChatInfo
123 public ChatInfo(String sessionID, String userID, Date date, String email, String username, String question) {
128 this.username = username;
173 * Returns the username(nickname) associated with the user.
175 * @return the username associated with the user.
178 return username;
206 if (username != null) {
207 buf.append(" username=\"").append(username).append("\"");
260 String username = parser.getAttributeValue("", "username"); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
HttpAuthenticationDialog.java 91 String username = getUsername(); local
97 if (username != null) {
98 mUsernameView.setText(username);
157 void onOk(String host, String realm, String username, String password);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
ContactInfoHelper.java 73 // Check whether the "username" part of the SIP address is
75 String username = PhoneNumberUtils.getUsernameFromUriNumber(number); local
76 if (PhoneNumberUtils.isGlobalPhoneNumber(username)) {
77 sipInfo = queryContactInfoForPhoneNumber(username, countryIso);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urlparse.py 77 def username(self): member in class:ResultMixin
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urlparse.py 77 def username(self): member in class:ResultMixin
  /external/chromium/chrome/browser/automation/
testing_automation_provider_chromeos.cc 165 std::string username, password; local
166 if (!args->GetString("username", &username) ||
177 controller->Login(username, password);
  /external/chromium/chrome/browser/
browser_signin.cc 202 std::string username; local
207 !result->GetString("user", &username) ||
215 username, password, captcha, access_code);
250 std::string username = local
252 VLOG(1) << "GetSignedInUsername: " << username;
253 return username;
  /external/chromium/chrome/browser/ui/login/
login_prompt_ui.cc 34 dict.SetString("username",
131 void ShowAutofillData(const std::wstring& username,
169 virtual void OnAutofillDataAvailable(const std::wstring& username,
172 delegate_->ShowAutofillData(username, password);
207 string16 username; local
210 if (!res->GetString("username", &username) ||
214 login_handler_->SetAuth(username, password);
221 void LoginHandlerHtmlDelegate::ShowAutofillData(const std::wstring& username,
223 autofill_username_ = WideToUTF8(username);
    [all...]
  /external/chromium/googleurl/src/
gurl_unittest.cc 79 EXPECT_EQ("user", url.username());
95 EXPECT_EQ("", url.username());
113 EXPECT_EQ("user", url2.username());
128 EXPECT_EQ("", invalid2.username());
145 EXPECT_EQ("", url.username());
235 const char* username; member in struct:ReplaceCase
257 SetupReplacement(&GURL::Replacements::SetUsername, &repl, cur.username);
url_parse_unittest.cc 78 const char* username; member in struct:__anon5334::URLParseCase
178 {"http://u:p@h:8/p?q#r", Parsed::USERNAME, true, 7},
179 {"http://u:p@h:8/p?q#r", Parsed::USERNAME, false, 7},
204 {"http://h/", Parsed::USERNAME, true, 7},
205 {"http:", Parsed::USERNAME, true, 5},
210 {"file:///c:/foo", Parsed::USERNAME, true, 7},
284 // Username/passwords and things that look like them
339 EXPECT_TRUE(ComponentMatches(url, cases[i].username, parsed.username));
376 ExpectInvalidComponent(parsed.username);
    [all...]
  /external/chromium/net/http/
http_auth.h 74 // http://<username>:<password>@host:port
106 string16 username; member in struct:net::HttpAuth::Identity
http_auth_controller.cc 182 const string16* username = NULL; local
185 username = &identity_.username;
190 int rv = handler_->GenerateAuthToken(username,
209 // Don't do preemptive authorization if the URL contains a username/password,
236 identity_.username = entry->username();
369 void HttpAuthController::ResetAuth(const string16& username,
372 DCHECK(identity_.invalid || (username.empty() && password.empty()));
375 // Update the username/password
    [all...]
  /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/third_party/libjingle/source/talk/p2p/base/
relayserver.h 48 // All connections created with the same username/password are bound together.
117 std::string* username, StunMessage* msg);
199 RelayServer* server, const std::string& username,
205 const std::string& username() { return username_; } function in class:cricket::RelayServerBinding
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
basicportallocator.h 173 std::string username; member in struct:cricket::PortConfiguration
188 const std::string& username,
  /external/chromium_org/chrome/browser/chromeos/
chrome_browser_main_chromeos.cc 142 // Class is used to login using passed username and password.
147 StubLogin(std::string username, std::string password)
153 UserContext(username,
548 std::string username = local
554 user_manager->UserLoggedIn(username, username_hash, true);
555 VLOG(1) << "Relaunching browser for user: " << username
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
user.h 23 // |username|, |password|, |auth_code| and |username_hash| which is returned
28 UserContext(const std::string& username,
31 UserContext(const std::string& username,
37 std::string username; member in struct:chromeos::UserContext
44 // Each user has a canonical email (username), returned by |email()| and
172 static User* CreateLocallyManagedUser(const std::string& username);
  /external/chromium_org/chrome/browser/ui/webui/ntp/
ntp_login_handler.cc 133 std::string username = profile->GetPrefs()->GetString( local
140 if (username.empty()) {
205 std::string username = profile->GetPrefs()->GetString( local
210 if (!username.empty()) {
228 header = CreateSpanWithClass(UTF8ToUTF16(username), "profile-name");
251 base::FundamentalValue is_user_signed_in(!username.empty());
  /external/chromium_org/chrome/browser/ui/webui/options/
manage_profile_handler.cc 470 string16 username = UTF8ToUTF16(manager->GetAuthenticatedUsername()); local
479 base::StringValue(username),
  /external/chromium_org/components/autofill/content/renderer/
password_autofill_agent.cc 246 WebKit::WebInputElement username = element; // We need a non-const.
250 FillUserNameAndPassword(&username, &password, fill_data, true, false);
263 WebKit::WebInputElement username = element; // We need a non-const.
265 SetElementAutofilled(&username, false);
271 // If wait_for_username is true we will fill when the username loses focus.
285 ShowSuggestionPopup(iter->second.fill_data, username);
448 // until the user types in a valid username.
453 // First, get pointers to username element.
563 // username and password will contain the match found if any.
564 base::string16 username; local
629 WebKit::WebInputElement username = username_input; local
    [all...]
  /external/chromium_org/net/http/
http_auth_controller.cc 203 // Don't do preemptive authorization if the URL contains a username:password,
460 // Try to use the username:password encoded into the URL first.
465 // Extract the username:password from the URL.
466 base::string16 username; local
468 GetIdentityFromURL(auth_url_, &username, &password);
469 identity_.credentials.Set(username, password);
  /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/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java 90 public final String username; field in class:PeerConnection.IceServer
98 public IceServer(String uri, String username, String password) {
100 this.username = username;
105 return uri + "[" + username + ":" + password + "]";

Completed in 1033 milliseconds

1 2 3 45 6 7 8 910