Searched refs:username (Results 26 - 50 of 606) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Dmschapv2.h17 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len);
18 int mschapv2_derive_response(const u8 *username, size_t username_len,
/external/wpa_supplicant_8/src/eap_peer/
H A Dmschapv2.h17 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len);
18 int mschapv2_derive_response(const u8 *username, size_t username_len,
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Dmschapv2.h17 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len);
18 int mschapv2_derive_response(const u8 *username, size_t username_len,
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_manager_util_win.cc56 static int64 GetPasswordLastChanged(WCHAR* username) { argument
60 NET_API_STATUS ret = NetUserGetInfo(NULL, username, 1, (LPBYTE*) &user_info);
75 static bool CheckBlankPassword(WCHAR* username) { argument
77 int64 last_changed = GetPasswordLastChanged(username);
98 DWORD logon_result = LogonUser(username,
132 WCHAR username[CREDUI_MAX_USERNAME_LENGTH+1] = {}; local
135 if (GetUserNameEx(NameUserPrincipal, username, &username_length)) {
142 if (GetUserName(username, &username_length)) {
143 retVal = CheckBlankPassword(username) ? PASSWORD_STATUS_BLANK :
154 WCHAR username[CREDUI_MAX_USERNAME_LENGT local
[all...]
H A Dsync_metrics.cc35 const std::string& username,
40 return gaia::AreEmailsSame(username, GetSyncUsername(profile));
34 IsSyncAccountCredential(Profile* profile, const std::string& username, const std::string& origin) argument
H A Dsync_metrics.h14 // Returns the sync username for |profile|. Returns an empty string if the
20 // Returns true if |username| and |origin| correspond to the account which is
23 const std::string& username,
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeHttpAuthHandler.java61 public void proceed(String username, String password) { argument
62 nativeSetAuth(mNativeChromeHttpAuthHandler, username, password);
114 public void onAutofillDataAvailable(String username, String password); argument
130 private void onAutofillDataAvailable(String username, String password) { argument
131 mAutofillUsername = username;
134 mAutofillObserver.onAutofillDataAvailable(username, password);
143 String username, String password);
142 nativeSetAuth(long nativeChromeHttpAuthHandler, String username, String password) argument
/external/chromium_org/chrome/browser/policy/cloud/
H A Duser_policy_signin_service_base.cc48 const std::string& username,
66 InitializeUserCloudPolicyManager(username, client.Pass());
74 const std::string& username) {
150 const std::string& username) {
151 DCHECK(!username.empty());
160 if (!policy_manager() || !ShouldLoadPolicyForUser(username)) {
174 const std::string& username) {
175 if (username.empty())
178 return !BrowserPolicyConnector::IsNonEnterpriseUser(username);
195 std::string username local
47 FetchPolicyForSignedInUser( const std::string& username, const std::string& dm_token, const std::string& client_id, scoped_refptr<net::URLRequestContextGetter> profile_request_context, const PolicyFetchCallback& callback) argument
73 GoogleSignedOut(const std::string& account_id, const std::string& username) argument
149 CreateClientForRegistrationOnly( const std::string& username) argument
173 ShouldLoadPolicyForUser( const std::string& username) argument
202 InitializeForSignedInUser( const std::string& username, scoped_refptr<net::URLRequestContextGetter> profile_request_context) argument
233 InitializeUserCloudPolicyManager( const std::string& username, scoped_ptr<CloudPolicyClient> client) argument
[all...]
/external/chromium_org/components/os_crypt/
H A Die7_password_win_unittest.cc51 EXPECT_EQ(L"abcdefgh", credentials[0].username);
57 EXPECT_EQ(L"abcdefghi", credentials[0].username);
84 EXPECT_EQ(L"qwer", credentials[0].username);
86 EXPECT_EQ(L"asdf", credentials[1].username);
88 EXPECT_EQ(L"zxcv", credentials[2].username);
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/
H A DRTCConfiguration.h44 static RTCIceServer* create(const KURL& uri, const String& username, const String& credential) argument
46 return new RTCIceServer(uri, username, credential);
50 const String& username() { return m_username; } function in class:blink::FINAL
56 RTCIceServer(const KURL& uri, const String& username, const String& credential) argument
58 , m_username(username)
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwHttpAuthHandler.java16 public void proceed(String username, String password) { argument
18 nativeProceed(mNativeAwHttpAuthHandler, username, password);
50 String username, String password);
49 nativeProceed(long nativeAwHttpAuthHandler, String username, String password) argument
/external/chromium_org/third_party/libjingle/source/talk/examples/login/
H A Dlogin_main.cc44 std::string username; local
45 std::getline(std::cin, username);
52 xcs.set_user(username.c_str());
/external/lldb/test/pexpect-2.4/examples/
H A Dastat.py5 ./astat.py [-s server_hostname] [-u username] [-p password]
7 -u : username to user for login.
48 username = options['-u']
50 username = raw_input('username: ')
60 p.login(hostname, username, password)
/external/chromium_org/chrome/browser/signin/
H A Dfake_signin_manager.cc51 const std::string& username,
54 set_auth_in_progress(username);
71 void FakeSigninManager::SignIn(const std::string& username, argument
74 std::string(), username, password, OAuthTokenFetchedCallback()); local
89 const std::string username = authenticated_username_; local
93 GoogleSignedOut(account_id, username));
49 StartSignInWithRefreshToken( const std::string& refresh_token, const std::string& username, const std::string& password, const OAuthTokenFetchedCallback& oauth_fetched_callback) argument
H A Dfake_signin_manager.h47 void set_auth_in_progress(const std::string& username) { argument
48 possibly_invalid_username_ = username;
53 void SignIn(const std::string& username, const std::string& password);
59 const std::string& username,
/external/chromium_org/cloud_print/service/win/
H A Dlocal_security_policy.cc80 const base::string16& username,
84 if (!user_sid.LoadAccount(username.c_str())) {
85 LOG(ERROR) << "Unable to load Sid for" << username;
101 bool LocalSecurityPolicy::SetPrivilege(const base::string16& username, argument
105 if (!user_sid.LoadAccount(username.c_str())) {
106 LOG(ERROR) << "Unable to load Sid for" << username;
79 IsPrivilegeSet( const base::string16& username, const base::string16& privilage) const argument
/external/chromium_org/components/signin/core/browser/
H A Dfake_auth_status_provider.cc30 const std::string& username,
33 username_ = username;
29 SetAuthError(const std::string& account_id, const std::string& username, const GoogleServiceAuthError& error) argument
/external/chromium_org/remoting/host/
H A Ddisconnect_window_mac.h24 username:(const std::string&)username;
/external/chromium_org/third_party/tlslite/tlslite/integration/
H A Dsmtp_tls.py14 username=None, password=None,
25 - username, password (SRP)
42 @type username: str
43 @param username: SRP username. Requires the
48 Requires the 'username' argument.
70 username, password,
/external/chromium_org/chromeos/dbus/
H A Dfake_session_manager_client.cc88 const std::string& username,
91 FROM_HERE, base::Bind(callback, user_policies_[username]));
95 const std::string& username) {
96 return user_policies_[username];
116 const std::string& username,
119 user_policies_[username] = policy_blob;
132 const std::string& username,
152 const std::string& username) const {
154 user_policies_.find(username);
158 void FakeSessionManagerClient::set_user_policy(const std::string& username, argument
87 RetrievePolicyForUser( const std::string& username, const RetrievePolicyCallback& callback) argument
94 BlockingRetrievePolicyForUser( const std::string& username) argument
115 StorePolicyForUser( const std::string& username, const std::string& policy_blob, const StorePolicyCallback& callback) argument
131 SetFlagsForUser( const std::string& username, const std::vector<std::string>& flags) argument
[all...]
/external/apache-http/src/org/apache/http/impl/auth/
H A DNTLMEngine.java66 * @param username Windows user name
75 String username,
74 generateType3Msg( String username, String password, String domain, String workstation, String challenge) argument
/external/chromium_org/chrome/browser/chromeos/login/ui/
H A Dwebui_login_display.cc83 void WebUILoginDisplay::OnBeforeUserRemoved(const std::string& username) { argument
84 user_selection_screen_->OnBeforeUserRemoved(username);
87 void WebUILoginDisplay::OnUserRemoved(const std::string& username) { argument
88 user_selection_screen_->OnUserRemoved(username);
106 const std::string& username,
108 user_selection_screen_->SetAuthType(username, auth_type);
112 const std::string& username) const {
113 return user_selection_screen_->GetAuthType(username);
211 void WebUILoginDisplay::ShowGaiaPasswordChanged(const std::string& username) { argument
213 webui_handler_->ShowGaiaPasswordChanged(username);
105 SetAuthType( const std::string& username, ScreenlockBridge::LockHandler::AuthType auth_type) argument
271 LoadWallpaper(const std::string& username) argument
285 RemoveUser(const std::string& username) argument
322 ShowSigninScreenForCreds( const std::string& username, const std::string& password) argument
[all...]
/external/chromium_org/chrome/browser/resources/
H A Dprofile_signin_confirmation.js11 'dialogMessage', args.username);
13 'dialogPrompt', args.username);
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Dscreenlock_icon_source.cc47 std::string username = net::UnescapeURLComponent( local
51 gfx::Image image = icon_provider_->GetIcon(username);
66 const std::string& username) {
68 net::EscapePath(username);
65 GetIconURLForUser( const std::string& username) argument
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dsaslcookiemechanism.h42 const std::string & username,
46 username_(username),
51 const std::string & username,
54 username_(username),
41 SaslCookieMechanism(const std::string & mechanism, const std::string & username, const std::string & cookie, const std::string & token_service) argument
50 SaslCookieMechanism(const std::string & mechanism, const std::string & username, const std::string & cookie) argument

Completed in 6225 milliseconds

1234567891011>>