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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/auth/
BasicUserPrincipal.java 51 private final String username; field in class:BasicUserPrincipal
53 public BasicUserPrincipal(final String username) {
55 if (username == null) {
58 this.username = username;
62 return this.username;
68 hash = LangUtils.hashCode(hash, this.username);
78 if (LangUtils.equals(this.username, that.username)) {
89 buffer.append(this.username);
    [all...]
NTUserPrincipal.java 51 private final String username; field in class:NTUserPrincipal
57 final String username) {
59 if (username == null) {
62 this.username = username;
72 buffer.append(this.username);
75 this.ntname = this.username;
88 return this.username;
94 hash = LangUtils.hashCode(hash, this.username);
105 if (LangUtils.equals(this.username, that.username
    [all...]
NTCredentials.java 63 * The constructor with the fully qualified username and password combined
66 * @param usernamePassword the domain/username:password formed string
71 throw new IllegalArgumentException("Username:password string may not be null");
73 String username; local
76 username = usernamePassword.substring(0, atColon);
79 username = usernamePassword;
82 int atSlash = username.indexOf('/');
85 username.substring(0, atSlash).toUpperCase(Locale.ENGLISH),
86 username.substring(atSlash + 1));
90 username.substring(atSlash + 1))
    [all...]
  /external/toybox/lib/
pending.h 6 int update_password(char *filename, char* username, char* encrypted);
  /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...]
  /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/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
UserCommandHandler.java 31 * <li>Otherwise, set the username in the session and reply with 331</li>
40 String username = command.getRequiredParameter(0); local
41 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
44 if (!validateUserAccount(username, session)) {
54 session.setAttribute(SessionKeys.USERNAME, username);
PassCommandHandler.java 41 String username = (String) getRequiredSessionAttribute(session, SessionKeys.USERNAME); local
43 if (validateUserAccount(username, session)) {
44 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
AcctCommandHandler.java 38 String username = (String) getRequiredSessionAttribute(session, SessionKeys.USERNAME); local
41 sendReply(session, ReplyCodes.ACCT_OK, "acct", list(username));
  /frameworks/base/core/java/android/webkit/
HttpAuthHandler.java 62 public void proceed(String username, String password) {
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
grantip.py 15 ``ip_map`` is a map of {ip_mask: (username, roles)}. Either
16 ``username`` or ``roles`` may be None. Roles may also be prefixed
18 revoked. ``'__remove__'`` for a username will remove the username.
22 ``'__remove__'`` will always clobber the username.
37 def _convert_user_role(self, username, roles):
40 return (username, roles)
46 for range, (username, roles) in self.ip_map:
50 if username == '__remove__':
52 elif username
    [all...]
form.py 8 This is a very simple HTML form login screen that asks for the username
19 >>> def authfunc(environ, username, password):
20 ... return username == password
35 <dt>Username:</dt>
36 <dd><input type="text" name="username"></dd>
53 ``username`` and ``password`` combination are given to a
69 ``environ``, ``username`` and ``password`` for its first
80 have two input names: ``username`` and ``password``.
97 username = environ.get('REMOTE_USER','')
98 if username
    [all...]
basic.py 17 >>> def authfunc(environ, username, password):
18 ... return username == password
48 username, password = auth.split(':', 1)
49 if self.authfunc(environ, username, password):
50 return username
77 ``environ``, ``username`` and ``password`` for its first
87 username = REMOTE_USER(environ)
88 if not username:
  /external/chromium-trace/trace-viewer/third_party/Paste/tests/test_auth/
test_auth_digest.py 23 def backwords(environ, realm, username):
25 password = list(username)
28 return digest_password(realm, username, password)
33 def check(username, password, path="/"):
39 response = AUTHORIZATION(username=username, password=password,
41 assert "Digest" in response and username in response
68 def authfetch(username,password,path="/",realm=realm):
74 auth.add_password(realm,uri,username,password)
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
UserAccount.java 25 * Represents a single user account on the server, including the username, password, home
29 * The <code>username</code> and <code>homeDirectory</code> property must be non-null
63 private String username; field in class:UserAccount
83 * @param username - the user name
87 public UserAccount(String username, String password, String homeDirectory) {
88 setUsername(username);
94 return username;
97 public void setUsername(String username) {
98 this.username = username;
    [all...]
ServerConfiguration.java 34 * @param username - the user name
37 public UserAccount getUserAccount(String username);
  /external/toybox/toys/other/
login.c 15 usage: login [-p] [-h host] [[-f] username]
147 char username[33], *pass = NULL, **ss; local
152 if (f_flag && toys.optc != 1) error_exit("-f requires username");
167 username[sizeof(username)-1] = 0;
168 if (*toys.optargs) xstrncpy(username, *toys.optargs, sizeof(username));
170 read_user(username, sizeof(username));
171 if (!*username) continue
    [all...]
  /bionic/tests/
stubs_test.cpp 36 static void check_passwd(const passwd* pwd, const char* username, uid_t uid, uid_type_t uid_type) {
38 ASSERT_STREQ(username, pwd->pw_name);
54 static void check_getpwuid(const char* username, uid_t uid, uid_type_t uid_type) {
59 check_passwd(pwd, username, uid, uid_type);
62 static void check_getpwnam(const char* username, uid_t uid, uid_type_t uid_type) {
64 passwd* pwd = getpwnam(username);
67 check_passwd(pwd, username, uid, uid_type);
70 static void check_getpwuid_r(const char* username, uid_t uid, uid_type_t uid_type) {
81 check_passwd(pwd, username, uid, uid_type);
84 static void check_getpwnam_r(const char* username, uid_t uid, uid_type_t uid_type)
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
NTLMEngine.java 66 * @param username Windows user name
75 String username,
  /external/jetty/src/java/org/eclipse/jetty/security/
LoginService.java 43 * @param username The user name
47 UserIdentity login(String username,Object credentials);
  /external/mksh/
mkmf.sh 144 # No getpwnam() calls (affects "cd ~username/" only)
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
StubServerConfiguration.groovy 37 UserAccount getUserAccount(String username) {
38 (UserAccount) userAccounts[username]
  /external/openssh/
audit-linux.c 43 linux_audit_record_event(int uid, const char *username,
57 NULL, "login", username ? username : "(unknown)",
58 username == NULL ? uid : -1, hostname, ip, ttyn, success);
  /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,
37 const u8 *username, size_t username_len, u8 *challenge);

Completed in 672 milliseconds

1 2 3 4 5 6 7 8 91011>>