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

/frameworks/base/obex/javax/obex/
H A DPasswordAuthentication.java48 * @param userName the user name to include; this may be <code>null</code>
53 public PasswordAuthentication(final byte[] userName, final byte[] password) { argument
54 if (userName != null) {
55 mUserName = new byte[userName.length];
56 System.arraycopy(userName, 0, mUserName, 0, userName.length);
H A DAuthenticator.java108 * @param userName the user name provided in the authentication response; may
114 byte[] onAuthenticationResponse(byte[] userName); argument
H A DObexSession.java149 byte[] userName = result.getUserName();
159 if (userName != null) {
160 header.mAuthResp = new byte[38 + userName.length];
162 header.mAuthResp[37] = (byte)userName.length;
163 System.arraycopy(userName, 0, header.mAuthResp, 38, userName.length);
H A DServerRequestHandler.java255 * @param userName the user name returned in the authentication response;
258 public void onAuthenticationFailure(byte[] userName) { argument
/frameworks/base/services/core/java/com/android/server/am/
H A DUserSwitchingDialog.java53 int userId, String userName, boolean aboveSystem) {
65 res.getString(com.android.internal.R.string.user_switching_message, userName));
52 UserSwitchingDialog(ActivityManagerService service, Context context, int userId, String userName, boolean aboveSystem) argument
H A DActivityManagerService.java19818 String userName;
19829 userName = userInfo.name;
19833 mUiHandler.sendMessage(mUiHandler.obtainMessage(START_USER_SWITCH_MSG, userId, 0, userName));
19837 private void showUserSwitchDialog(int userId, String userName) { argument
19839 Dialog d = new UserSwitchingDialog(this, mContext, userId, userName,
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapObexAuthenticator.java81 public byte[] onAuthenticationResponse(byte[] userName) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DUserInfoController.java134 final String userName = userInfo.name;
149 String name = userName;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
H A DCredential.java48 EAPMethod eapMethod, String userName, String password,
55 mUserName = userName;
47 Credential(long ctime, long expTime, String realm, boolean checkAAACert, EAPMethod eapMethod, String userName, String password, boolean machineManaged, String stApp, boolean share) argument
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DMOManager.java571 String userName = getString(unNode.getChild(TAG_Username));
617 return new Credential(ctime, expTime, realm, checkAAACert, eapMethod, userName,

Completed in 274 milliseconds