Searched refs:userName (Results 1 - 19 of 19) sorted by relevance

/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSetupExchangeFragment.java283 String userName = hostAuth.mLogin;
284 if (userName != null) {
287 if (userName.indexOf('\\') < 0) {
288 userName = "\\" + userName;
290 mUsernameView.setText(userName);
431 String userName = mUsernameView.getText().toString().trim();
432 if (userName.startsWith("\\")) {
433 userName = userName
[all...]
H A DAccountSetupNames.java171 String userName = mName.getText().toString().trim();
172 if (TextUtils.isEmpty(userName)) {
H A DAccountSetupBasics.java271 String userName = SetupData.getUsername();
272 if (userName != null) {
273 mEmailView.setText(userName);
277 if (userName != null) {
H A DAccountSetupIncomingFragment.java388 String userName = mUsernameView.getText().toString().trim();
389 mCacheLoginCredential = userName;
457 String userName = mUsernameView.getText().toString().trim();
459 recvAuth.setLogin(userName, userPassword);
H A DAccountSetupOutgoingFragment.java353 String userName = mUsernameView.getText().toString().trim();
355 sendAuth.setLogin(userName, userPassword);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DIEmailService.aidl48 Bundle autoDiscover(String userName, String password);
H A DEmailServiceProxy.java238 * @param userName the user's email address
243 public Bundle autoDiscover(final String userName, final String password) argument
249 mReturn = mService.autoDiscover(userName, password);
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapAuthenticator.java102 public byte[] onAuthenticationResponse(final byte[] userName) { argument
H A DBluetoothPbapObexServer.java960 public final void onAuthenticationFailure(final byte[] userName) { argument
/packages/apps/Email/src/com/android/email/
H A DVendorPolicyLoader.java181 * @param userName the server that is being contacted (e.g. "imap.server.com")
187 public String getImapIdValues(String userName, String host, String capabilities) { argument
189 params.putString(GET_IMAP_ID_USER, userName);
H A DController.java1799 public Bundle autoDiscover(String userName, String password) {
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DHostAuth.java202 String userName = null;
206 userName = userInfoParts[0];
211 setLogin(userName, userPassword);
217 public void setLogin(String userName, String userPassword) { argument
218 mLogin = userName;
/packages/apps/Email/src/com/android/email/service/
H A DEmailServiceUtils.java92 public Bundle autoDiscover(String userName, String password) throws RemoteException { argument
/packages/apps/Email/src/com/android/email/mail/store/
H A DImapStore.java179 * @param userName the username of the account
185 static String getImapId(Context context, String userName, String host, String capabilities) { argument
206 String vendorId = VendorPolicyLoader.getInstance(context).getImapIdValues(userName, host,
218 messageDigest.update(userName.getBytes());
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DEasSyncService.java673 * @param userName the user's email address
677 public Bundle tryAutodiscover(String userName, String password) throws RemoteException { argument
691 s.startTag(null, "EMailAddress").text(userName).endTag(null, "EMailAddress");
701 mUserName = userName;
711 int amp = userName.indexOf('@');
712 // The UI ensures that userName is a valid email address
716 String domain = userName.substring(amp + 1);
H A DExchangeService.java358 public Bundle autoDiscover(String userName, String password) throws RemoteException {
359 return new EasSyncService().tryAutodiscover(userName, password);
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DTestActivity.java540 public void onAuthenticationFailure(byte[] userName) { argument
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DUtility.java298 String userName = userLogin.replace("_", "\\_");
300 HOSTAUTH_WHERE_CREDENTIALS, new String[] { hostName, userName }, null);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsDatabaseHelper.java4771 String userName = pm.getNameForUid(callingUid);
4772 if (userName != null) {
4773 sb.append(userName);

Completed in 275 milliseconds