HomeSort by relevance Sort by last modified time
    Searched full:username (Results 1 - 25 of 1761) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chromeos/test/data/network/
shill_cellular.json 6 "username": "test-username",
valid_l2tpipsec.onc 13 "Username": "some xauth username",
18 "Username": "some username",
cellular.onc 7 "Username": "test-username",
translation_of_shill_cellular_with_state.onc 27 "Username": "test-username",
33 "Username": "test-username0"
37 "Username": "test-username1"
41 "Username": "test-username2"
45 "Username": "test-username3"
l2tpipsec_clientcert_with_cert_pems.onc 26 "Username": "some xauth username",
31 "Username": "some username",
translation_of_shill_l2tpipsec.onc 17 "Username": "some xauth username",
22 "Username": "some username",
shill_l2tpipsec.json 7 "L2TPIPsec.User": "some username",
9 "L2TPIPsec.XauthUser": "some xauth username",
shill_l2tpipsec_clientcert.json 4 "L2TPIPsec.User": "some username",
6 "L2TPIPsec.XauthUser": "some xauth username",
shill_output_l2tpipsec.json 7 "L2TPIPsec.User": "some username",
9 "L2TPIPsec.XauthUser": "some xauth username",
managed_vpn.onc 15 "Username": "policy user",
16 "Recommended": [ "Username", "Password" ],
settings_with_normalization.json 20 "Username": "some username",
  /external/chromium_org/tools/telemetry/examples/
credentials_example.json 3 "username": "<your google account here>",
7 "username": "<your google account here>",
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
screenlock_icon_provider.cc 13 void ScreenlockIconProvider::AddIcon(const std::string& username,
15 user_icon_map_[username] = icon;
18 void ScreenlockIconProvider::RemoveIcon(const std::string& username) {
19 if (user_icon_map_.find(username) != user_icon_map_.end())
20 user_icon_map_.erase(username);
23 gfx::Image ScreenlockIconProvider::GetIcon(const std::string& username) {
24 if (user_icon_map_.find(username) == user_icon_map_.end())
26 return user_icon_map_[username];
  /external/chromium_org/extensions/browser/api/socket/socket/
OWNERS 0 # Username must start with r
  /external/chromium_org/ui/base/webui/
web_ui_util_unittest.cc 14 GURL url("http://some/random/username@email/and/more");
16 EXPECT_EQ("random/username@email/and/more", path);
20 GURL url2("http://some/random/username/and/more");
22 EXPECT_EQ("random/username/and/more", path);
26 GURL url3("http://some/random/username/and/more@2ax");
28 EXPECT_EQ("random/username/and/more@2ax", path);
32 GURL url4("http://some/random/username/and/more@x");
34 EXPECT_EQ("random/username/and/more@x", path);
38 GURL url5("http://some/random/username@email/and/more@2x");
40 EXPECT_EQ("random/username@email/and/more", path)
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 38 def get_contact_info(cls, username):
39 if username not in (None, ''):
40 query = cls.gql('WHERE handle = :1', username)
45 def get_contact_last_updated(cls, username):
46 if username not in (None, ''):
47 query = cls.gql('WHERE handle = :1', username)
52 def get_contact_id(cls, username):
53 if username not in (None, ''):
54 query = cls.gql('WHERE handle = :1', username)
59 def get_contact_status(cls, username)
    [all...]
  /libcore/luni/src/main/java/java/net/
PasswordAuthentication.java 21 * This immutable class is a data structure that encapsulates username and
28 private String userName;
34 * username and password.
36 * @param userName
37 * the username to store.
41 public PasswordAuthentication(String userName, char[] password) {
42 this.userName = userName;
58 * Gets the username stored by this instance.
60 * @return the stored username
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
mschapv2.c 15 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len)
26 if (username[i] == '\\') {
28 return username + i + 1;
32 return username;
44 const u8 *username; local
51 username = mschapv2_remove_domain(identity, &username_len);
52 wpa_hexdump_ascii(MSG_DEBUG, "MSCHAPV2: Username",
53 username, username_len);
59 wpa_hexdump_ascii(MSG_DEBUG, "MSCHAPV2: username",
60 username, username_len)
    [all...]
  /packages/apps/Email/res/xml/
providers.xml 107 Both the username and uri attributes (for both incoming and outgoing elements)
110 The username attribute is used to supply a template for the username
111 that will be presented to the server. This username is built from a
120 The username attribute MUST be specified for the incoming element, so the POP3 or IMAP
123 The username attribute MAY be the empty string for the outgoing element, but only if the
131 <incoming uri="imap+ssl+://imap.gmail.com" username="$email" />
132 <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email" />
135 <incoming uri="imap+ssl+://imap.googlemail.com" username="$email" />
136 <outgoing uri="smtp+ssl+://smtp.googlemail.com" username="$email" /
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/
basedb.py 53 def __getitem__(self, username):
59 valueStr = self.db[username]
63 return self._getItem(username, valueStr)
65 def __setitem__(self, username, value):
69 valueStr = self._setItem(username, value)
73 self.db[username] = valueStr
79 def __delitem__(self, username):
85 del(self.db[username])
91 def __contains__(self, username):
92 """Check if the database contains the specified username
    [all...]
verifierdb.py 31 def _getItem(self, username, valueStr):
39 def __setitem__(self, username, verifierEntry):
42 @type username: str
43 @param username: The username to associate the verifier with.
52 BaseDB.__setitem__(self, username, verifierEntry)
55 def _setItem(self, username, value):
56 if len(username)>=256:
57 raise ValueError("username too long")
66 def _checkItem(self, value, username, param)
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/blackberry/
http-auth-private-mode-changed.php 2 $username = $password = "aaaa"; variable
4 if ($_SERVER['PHP_AUTH_USER'] == $username && $_SERVER['PHP_AUTH_PW'] == $password){
8 echo '3. There should be a dialog for you to input username and password again.<br>';
  /packages/apps/Email/tests/res/xml/
test_providers.xml 26 <incoming uri="imap+ssl+://imap.gmail.com" username="$email" />
27 <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email" />
32 <incoming uri="pop3://pop-server.$domain" username="$email" />
33 <outgoing uri="smtp://smtp-server.foo.com" username="$email" />
36 <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
37 <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
40 <incoming uri="imap+ssl+://android.imap.mail.yahoo.com" username="$email" />
41 <outgoing uri="smtp+ssl+://android.smtp.mail.yahoo.com" username="$email" />
46 <incoming uri="pop3://pop-server.roadrunner.com" username="$email" />
47 <outgoing uri="smtp://mobile-smtp.roadrunner.com" username="$email" /
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
options.html 15 Username for try job monitoring:
16 <input id="try-job-username" type="text">
  /external/chromium_org/chrome/browser/services/gcm/
fake_signin_manager.cc 37 void FakeSigninManager::SignIn(const std::string& username) {
38 SetAuthenticatedUsername(username);
41 GoogleSigninSucceeded(username, username, std::string()));
47 const std::string username = GetAuthenticatedUsername(); local
52 GoogleSignedOut(account_id, username));

Completed in 598 milliseconds

1 2 3 4 5 6 7 8 91011>>