/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/webkit/Source/WebKit/chromium/src/ |
WebPasswordFormUtils.h | 44 // Helper structure to locate username, passwords and submit fields. 46 WebCore::HTMLInputElement* userName; 49 PasswordFormFields() : userName(0), submit(0) { }
|
WebPasswordFormData.cpp | 115 HTMLInputElement* userName, 134 if (userName) { 135 result->userNameElement = userName->name(); 136 result->userNameValue = userName->value(); 179 fields.submit, fields.userName,
|
WebPasswordFormUtils.cpp | 38 // Helper to WebPasswordFormData to do the locating of username/password 93 // Then, search backwards for the username field 105 // Various input types such as text, url, email can be a username field. 108 fields->userName = inputElement;
|
/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...] |
/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountSetupExchangeFragment.java | 262 String userName = hostAuth.mLogin; 263 if (userName != null) { 264 // Add a backslash to the start of the username, but only if the username has no 266 if (userName.indexOf('\\') < 0) { 267 userName = "\\" + userName; 269 mUsernameView.setText(userName); 274 // Since username is uneditable, focus on the next editable field 404 String userName = mUsernameView.getText().toString().trim() [all...] |
AccountSetupNames.java | 49 * Final screen of setup process. Collect account nickname and/or username. 171 String userName = mName.getText().toString().trim(); 172 if (TextUtils.isEmpty(userName)) {
|
AccountSetupBasics.java | 255 String userName = SetupData.getUsername(); 256 if (userName != null) { 257 mEmailView.setText(userName); 261 if (userName != null) { 387 * Return an existing username if found, or null. This is the result of the Callable (below). 400 * Callable that returns the username (based on other accounts) or null. 542 // Username: d@d.d
|
AccountSetupIncomingFragment.java | 319 String username = recvAuth.mLogin; local 320 if (username != null) { 321 mUsernameView.setText(username); 326 // Since username is uneditable, focus on the next editable field 380 String userName = mUsernameView.getText().toString().trim(); 381 mCacheLoginCredential = userName; 426 // Set the username and password for the outgoing settings to the username and 449 String userName = mUsernameView.getText().toString().trim(); 451 recvAuth.setLogin(userName, userPassword) [all...] |
AccountSetupOutgoingFragment.java | 254 String username = sendAuth.mLogin; local 255 if (username != null) { 256 mUsernameView.setText(username); 353 String userName = mUsernameView.getText().toString().trim(); 355 sendAuth.setLogin(userName, userPassword);
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/ |
IEmailService.aidl | 48 Bundle autoDiscover(String userName, String password);
|
EmailServiceProxy.java | 218 * @param userName the user's email address 222 public Bundle autoDiscover(final String userName, final String password) 227 mReturn = mService.autoDiscover(userName, password);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
BluetoothPbapAuthenticator.java | 102 public byte[] onAuthenticationResponse(final byte[] userName) {
|
/packages/apps/Email/src/com/android/email/ |
VendorPolicyLoader.java | 181 * @param userName the server that is being contacted (e.g. "imap.server.com") 187 public String getImapIdValues(String userName, String host, String capabilities) { 189 params.putString(GET_IMAP_ID_USER, 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 | 202 String userName = null; 206 userName = userInfoParts[0]; 211 setLogin(userName, userPassword); 217 public void setLogin(String userName, String userPassword) { 218 mLogin = userName; 229 * Returns the login information. [0] is the username and [1] is the password. If
|
/packages/apps/Email/src/com/android/email/service/ |
EmailServiceUtils.java | 92 public Bundle autoDiscover(String userName, String password) throws RemoteException {
|
/external/llvm/utils/Misc/ |
zkill | 173 group.add_option("", "--user", dest="userName", metavar="REGEX", 244 if opts.userName is not None: 246 if re_full_match(opts.userName, p.user)]
|
/packages/apps/Email/src/com/android/email/mail/store/ |
ImapStore.java | 179 * @param userName the username of the account 185 static String getImapId(Context context, String userName, String host, String capabilities) { 206 String vendorId = VendorPolicyLoader.getInstance(context).getImapIdValues(userName, host, 218 messageDigest.update(userName.getBytes());
|