HomeSort by relevance Sort by last modified time
    Searched refs:username (Results 1 - 25 of 536) 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...]
  /external/curl/docs/cmdline-opts/
disallow-username-in-url.d 1 Long: disallow-username-in-url
2 Help: Disallow username in url
7 This tells curl to exit if passed a url containing a username.
proxy-tlsuser.d 3 Help: TLS username for HTTPS proxy
  /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/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/autotest/client/site_tests/login_CryptohomeDataLeak/
login_CryptohomeDataLeak.py 22 username = ''
26 username = cr.username
27 if not cryptohome.is_permanent_vault_mounted(username):
31 % cryptohome.get_user_hash(username)
36 if cryptohome.is_vault_mounted(user=username, allow_fail=True):
45 cryptohome.remove_vault(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...]
  /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...]
  /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/client/site_tests/login_GaiaLogin/
login_GaiaLogin.py 16 def run_once(self, username, password):
18 if not username:
24 username=username,
27 user=chrome.NormalizeEmail(username)):
29 % username)
45 ''' % username)
48 % username)
  /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/flatbuffers/.travis/
deploy-python.sh 8 --username "$PYPI_USERNAME" \
  /external/toolchain-utils/dejagnu/boards/
chromeos-machine.exp 6 # Set hostname and username. # Make sure SSH keys are set up prior to run.
8 set_board_info username root
  /external/autotest/client/bin/
autologin.py 30 parser.add_argument('-u', '--username',
31 help='Log in as provided username.')
34 if args.username:
40 username=args.username,
41 password=(password if args.username else None),
42 gaia_login=(args.username is not None),
  /external/autotest/frontend/afe/
rpc_client_lib.py 44 def _base_authorization_headers(username, server):
51 if not username:
53 username = os.environ['AUTOTEST_USER']
55 username = getpass.getuser()
56 return {'AUTHORIZATION' : username}
  /external/autotest/client/site_tests/login_Cryptohome/
login_Cryptohome.py 21 username = ''
23 username = cr.username
24 if not cryptohome.is_permanent_vault_mounted(username):
27 if cryptohome.is_vault_mounted(user=username,
34 cryptohome.remove_vault(username)
42 if not cryptohome.is_permanent_vault_mounted(username):
  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
ProxyParameters.java 29 @Nullable public final String username; field in class:ProxyParameters
35 @Nullable String username,
42 this.username = username;
53 && Objects.equal(username, that.username)
59 return Objects.hashCode(proxyAddress, username, password);
  /external/autotest/frontend/
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);
  /external/autotest/cli/
rpc.py 34 def __init__(self, web_server, rpc_path, username):
35 self.username = username
46 headers = rpc_client_lib.authorization_headers(self.username,
64 def __init__(self, web_server=None, rpc_path=AFE_RPC_PATH, username=None):
65 super(afe_comm, self).__init__(web_server, rpc_path, username)
70 def __init__(self, web_server=None, rpc_path=TKO_RPC_PATH, username=None):
71 super(tko_comm, self).__init__(web_server, rpc_path, username)

Completed in 1873 milliseconds

1 2 3 4 5 6 7 8 91011>>