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

1 2 3 4 5 6 7 8 91011>>

  /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_6/wpa_supplicant/src/eap_peer/
mschapv2.c 21 const u8 * mschapv2_remove_domain(const u8 *username, size_t *len)
32 if (username[i] == '\\') {
34 return username + i + 1;
38 return username;
50 const u8 *username; local
57 username = mschapv2_remove_domain(identity, &username_len);
58 wpa_hexdump_ascii(MSG_DEBUG, "MSCHAPV2: Username",
59 username, username_len);
65 wpa_hexdump_ascii(MSG_DEBUG, "MSCHAPV2: username",
66 username, username_len)
    [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...]
mschapv2.h 17 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/chrome/browser/resources/
http_auth.html 17 #username,
28 $('username').disabled = true;
38 'username': $('username').value,
44 function setAutofillCredentials(username, password) {
45 $('username').value = username;
61 $('username').focus();
73 <td i18n-content="username"></td>
75 <input id="username" type="text"
    [all...]
  /external/chromium/net/ftp/
ftp_auth_cache.cc 16 const string16& username,
19 username(username),
37 void FtpAuthCache::Add(const GURL& origin, const string16& username,
44 entry->username = username;
47 entries_.push_front(Entry(origin, username, password));
55 void FtpAuthCache::Remove(const GURL& origin, const string16& username,
58 if (it->origin == origin && it->username == username &
    [all...]
ftp_auth_cache.h 30 Entry(const GURL& origin, const string16& username,
35 string16 username; member in struct:net::FtpAuthCache::Entry
45 // Add an entry for |origin| to the cache (consisting of |username| and
48 void Add(const GURL& origin, const string16& username,
52 // |username| and |password|.
53 void Remove(const GURL& origin, const string16& username,
  /external/chromium/chrome/browser/chromeos/login/
username_view.h 25 // Returns the shaped username view to be used on the login screen. If
29 // Empty |username| stands for guest user.
30 static UsernameView* CreateShapedUsernameView(const std::wstring& username,
34 // Constructs username view for the given |username|. Consider using
36 // Empty |username| stands for guest user.
37 UsernameView(const std::wstring& username, bool use_small_shape);
53 // Paints username to the bitmap with the bounds given.
56 // Holds painted username.
test_attempt_state.cc 14 TestAttemptState::TestAttemptState(const std::string& username,
20 : AuthAttemptState(username,
28 TestAttemptState::TestAttemptState(const std::string& username,
30 : AuthAttemptState(username, ascii_hash) {
user_image_loader.h 31 virtual void OnImageLoaded(const std::string& username,
41 // Start reading the image for |username| from |filepath| on the file thread.
43 void Start(const std::string& username,
54 ImageInfo(const std::string& username, bool should_save)
55 : username(username),
59 std::string username; member in struct:chromeos::UserImageLoader::ImageInfo
  /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/webkit/Tools/Scripts/webkitpy/common/net/
credentials.py 64 return (Git.read_git_config(self.git_prefix + "username"),
84 username = self._keychain_value_with_label("^\s*\"acct\"<blob>=",
88 return [username, password]
90 def _run_security_tool(self, username=None):
98 if username:
99 security_command += ["-a", username]
112 def _credentials_from_keychain(self, username=None):
114 return [username, None]
116 security_output = self._run_security_tool(username)
127 return (self._read_environ("username"), self._read_environ("password")
    [all...]
  /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/chrome/browser/password_manager/
ie7_password.h 21 // Encrypted data containing the username, password and some more undocumented
31 // Parses a data structure to find the password and the username.
33 std::wstring* username,
36 // Decrypts the username and password for a given data vector using the url as
40 std::wstring* username, std::wstring* password);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketUserauthRequestInteractive.java 17 String userName;
24 this.userName = user;
34 tw.writeString(userName);
PacketUserauthRequestNone.java 19 String userName;
25 this.userName = user;
40 userName = tr.readString();
58 tw.writeString(userName);
PacketUserauthRequestPassword.java 19 String userName;
26 this.userName = user;
42 userName = tr.readString();
62 tw.writeString(userName);
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
UserCredentialHash.java 16 * @return userName
30 * Get the MD5(userName:sipdomain:password)
32 * @return the MD5 hash of userName:sipDomain:password.
  /external/dbus/dbus/
dbus-userdb.c 79 dbus_free (info->username);
116 * Looks up a uid or username in the user database. Only one of name
123 * @param username username or #NULL
130 const DBusString *username,
136 _dbus_assert (uid != DBUS_UID_UNSET || username != NULL);
138 /* See if the username is really a number */
143 if (_dbus_is_a_number (username, &n))
151 info = _dbus_hash_table_lookup_string (db->users_by_name, _dbus_string_get_const_data (username));
169 _dbus_string_get_const_data (username));
    [all...]
  /external/apache-http/src/org/apache/http/auth/
NTUserPrincipal.java 46 private final String username; field in class:NTUserPrincipal
52 final String username) {
54 if (username == null) {
57 this.username = username;
67 buffer.append(this.username);
70 this.ntname = this.username;
83 return this.username;
89 hash = LangUtils.hashCode(hash, this.username);
100 if (LangUtils.equals(this.username, that.username
    [all...]
BasicUserPrincipal.java 46 private final String username; field in class:BasicUserPrincipal
48 public BasicUserPrincipal(final String username) {
50 if (username == null) {
53 this.username = username;
57 return this.username;
63 hash = LangUtils.hashCode(hash, this.username);
73 if (LangUtils.equals(this.username, that.username)) {
84 buffer.append(this.username);
    [all...]
  /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,
  /bionic/tests/
stubs_test.cpp 28 #define CHECK_GETPWNAM_FOR(username, uid, uid_type) \
29 SCOPED_TRACE(username); \
30 ASSERT_NO_FATAL_FAILURE(check_getpwnam(username, uid, uid_type));
37 static void check_getpwnam(const char* username, int uid, uid_type_t uid_type) {
42 EXPECT_STREQ(username, pwd->pw_name);
  /external/wpa_supplicant_8/src/eap_server/
eap_sim_db.h 41 const char *username, int max_chal,
69 char *permanent; /* Permanent username */
70 char *reauth_id; /* Fast re-authentication username */
85 int eap_sim_db_get_aka_auth(struct eap_sim_db_data *data, const char *username,
90 const char *username, const u8 *auts,

Completed in 506 milliseconds

1 2 3 4 5 6 7 8 91011>>