/external/chromium_org/chrome/browser/ui/webui/local_discovery/ |
local_discovery_ui_handler.h | 98 const std::string& username, 101 const std::string& username) OVERRIDE;
|
/external/chromium_org/components/autofill/content/renderer/ |
autofill_agent.h | 106 void OnFillPasswordSuggestion(const base::string16& username, 108 void OnPreviewPasswordSuggestion(const base::string16& username,
|
/external/chromium_org/components/signin/core/browser/ |
account_reconcilor.h | 155 const std::string& username, 158 const std::string& username) OVERRIDE;
|
/external/chromium_org/ppapi/tests/ |
test_url_util.cc | 49 ASSERT_TRUE(ComponentEquals(c.username, 7, 2)); 63 ASSERT_TRUE(ComponentEquals(c.username, 0, -1));
|
/external/chromium_org/sync/tools/testserver/ |
xmppserver.py | 160 def __init__(self, username, domain, resource=''): 161 self.username = username 166 jid_str = "%s@%s" % (self.username, self.domain) 172 return Jid(self.username, self.domain) 301 # username, _, domain = username_domain.partition('@') 306 username = username_domain[:at_pos] 309 username = username_domain 311 return (username, domain)
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
basicpacketsocketfactory.cc | 140 socket, proxy_info.address, proxy_info.username, proxy_info.password); 144 proxy_info.username, proxy_info.password);
|
portallocator.h | 81 // TODO(mallinath) - Change username and password to ice_ufrag and ice_pwd. 84 const std::string& username, 111 const std::string& username() const { return username_; } function in class:cricket::PortAllocatorSession
|
/external/chromium_org/third_party/webrtc/base/ |
socketadapters.h | 102 const std::string& username, const CryptString& password); 161 const std::string& username, const CryptString& password);
|
sslsocketfactory.cc | 139 proxy.username, proxy.password); 144 proxy.username, proxy.password);
|
/external/chromium_org/chrome/browser/chromeos/login/lock/ |
screen_locker.h | 144 // Returns true if |username| is found among logged in users. 145 bool IsUserLoggedIn(const std::string& username);
|
/external/chromium_org/chrome/browser/chromeos/login/ui/ |
login_display.h | 50 // Sign in using |username| and |password| specified. 134 virtual void ShowGaiaPasswordChanged(const std::string& username) = 0;
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
device_policy_cros_browser_test.cc | 40 device_policy_.policy_data().username()));
|
user_cloud_policy_manager_chromeos.h | 90 void EnableWildcardLoginCheck(const std::string& username); 143 // Username for the wildcard login check if applicable, empty otherwise.
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
new_github_file_system.py | 27 '''Returns (username, password) from |password_store|. 34 password_data = password_store.GetMulti(('username', 'password')).Get() 35 return password_data.get('username'), password_data.get('password') 150 repo_key, repo_url, username, password = ( 196 'zipball', username=username, password=password).Then(get_zip) 208 live_version = self._FetchLiveVersion(username, password) 225 def _FetchLiveVersion(self, username, password): 231 'commits/HEAD', username=username, password=password [all...] |
/external/chromium_org/chromeos/dbus/ |
cryptohome_client.cc | 74 virtual void AsyncCheckKey(const std::string& username, 80 writer.AppendString(username); 89 virtual void AsyncMigrateKey(const std::string& username, 96 writer.AppendString(username); 106 virtual void AsyncRemove(const std::string& username, 111 writer.AppendString(username); 130 const std::string& username, 135 writer.AppendString(username); 144 const std::string& username) OVERRIDE { 148 writer.AppendString(username); [all...] |
/external/chromium_org/components/policy/core/common/cloud/ |
component_cloud_policy_store.h | 67 // |username| and |dm_token| are used to validate the cached data, and data 70 void SetCredentials(const std::string& username,
|
/external/chromium_org/content/renderer/p2p/ |
port_allocator.h | 38 std::string username; member in struct:content::P2PPortAllocator::Config::RelayServerConfig
|
/external/chromium_org/net/http/ |
http_auth_handler_basic.cc | 94 // TODO(eroman): is this the right encoding of username/password? 96 base::Base64Encode(base::UTF16ToUTF8(credentials->username()) + ":" +
|
/external/chromium_org/ppapi/c/dev/ |
ppb_url_util_dev.h | 37 * the scheme doesn't include the trailing colon, the username and password 57 struct PP_URLComponent_Dev username; member in struct:PP_URLComponents_Dev
|
/external/chromium_org/remoting/client/jni/ |
chromoting_jni_runtime.h | 54 void ConnectToHost(const char* username,
|
/external/chromium_org/remoting/webapp/ |
signal_strategy.js | 47 * @param {string} username 51 function(server, username, authToken) {
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
portallocatorfactory.cc | 69 cricket::RelayCredentials credentials(turn[i].username, turn[i].password);
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
browser_credentials_unittest.py | 14 "username": "example", 64 google_backend.login_needed_called[1]["username"])
|
/external/lldb/test/pexpect-2.4/examples/ |
hive.py | 14 username: myusername 34 1. You will be asked for your username and password for each host. 38 2. You will be asked once for your username and password. 43 3. Give a username and password on the command-line: 47 You can use an extended host notation to specify username, password, and host 51 username:password@host 66 # TODO add feature to support username:password@host combination 156 # build up the list of connection information (hostname, username, password, port) 163 if len(hcd['username']) > 0: 164 username = hcd['username' [all...] |
/development/samples/SipDemo/src/com/example/android/sip/ |
WalkieTalkieActivity.java | 124 String username = prefs.getString("namePref", ""); local 128 if (username.length() == 0 || domain.length() == 0 || password.length() == 0) { 134 SipProfile.Builder builder = new SipProfile.Builder(username, domain);
|