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

1 2 3

  /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) { }
  /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/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/nist-sip/java/gov/nist/javax/sip/clientauthutils/
CredentialsCache.java 31 String userName;
33 public TimeoutTask(String userName, String proxyDomain) {
35 this.userName = 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/emailcommon/src/com/android/emailcommon/utility/
Utility.java 287 * Look for an existing account with the same username & server
298 String userName = userLogin.replace("_", "\\_");
300 HOSTAUTH_WHERE_CREDENTIALS, new String[] { hostName, userName }, null);
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
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)) {
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);
AccountSetupBasics.java 271 String userName = SetupData.getUsername();
272 if (userName != null) {
273 mEmailView.setText(userName);
277 if (userName != null) {
403 * Return an existing username if found, or null. This is the result of the Callable (below).
416 * Callable that returns the username (based on other accounts) or null.
558 // Username: d@d.d
AccountSetupExchangeFragment.java 283 String userName = hostAuth.mLogin;
284 if (userName != null) {
285 // Add a backslash to the start of the username, but only if the username has no
287 if (userName.indexOf('\\') < 0) {
288 userName = "\\" + userName;
290 mUsernameView.setText(userName);
295 // Since username is uneditable, focus on the next editable field
431 String userName = mUsernameView.getText().toString().trim()
    [all...]
AccountSetupIncomingFragment.java 327 String username = recvAuth.mLogin; local
328 if (username != null) {
329 mUsernameView.setText(username);
334 // Since username is uneditable, focus on the next editable field
388 String userName = mUsernameView.getText().toString().trim();
389 mCacheLoginCredential = userName;
434 // Set the username and password for the outgoing settings to the username and
457 String userName = mUsernameView.getText().toString().trim();
459 recvAuth.setLogin(userName, userPassword)
    [all...]
  /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());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
QuickSettings.java 202 final String userName = userInfo.name;
212 String name = userName;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-starteam.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jar 
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java     [all...]
  /prebuilts/devtools/tools/lib/
commons-compress-1.0.jar 
  /prebuilts/tools/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.0/
commons-compress-1.0.jar 
  /external/robolectric/lib/main/
httpclient-4.0.3.jar 

Completed in 444 milliseconds

1 2 3