/external/wpa_supplicant_8/src/crypto/ |
ms_funcs.c | 76 * @username: 0-to-256-char UserName (IN) 77 * @username_len: Length of username 82 const u8 *username, size_t username_len, u8 *challenge) 92 addr[2] = username; 161 * @username: 0-to-256-char UserName (IN) 162 * @username_len: Length of username 169 const u8 *username, size_t username_len, 176 if (challenge_hash(peer_challenge, auth_challenge, username, [all...] |
/cts/tests/autofillservice/src/android/autofillservice/cts/ |
VirtualContainerActivityTest.java | 108 final ViewNode username = findNodeByResourceId(request.structure, ID_USERNAME); local 112 assertTextIsSanitized(username); 114 assertTextAndValue(usernameLabel, "Username"); 118 assertThat(username.getClassName()).isEqualTo(TEXT_CLASS); 122 assertThat(username.getIdEntry()).isEqualTo(ID_USERNAME); 126 assertThat(username.getAutofillHints()).asList() 131 VirtualContainerView.assertHtmlInfo(username); 139 assertWithMessage("Username node is not focused").that(username.isFocused()).isTrue();
|
/external/libcups/cups/ |
ppd-util.c | 521 username[HTTP_MAX_URI], /* Username:password */ local 603 httpSeparateURI(HTTP_URI_CODING_ALL, _httpResolveURI(device_uri, uri, sizeof(uri), _HTTP_RESOLVE_DEFAULT, NULL, NULL), scheme, sizeof(scheme), username, sizeof(username), host, hostsize, port, resource, resourcesize); 621 httpSeparateURI(HTTP_URI_CODING_ALL, attr->values[i].string.text, scheme, sizeof(scheme), username, sizeof(username), host, hostsize, port, resource, resourcesize); 645 scheme, sizeof(scheme), username, sizeof(username), 686 httpSeparateURI(HTTP_URI_CODING_ALL, _httpResolveURI(attr->values[0].string.text, uri, sizeof(uri), _HTTP_RESOLVE_DEFAULT, NULL, NULL), scheme, sizeof(scheme), username, sizeof(username), host, hostsize, port, resource, resourcesize) [all...] |
auth.c | 61 char *username; member in struct:gss_auth_identity 166 * Nope, see if we should retry the current username:password... 180 /* Default username */ 187 if (httpGetSubField(http, HTTP_FIELD_WWW_AUTHENTICATE, "username", 267 "username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", " 347 userbuf[256]; /* Kerberos username */ 348 const char *username, /* Username string */ local 369 username = cupsUser(); 370 if (!strchr(username, '@') [all...] |
/external/ppp/pppd/plugins/ |
winbind.c | 241 unsigned int run_ntlm_auth(const char *username, 325 if (username) { 326 char *b64_username = base64_encode(username); 327 fprintf(pipe_in, "Username:: %s\n", b64_username); 339 fprintf(pipe_in, "Full-Username:: %s\n", b64_full_username); 520 char *username; local 528 /* remove domain from "domain\username" */ 529 if ((username = strrchr(user, '\\')) != NULL) 530 ++username; 532 username = user [all...] |
/external/toolchain-utils/automation/server/ |
job_executer.py | 36 self.job.primary_machine.username, 85 username=from_machine.username), 103 username=self.job.primary_machine.username),
|
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/ |
PeerConnection.java | 94 public final String username; field in class:PeerConnection.IceServer 102 public IceServer(String uri, String username, String password) { 104 this.username = username; 109 return uri + "[" + username + ":" + password + "]";
|
/external/webrtc/webrtc/base/ |
autodetectproxy.cc | 117 char username[kSavedStringLimit]; local 118 SaveStringToStack(username, proxy().username, sizeof username); 127 << autodetect << " " << bypass_list << " " << username; local
|
/external/webrtc/webrtc/p2p/base/ |
candidate.h | 47 const std::string& username, 57 username_(username), 109 const std::string & username() const { return username_; } function in class:cricket::Candidate 110 void set_username(const std::string & username) { username_ = username; }
|
relayserver.cc | 258 // The initial packet should have a username (which identifies the binding). 262 LOG(LS_WARNING) << "Dropping packet: no username"; 268 std::string username(username_attr->bytes(), length); 272 BindingMap::iterator biter = bindings_.find(username); 274 LOG(LS_WARNING) << "Dropping packet: no binding with username"; 297 rtc::AsyncPacketSocket* socket, std::string* username, 306 // The initial packet should have a username (which identifies the binding). 310 SendStunError(*msg, socket, remote_addr, 432, "Missing Username", ""); 314 // Record the username if requested. 315 if (username) 329 std::string username; local 389 std::string username; local [all...] |
tcpport.h | 37 const std::string& username, 41 max_port, username, password, allow_listen); 69 const std::string& username,
|
turnport.h | 47 const std::string& username, // ice username. 53 return new TurnPort(thread, factory, network, socket, username, password, 63 const std::string& username, // ice username. 70 username, password, server_address, credentials, 160 const std::string& username, 173 const std::string& username, 265 std::string hash_; // Digest of username:realm:password
|
/external/webrtc/webrtc/p2p/client/ |
httpportallocator.cc | 134 username(), 170 ASSERT(!username().empty()); 172 url = url + "?username=" + rtc::s_url_encode(username()) + 183 if (!username().empty() && map["username"] != username()) { 184 LOG(LS_WARNING) << "Received unexpected username value from relay server."; 202 map["username"],
|
/packages/apps/Settings/tests/app/src/com/android/settings/vpn2/ |
VpnProfileParser.java | 47 boolean username; 82 if (tagName.equalsIgnoreCase("username")) { 83 username = true; 153 if (username) { 154 profile.username = strValue; 155 username = false;
|
/external/autotest/client/cros/networking/chrome_testing/ |
chrome_networking_test_context.py | 47 def __init__(self, extensions=None, username=None, password=None, 53 self._username = username 69 username=self._username,
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_mschapv2.c | 290 const u8 *username, *user; local 343 username = sm->identity; 346 if (username[i] == '\\') { 348 username += i + 1; 368 username, username_len, challenge) == 0) { 370 username, username_len, 377 os_memcmp(username, user, username_len) != 0) { 380 "name", username, username_len); 388 username, username_len); 393 username, username_len [all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
AbstractFakeCommandHandler.java | 355 * Validate the UserAccount for the specified username. If valid, return true. If the UserAccount does
360 * @param username - the username
364 protected boolean validateUserAccount(String username, Session session) {
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
368 sendReply(session, ReplyCodes.USER_ACCOUNT_NOT_VALID, "login.userAccountNotValid", list(username));
374 LOG.error("Home directory configured for username [" + username + "] is not valid: " + home); [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
config.py | 17 username:%s
42 def _store_pypirc(self, username, password):
47 f.write(DEFAULT_PYPIRC % (username, password))
81 current['username'] = config.get(server, 'username')
102 return {'username': config.get(server, 'username'),
|
/external/autotest/server/cros/ap_configurators/basic_auth_extension/ |
background.js | 19 callback({authCredentials: {username: 'admin', password: 'password'}});
|
/external/autotest/site_utils/lib/ |
infra.py | 77 username = global_config.global_config.get_config_value( 79 host_object = ssh_host.SSHHost(host, user=username)
|
/external/autotest/utils/ |
service_helper.py | 40 or a string username 57 or a string username 82 username, uid = get_user_name_id(user) 84 for name in ('LOGNAME', 'USER', 'LNAME', 'USERNAME'): 85 os.environ[name] = username
|
/external/chromium-trace/catapult/telemetry/third_party/websocket-client/websocket/ |
_url.py | 125 proxy_auth is tuple of username and password 138 tuple of username and password. 157 auth = (proxy.username, proxy.password) if proxy.username else None
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
WebPlatformUrlTestData.java | 40 String username = ""; field in class:WebPlatformUrlTestData 58 username = value;
|
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/ |
WebView.java | 82 public void savePassword(String host, String username, String password) { 86 String username, String password) {
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
config.py | 17 username:%s 42 def _store_pypirc(self, username, password): 47 f.write(DEFAULT_PYPIRC % (username, password)) 76 current['username'] = config.get(server, 'username') 97 return {'username': config.get(server, 'username'),
|