HomeSort by relevance Sort by last modified time
    Searched refs:username (Results 1 - 25 of 514) 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...]
  /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/autotest/frontend/afe/
rpc_client_lib.py 22 def _base_authorization_headers(username, server):
29 if not username:
31 username = os.environ['AUTOTEST_USER']
33 username = getpass.getuser()
34 return {'AUTHORIZATION' : username}
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/iam/
test_connection.py 38 username = 'boto-test-user-%d' % time.time()
41 iam.create_user(username)
43 iam.add_user_to_group(name, username)
45 iam.remove_user_from_group(name, username)
46 iam.delete_user(username)
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue10/
JDBCDataSource.java 19 String username; field in class:JDBCDataSource
34 return username;
37 public void setUsername(String username) {
38 this.username = username;
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
RTCICEServer+JSON.m 13 static NSString const *kRTCICEServerUsernameKey = @"username";
23 NSString *username = dictionary[kRTCICEServerUsernameKey];
25 username = username ? username : @"";
28 username:username
33 NSString *username = dictionary[kRTCICEServerUsernameKey];
40 username:username
    [all...]
  /system/tpm/attestation/server/
key_store.h 35 // |username|. On success true is returned and |key_data| is populated.
36 virtual bool Read(const std::string& username,
41 // |username|. If such a key already exists the existing data will be
43 virtual bool Write(const std::string& username,
47 // Deletes key data for the key identified by |key_label| and by |username|.
49 virtual bool Delete(const std::string& username,
52 // Deletes key data for all keys identified by |key_prefix| and by |username|
54 virtual bool DeleteByPrefix(const std::string& username,
57 // Registers a key to be associated with |username|.
63 virtual bool Register(const std::string& username,
    [all...]
mock_key_store.h 34 MOCK_METHOD3(Read, bool(const std::string& username,
37 MOCK_METHOD3(Write, bool(const std::string& username,
40 MOCK_METHOD2(Delete, bool(const std::string& username,
42 MOCK_METHOD2(DeleteByPrefix, bool(const std::string& username,
44 MOCK_METHOD7(Register, bool(const std::string& username,
51 MOCK_METHOD2(RegisterCertificate, bool(const std::string& username,
  /external/webrtc/talk/app/webrtc/objc/public/
RTCICEServer.h 33 // The server URI, username, and password.
35 @property(nonatomic, copy, readonly) NSString* username; variable
38 // Initializer for RTCICEServer taking uri, username, and password.
40 username:(NSString*)username
  /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/webrtc/talk/app/webrtc/objc/
RTCICEServer.mm 37 @synthesize username = _username;
41 username:(NSString*)username
43 if (!URI || !username || !password) {
50 _username = [username copy];
59 self.username,
70 iceServer.username = [self.username UTF8String];
  /external/autotest/server/site_tests/platform_GCC/boards/
chromeos-machine.exp 3 # Set hostname and username. # Make sure SSH keys are set up prior to run.
5 set_board_info username root
  /external/autotest/client/site_tests/login_Cryptohome/
login_Cryptohome.py 21 username = ''
23 username = cr.username
24 if not cryptohome.is_vault_mounted(user=username,
28 if cryptohome.is_vault_mounted(user=username,
35 cryptohome.remove_vault(username)
43 if not cryptohome.is_vault_mounted(user=username,
  /external/autotest/frontend/
make_superuser.py 10 print "Usage: %s username [username ...]" %sys.argv[0]
24 for username in sys.argv[1:]:
28 WHERE login = %s""", username)
32 print "User %s does not exist. Creating..." % username
35 VALUES (%s, 100)""", username)
38 print "Updating user %s..." % username
42 WHERE login = %s""", username)
46 print " %s is already a superuser!" % username
apache_auth.py 19 def authenticate(self, username=None, password=None):
21 user = User.objects.get(username=username)
24 user = User(username=username,
31 SimpleAuthBackend.check_afe_user(username)
36 def check_afe_user(username):
37 user, created = models.User.objects.get_or_create(login=username)
51 REMOTE_USER in headers and passed the username found to
53 HTTP_AUTHORIZATION header with username (this allows CLI to authenticate)
    [all...]
  /external/webrtc/webrtc/api/objc/
RTCIceServer.h 20 /** Username to use if this RTCIceServer object is a TURN server. */
21 @property(nonatomic, copy, readonly, nullable) NSString *username; variable
32 * Initialize an RTCIceServer with its associated URLs, optional username,
36 username:(nullable NSString *)username
RTCIceServer.mm 19 @synthesize username = _username;
25 username:nil
30 username:(NSString *)username
35 _username = [username copy];
53 iceServer.username = [NSString stdStringForString:_username];
  /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);
  /external/toybox/lib/
pending.h 6 int update_password(char *filename, char* username, char* encrypted);
  /frameworks/base/core/java/android/webkit/
HttpAuthHandler.java 62 public void proceed(String username, String password) {
  /system/connectivity/shill/shims/
c_ppp.h 26 int PPPGetSecret(char* username, char* password);
  /external/toybox/toys/other/
login.c 18 usage: login [-p] [-h host] [-f USERNAME] [USERNAME]
20 Log in as a user, prompting for username and password if necessary.
24 -f login as USERNAME without authentication
32 char *username;
51 char uu[33], *username, *pass = 0, *ss; local
62 if (TT.username) username = TT.username;
63 else username = *toys.optargs
    [all...]
  /external/chromium-trace/catapult/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...]

Completed in 1298 milliseconds

1 2 3 4 5 6 7 8 91011>>