HomeSort by relevance Sort by last modified time
    Searched refs:username (Results 76 - 100 of 709) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/components/password_manager/core/browser/
password_manager_driver.h 51 // Tells the driver to fill the form with the |username| and |password|.
52 virtual void FillSuggestion(const base::string16& username,
55 // Tells the driver to preview filling form with the |username| and
57 virtual void PreviewSuggestion(const base::string16& username,
60 // Tells the driver to clear previewed password and username fields.
stub_password_manager_driver.cc 35 void StubPasswordManagerDriver::FillSuggestion(const base::string16& username,
40 const base::string16& username,
stub_password_manager_driver.h 29 virtual void FillSuggestion(const base::string16& username,
31 virtual void PreviewSuggestion(const base::string16& username,
password_autofill_manager.h 59 const base::string16& username);
63 const base::string16& username);
69 // Attempts to fill the password associated with user name |username|, and
72 const base::string16& username);
74 // Attempts to preview the password associated with user name |username|, and
77 const base::string16& username);
79 // If |current_username| matches a username for one of the login mappings in
  /external/chromium_org/content/shell/browser/
shell_login_dialog.h 42 void UserAcceptedAuth(const base::string16& username,
70 const base::string16& username,
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebRTCConfiguration.cpp 65 WebString WebRTCICEServer::username() const function in class:blink::WebRTCICEServer
68 return m_private->username();
  /external/chromium_org/third_party/tlslite/tlslite/integration/
smtp_tls.py 14 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,
xmlrpctransport.py 32 username=None, password=None,
50 - username, password (SRP)
71 @type username: str
72 @param username: SRP username. Requires the
77 Requires the 'username' argument.
107 username, password,
122 username=self.username, password=self.password,
  /external/smack/src/org/jivesoftware/smack/sasl/
SASLAnonymous.java 42 public void authenticate(String username, String host, CallbackHandler cbh) throws IOException {
46 public void authenticate(String username, String host, String password) throws IOException {
  /external/chromium_org/chromeos/dbus/
session_manager_client.h 122 // |username|. Upon completion of the retrieve attempt, we will call the
125 const std::string& username,
135 const std::string& username) = 0;
154 // |username|. Upon completion of the store attempt, we will call callback.
155 virtual void StorePolicyForUser(const std::string& username,
168 virtual void SetFlagsForUser(const std::string& username,
  /external/chromium_org/jingle/notifier/base/
gaia_token_pre_xmpp_auth.cc 22 const std::string & username,
26 mechanism, username, cookie, token_service) {}
52 const std::string& username,
56 : username_(username),
  /external/chromium_org/third_party/libjingle/source/talk/base/
proxyinfo.h 51 std::string username; member in struct:talk_base::ProxyInfo
autodetectproxy.h 61 void set_auth_info(bool use_auth, const std::string& username,
64 proxy_.username = username;
  /external/chromium_org/third_party/skia/platform_tools/android/bin/
http_download.py 8 This module supports username and password with basic authentication.
29 def HttpDownload(url, target, username=None, password=None, verbose=True,
36 username: Optional username for download.
37 password: Optional password for download (ignored if no username).
45 if username:
47 auth_code = base64.b64encode(username + ':' + password)
49 auth_code = base64.b64encode(username)
  /external/chromium_org/third_party/webrtc/base/
proxyinfo.h 34 std::string username; member in struct:rtc::ProxyInfo
autodetectproxy.h 44 void set_auth_info(bool use_auth, const std::string& username,
47 proxy_.username = username;
  /external/skia/platform_tools/android/bin/
http_download.py 8 This module supports username and password with basic authentication.
29 def HttpDownload(url, target, username=None, password=None, verbose=True,
36 username: Optional username for download.
37 password: Optional password for download (ignored if no username).
45 if username:
47 auth_code = base64.b64encode(username + ':' + password)
49 auth_code = base64.b64encode(username)
  /external/wpa_supplicant_8/src/crypto/
ms_funcs.h 13 const u8 *username, size_t username_len,
18 const u8 *username, size_t username_len,
24 const u8 *username, size_t username_len,
29 const u8 *username, size_t username_len,
  /external/chromium_org/chrome/browser/policy/cloud/
user_policy_signin_service_mobile.h 44 // Registers a CloudPolicyClient for fetching policy for |username|.
48 // or once it is determined that |username| is not a managed account.
49 void RegisterForPolicy(const std::string& username,
53 // Registers a CloudPolicyClient for fetching policy for |username|.
57 // |username| is not a managed account.
59 const std::string& username,
69 const std::string& username,
  /external/chromium_org/chrome/browser/sync/test/integration/
profile_sync_service_harness.h 28 const std::string& username,
33 void SetCredentials(const std::string& username, const std::string& password);
104 const std::string& username,
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_bubble_view_unittest.cc 67 void SetUpSigninManager(const std::string& username) {
68 if (username.empty())
73 signin_manager->SetAuthenticatedUsername(username);
  /external/chromium_org/chrome/common/extensions/docs/server2/
update_server.py 39 username = raw_input( variable
40 'Update github username/password (empty to skip)? ')
41 if username:
45 if 'USERNAME = None' not in contents:
46 print 'Error: Can\'t find "USERNAME = None" in github_file_system.py.'
55 .replace('USERNAME = None', 'USERNAME = \'%s\'' % username))
  /external/chromium_org/components/signin/core/browser/
signin_manager_base.h 10 // Once a signin is successful, the username becomes "established" and will not
13 // refresh credentials, but changing the username is not permitted.
17 // caching / handling of the "authenticated username" field, and TokenService
51 virtual void GoogleSigninSucceeded(const std::string& username,
55 virtual void GoogleSignedOut(const std::string& username) {}
89 // account is the username. For code that needs a unique id to represent the
97 // Sets the user name. Note: |username| should be already authenticated as
99 // TODO(tim): Remove this in favor of passing username on construction by
101 void SetAuthenticatedUsername(const std::string& username);
144 // Actual username after successful authentication
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMURLUtilsReadOnly.h 49 static String username(const KURL& url) { return url.user(); } function in class:WebCore::DOMURLUtilsReadOnly
50 String username() { return username(url()); } function in class:WebCore::DOMURLUtilsReadOnly
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
testturnserver.h 82 // For this test server, succeed if the password is the same as the username.
84 virtual bool GetKey(const std::string& username, const std::string& realm,
86 return ComputeStunCredentialHash(username, realm, username, key);

Completed in 4276 milliseconds

1 2 34 5 6 7 8 91011>>