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

1 23 4 5 6 7 8 910

  /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/chromium/chrome/browser/ui/login/
login_prompt.h 59 void SetAuth(const string16& username, const string16& password);
102 void NotifyAuthSupplied(const string16& username,
113 void SetAuthDeferred(const string16& username,
182 const string16& username,
185 username_(username),
187 const string16& username() const { return username_; } function in class:AuthSuppliedLoginNotificationDetails
191 // The username that was used for the authentication.
200 // Prompts the user for their username and password. This is designed to
  /external/chromium/chrome/browser/ui/webui/chromeos/login/
login_ui.cc 86 std::string username; local
90 args->GetString(0, &username);
92 delegate_->Login(username, password);
  /external/chromium/net/http/
http_auth_cache.h 24 // - the last identity used (username/password)
68 // |username| - login information for the realm.
77 const string16& username,
82 // if one exists AND if the cached identity matches (|username|, |password|).
86 // |username| - condition to match.
92 const string16& username,
134 // The login username.
135 const string16 username() const { function in class:net::HttpAuthCache::Entry
  /external/chromium_org/chrome/browser/chromeos/login/managed/
managed_user_authenticator.h 36 AuthAttempt(const std::string& username,
59 const std::string username; member in class:chromeos::ManagedUserAuthenticator::AuthAttempt
87 void AuthenticateToMount(const std::string& username,
90 void AuthenticateToCreate(const std::string& username,
93 void AddMasterKey(const std::string& username,
  /external/chromium_org/chrome/browser/chromeos/login/
screen_locker.h 123 std::string username; member in struct:chromeos::ScreenLocker::AuthenticationParametersCapture
139 // Returns true if |username| is found among logged in users.
140 bool IsUserLoggedIn(const std::string& username);
  /external/chromium_org/chrome/browser/policy/cloud/
user_policy_signin_service_android.cc 46 const std::string& username,
49 scoped_ptr<CloudPolicyClient> policy_client = PrepareToRegister(username);
67 username,
137 const std::string& username = signin_manager->GetAuthenticatedUsername(); local
138 DCHECK(!username.empty());
154 username,
user_policy_signin_service_base.cc 146 const std::string& username) {
147 DCHECK(!username.empty());
152 if (!GetManager() || !ShouldLoadPolicyForUser(username)) {
168 const std::string& username) {
172 if (username.empty())
178 return !BrowserPolicyConnector::IsNonEnterpriseUser(username);
184 std::string username = signin_manager->GetAuthenticatedUsername(); local
185 if (username.empty())
188 InitializeForSignedInUser(username);
192 const std::string& username) {
    [all...]
  /external/chromium_org/chrome/browser/profiles/
gaia_info_update_service.cc 49 std::string username = profile_->GetPrefs()->GetString( local
51 if (username.empty())
169 std::string username = profile_->GetPrefs()->GetString(
171 if (username.empty()) {
  /external/chromium_org/chrome/browser/signin/
signin_global_error.cc 90 std::string username; local
94 username = signin_manager->GetAuthenticatedUsername();
95 if (username.empty() ||
144 std::string username = signin_manager->GetAuthenticatedUsername(); local
145 if (username.empty())
  /external/chromium_org/chrome/browser/ui/login/
login_prompt.h 60 void SetAuth(const string16& username, const string16& password);
102 void NotifyAuthSupplied(const string16& username,
113 void SetAuthDeferred(const string16& username,
181 const string16& username,
184 username_(username),
186 const string16& username() const { return username_; } function in class:AuthSuppliedLoginNotificationDetails
190 // The username that was used for the authentication.
199 // Prompts the user for their username and password. This is designed to
  /external/chromium_org/ppapi/c/dev/
ppb_url_util_dev.h 36 * the scheme doesn't include the trailing colon, the username and password
56 struct PP_URLComponent_Dev username; member in struct:PP_URLComponents_Dev
  /external/chromium_org/remoting/host/
pam_authorization_factory_posix.cc 105 std::string username = GetUsername(); local
106 if (username.empty()) {
111 int result = pam_start("chrome-remote-desktop", username.c_str(),
118 LOG(INFO) << "Local login check for " << username
  /external/chromium_org/third_party/tlslite/scripts/
tlsdb.py 106 username = args.get(3) variable
112 if username in db:
116 N, g, salt, verifier = VerifierDB.makeVerifier(username, password, bits)
117 db[username] = N, g, salt, verifier
121 if username in db:
125 db[username] = password
129 username = args.getLast(3) variable
138 del(db[username])
142 username = args.get(3) variable
156 db[username]
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
dump_file_system.cc 166 std::string username = "Default"; local
  /external/dropbear/
auth.h 81 char *username; /* This is the username the client presents to check. It member in struct:AuthState
  /external/ganymed-ssh2/examples/
BasicWithHTTPProxy.java 20 String username = "joe"; local
37 // conn.setProxyData(new HTTPProxyData(proxyHost, proxyPort, "username", "secret"));
49 boolean isAuthenticated = conn.authenticateWithPassword(username, password);
SingleThreadStdoutStderr.java 17 String username = "joe"; local
32 boolean isAuthenticated = conn.authenticateWithPassword(username, password);
  /external/openssh/
loginrec.h 69 char username[LINFO_NAMESIZE]; /* login username */ member in struct:logininfo
89 struct logininfo *login_alloc_entry(pid_t pid, const char *username,
94 int login_init_entry(struct logininfo *li, pid_t pid, const char *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/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);
  /external/chromium/chrome/browser/
keychain_mock_mac.h 99 const char* username; member in struct:MockKeychain::KeychainTestData
  /external/chromium/chrome/browser/net/
url_fixer_upper_unittest.cc 36 const url_parse::Component username; member in struct:segment_case
48 url_parse::Component(), // username
58 url_parse::Component(), // username
68 url_parse::Component(), // username
78 url_parse::Component(0, 4), // username
88 url_parse::Component(5, 4), // username
98 url_parse::Component(), // username
108 url_parse::Component(), // username
119 url_parse::Component(), // username
129 url_parse::Component(), // username
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_win.cc 118 std::wstring username; local
122 &username, &password)) {
127 autofill->username_value = username;
  /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)) {

Completed in 604 milliseconds

1 23 4 5 6 7 8 910