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

1 2 3 4 5 6 7 8 91011>>

  /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/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
  /external/syslinux/com32/cmenu/libmenu/
passwords.h 4 char authenticate_user(const char *username, const char *pwd);
6 char isallowed(const char *username, const char *perm);
18 char username[USERNAME_LENGTH + 1]; member in struct:__anon36893
  /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/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/libcups/cups/
testcreds.c 34 username[HTTP_MAX_URI], /* Username:password from URI */ local
63 if (httpSeparateURI(HTTP_URI_CODING_MOST, argv[1], scheme, sizeof(scheme), username, sizeof(username), hostname, sizeof(hostname), &port, resource, sizeof(resource)) < HTTP_URI_STATUS_OK)
  /external/libmicrohttpd/src/examples/
digest_auth_example.c 44 char *username; local
49 username = MHD_digest_auth_get_username(connection);
50 if (username == NULL)
63 username,
66 free(username);
  /external/ltp/testcases/kernel/syscalls/bind/
bind02.c 124 char *username = "nobody"; local
130 if ((pw = getpwnam(username)) == NULL) {
131 tst_brkm(TBROK, 0, "Username - %s - not found", username);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AcctCommandHandler.java 38 String username = (String) getRequiredSessionAttribute(session, SessionKeys.USERNAME); local
41 sendReply(session, ReplyCodes.ACCT_OK, "acct", list(username));
PassCommandHandler.java 41 String username = (String) getRequiredSessionAttribute(session, SessionKeys.USERNAME); local
43 if (validateUserAccount(username, session)) {
44 UserAccount userAccount = getServerConfiguration().getUserAccount(username);
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/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/webrtc/webrtc/base/
proxyinfo.h 34 std::string username; member in struct:rtc::ProxyInfo
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
StandardSignInActivity.java 66 String username = mUsernameEditText.getText().toString(); local
68 boolean valid = isValidCredentials(username, password);
82 public boolean isValidCredentials(String username, String password) {
83 return username != null && password != null && username.equals(password);
VirtualSignInActivity.java 27 * Activity that uses a virtual views for Username/Password text fields.
51 mUsernameLine = credentialsPartition.addLine("username", View.AUTOFILL_TYPE_TEXT,
84 String username = mUsernameLine.getText().toString(); local
86 boolean valid = isValidCredentials(username, password);
100 public boolean isValidCredentials(String username, String password) {
101 return username != null && password != null && username.equals(password);
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/commoncases/
StandardSignInActivity.java 69 String username = mUsernameEditText.getText().toString(); local
71 boolean valid = isValidCredentials(username, password);
85 public boolean isValidCredentials(String username, String password) {
86 return username != null && password != null && username.equalsIgnoreCase(password);
VirtualSignInActivity.java 31 * Activity that uses a virtual views for Username/Password text fields.
50 mUsernameLine = credentialsPartition.addLine("username", View.AUTOFILL_TYPE_TEXT,
83 String username = mUsernameLine.getText().toString(); local
85 boolean valid = isValidCredentials(username, password);
99 public boolean isValidCredentials(String username, String password) {
100 return username != null && password != null && username.equals(password);
  /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/syslinux/gpxe/src/hci/tui/
login_ui.c 51 char username[64]; local
60 fetch_string_setting ( NULL, &username_setting, username,
61 sizeof ( username ) );
71 init_editbox ( &username_box, username, sizeof ( username ), NULL,
80 mvprintw ( USERNAME_LABEL_ROW, LABEL_COL, "Username:" );
129 if ( ( rc = store_setting ( NULL, &username_setting, username,
130 strlen ( username ) ) ) != 0 )
  /external/webrtc/webrtc/tools/loopback_test/
adapter.js 67 createIceServer = function(url, username, password) {
83 'username': username};
90 'username': username};
96 createIceServers = function(urls, username, password) {
101 username,
143 createIceServer = function(url, username, password) {
153 'username': username};
89 'credential': password, property in class:iceServer
152 'credential': password, property in class:iceServer
164 'credential': password, property in class:iceServers
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
HostTableDecorator.java 30 private JSONValue username; field in class:HostTableDecorator.AclAccessibleFilter
34 username = new JSONString(StaticDataRepository.getRepository().getCurrentUserLogin());
39 return username;
  /external/curl/lib/vauth/
krb5_gssapi.c 228 gss_name_t username = GSS_C_NO_NAME; local
245 /* Get the fully qualified username back from the context */
247 &username, NULL, NULL, NULL, NULL,
258 /* Convert the username from internal format to a displayable token */
259 major_status = gss_display_name(&minor_status, username,
341 /* Free the username token as it is not required anymore */
  /external/libmicrohttpd/src/testcurl/
test_digestauth.c 80 char *username; local
85 username = MHD_digest_auth_get_username(connection);
86 if ( (username == NULL) ||
87 (0 != strcmp (username, "testuser")) )
100 username,
103 free(username);

Completed in 1437 milliseconds

1 2 3 4 5 6 7 8 91011>>