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

1 2 3

  /frameworks/base/obex/javax/obex/
PasswordAuthentication.java 48 * @param userName the user name to include; this may be <code>null</code>
53 public PasswordAuthentication(final byte[] userName, final byte[] password) {
54 if (userName != null) {
55 mUserName = new byte[userName.length];
56 System.arraycopy(userName, 0, mUserName, 0, userName.length);
Authenticator.java 108 * @param userName the user name provided in the authentication response; may
114 byte[] onAuthenticationResponse(byte[] userName);
ObexSession.java 143 byte[] userName = result.getUserName();
153 if (userName != null) {
154 header.mAuthResp = new byte[38 + userName.length];
156 header.mAuthResp[37] = (byte)userName.length;
157 System.arraycopy(userName, 0, header.mAuthResp, 38, userName.length);
ServerRequestHandler.java 255 * @param userName the user name returned in the authentication response;
258 public void onAuthenticationFailure(byte[] userName) {
  /libcore/luni/src/main/java/java/net/
PasswordAuthentication.java 21 * This immutable class is a data structure that encapsulates username and
28 private String userName;
34 * username and password.
36 * @param userName
37 * the username to store.
41 public PasswordAuthentication(String userName, char[] password) {
42 this.userName = userName;
58 * Gets the username stored by this instance.
60 * @return the stored username
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebPasswordFormUtils.h 45 // Helper structure to locate username, passwords and submit fields.
51 WebCore::HTMLInputElement* userName;
55 PasswordFormFields() : userName(0), submit(0) { }
WebPasswordFormData.cpp 115 HTMLInputElement* userName,
136 if (userName) {
137 result->userNameElement = userName->name();
138 result->userNameValue = userName->value();
177 fields.submit, fields.userName,
WebPasswordFormUtils.cpp 38 // Helper to WebPasswordFormData to do the locating of username/password
81 // We assume that the username is the input element before the
84 fields->userName = latestInputElement;
85 // Remove the selected username from alternateUserNames.
92 // Various input types such as text, url, email can be a username field.
95 // We ignore elements that have no value. Unlike userName, alternateUserNames
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketUserauthRequestInteractive.java 17 String userName;
24 this.userName = user;
34 tw.writeString(userName);
PacketUserauthRequestNone.java 19 String userName;
25 this.userName = user;
40 userName = tr.readString();
58 tw.writeString(userName);
PacketUserauthRequestPassword.java 19 String userName;
26 this.userName = user;
42 userName = tr.readString();
62 tw.writeString(userName);
PacketUserauthRequestPublicKey.java 19 String userName;
30 this.userName = user;
58 tw.writeString(userName);
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
HttpAuthDatabaseTest.java 39 String userName = "user";
45 instance.setHttpAuthUsernamePassword(host, realm, userName, password);
48 assertEquals(userName, result[0]);
52 instance.setHttpAuthUsernamePassword(host, realm, userName, newPassword);
55 assertEquals(userName, result[0]);
71 instance.setHttpAuthUsernamePassword(host, realm, userName, null);
74 assertEquals(userName, result[0]);
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
CredentialsCache.java 31 String userName;
33 public TimeoutTask(String userName, String proxyDomain) {
35 this.userName = userName;
  /external/apache-http/src/org/apache/http/auth/
UsernamePasswordCredentials.java 38 * Username and password {@link Credentials}
54 * The constructor with the username and password combined string argument.
56 * @param usernamePassword the username:password formed string
62 throw new IllegalArgumentException("Username:password string may not be null");
76 * The constructor with the username and password arguments.
78 * @param userName the user name
81 public UsernamePasswordCredentials(String userName, String password) {
83 if (userName == null) {
84 throw new IllegalArgumentException("Username may not be null");
86 this.principal = new BasicUserPrincipal(userName);
    [all...]
NTCredentials.java 58 * The constructor with the fully qualified username and password combined
61 * @param usernamePassword the domain/username:password formed string
66 throw new IllegalArgumentException("Username:password string may not be null");
68 String username; local
71 username = usernamePassword.substring(0, atColon);
74 username = usernamePassword;
77 int atSlash = username.indexOf('/');
80 username.substring(0, atSlash).toUpperCase(Locale.ENGLISH),
81 username.substring(atSlash + 1));
85 username.substring(atSlash + 1))
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/
OkAuthenticator.java 96 public static Credential basic(String userName, String password) {
98 String usernameAndPassword = userName + ":" + password;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IEmailService.aidl 46 Bundle autoDiscover(String userName, String password);
EmailServiceProxy.java 221 * @param userName the user's email address
226 public Bundle autoDiscover(final String userName, final String password)
231 mReturn = mService.autoDiscover(userName, password);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAuthenticator.java 84 public byte[] onAuthenticationResponse(final byte[] userName) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapAuthenticator.java 102 public byte[] onAuthenticationResponse(final byte[] userName) {
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
RawContact.java 208 final String userName = !contact.isNull("u") ? contact.getString("u") : null;
210 // If we didn't get either a username or serverId for the contact, then
212 if ((userName == null) && (serverContactId <= 0)) {
227 return new RawContact(userName, null, firstName, lastName, cellPhone,
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
HostAuth.java 205 String userName = null;
209 userName = userInfoParts[0];
214 setLogin(userName, userPassword);
220 public void setLogin(String userName, String userPassword) {
221 mLogin = userName;
232 * Returns the login information. [0] is the username and [1] is the password. If
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/
VendorPolicyLoader.java 180 * @param userName the server that is being contacted (e.g. "imap.server.com")
186 public String getImapIdValues(String userName, String host, String capabilities) {
188 params.putString(GET_IMAP_ID_USER, userName);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupNames.java 49 * Final screen of setup process. Collect account nickname and/or username.
170 final String userName = mName.getText().toString().trim();
171 if (TextUtils.isEmpty(userName)) {

Completed in 1271 milliseconds

1 2 3