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

1 2 3 4 5

  /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...]
  /packages/apps/OMA-DM/engine/dmlib/tool-src/servercred/src/
DeviceInfo.cc 11 userName = NULL;
33 if (userName != NULL) {
34 free(userName);
35 userName = NULL;
67 userName = (char *) malloc(len);
68 memset(userName, '\0', len);
70 strcpy(userName, imei);
108 if (userName != NULL) {
109 free(userName);
110 userName = NULL
    [all...]
  /packages/apps/OMA-DM/engine/dmlib/tool-src/servercred/hdr/
DeviceInfo.H 31 char * 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/okhttp/src/main/java/com/squareup/okhttp/
OkAuthenticator.java 96 public static Credential basic(String userName, String password) {
98 String usernameAndPassword = userName + ":" + password;
  /frameworks/base/services/core/java/com/android/server/am/
UserSwitchingDialog.java 51 int userId, String userName, boolean aboveSystem) {
63 res.getString(com.android.internal.R.string.user_switching_message, userName));
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IEmailService.aidl 56 Bundle autoDiscover(String userName, String password);
EmailServiceProxy.java 176 * @param userName the user's email address
181 public Bundle autoDiscover(final String userName, final String password)
186 mReturn = mService.autoDiscover(userName, password);
  /packages/apps/Settings/src/com/android/settings/users/
EditUserInfoController.java 149 CharSequence userName = userNameView.getText();
150 if (!TextUtils.isEmpty(userName)) {
152 || !userName.toString().equals(currentUserName.toString())) {
154 callback.onLabelChanged(userName.toString());
157 userName.toString());
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
adshlp.h 34 HRESULT WINAPI BinarySDToSecurityDescriptor(PSECURITY_DESCRIPTOR pSecurityDescriptor,VARIANT *pVarsec,LPCWSTR pszServerName,LPCWSTR userName,LPCWSTR passWord,DWORD dwFlags);
35 HRESULT WINAPI SecurityDescriptorToBinarySD(VARIANT vVarSecDes,PSECURITY_DESCRIPTOR *ppSecurityDescriptor,PDWORD pdwSDLength,LPCWSTR pszServerName,LPCWSTR userName,LPCWSTR passWord,DWORD dwFlags);
  /frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
BluetoothPbapObexAuthenticator.java 81 public byte[] onAuthenticationResponse(byte[] userName) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapAuthenticator.java 102 public byte[] onAuthenticationResponse(final byte[] userName) {
  /external/smali/
build.gradle 108 authentication(userName: sonatypeUsername, password: sonatypePassword)
  /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 311 String userName = null;
315 userName = userInfoParts[0];
320 setLogin(userName, userPassword);
323 public void setUserName(final String userName) {
324 mLogin = userName;
335 public void setLogin(String userName, String userPassword) {
336 mLogin = userName;
347 * Returns the login information. [0] is the username and [1] is the password.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
UserInfoController.java 133 final String userName = userInfo.name;
145 String name = userName;
  /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/
AccountSetupNamesFragment.java 166 final String userName = mName.getText().toString().trim();
167 if (TextUtils.isEmpty(userName)) {

Completed in 1073 milliseconds

1 2 3 4 5