Home
last modified time | relevance | path

Searched refs:userName (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/obex/javax/obex/
DPasswordAuthentication.java53 public PasswordAuthentication(final byte[] userName, final byte[] password) { in PasswordAuthentication() argument
54 if (userName != null) { in PasswordAuthentication()
55 mUserName = new byte[userName.length]; in PasswordAuthentication()
56 System.arraycopy(userName, 0, mUserName, 0, userName.length); in PasswordAuthentication()
DObexSession.java143 byte[] userName = result.getUserName(); in handleAuthChall()
153 if (userName != null) { in handleAuthChall()
154 header.mAuthResp = new byte[38 + userName.length]; in handleAuthChall()
156 header.mAuthResp[37] = (byte)userName.length; in handleAuthChall()
157 System.arraycopy(userName, 0, header.mAuthResp, 38, userName.length); in handleAuthChall()
DAuthenticator.java114 byte[] onAuthenticationResponse(byte[] userName); in onAuthenticationResponse() argument
DServerRequestHandler.java258 public void onAuthenticationFailure(byte[] userName) { in onAuthenticationFailure() argument
/frameworks/base/services/core/java/com/android/server/am/
DUserSwitchingDialog.java44 int userId, String userName, boolean aboveSystem) { in UserSwitchingDialog() argument
56 res.getString(com.android.internal.R.string.user_switching_message, userName)); in UserSwitchingDialog()
DActivityManagerService.java18842 String userName; in switchUser() local
18853 userName = userInfo.name; in switchUser()
18857 mHandler.sendMessage(mHandler.obtainMessage(START_USER_SWITCH_MSG, userId, 0, userName)); in switchUser()
18861 private void showUserSwitchDialog(int userId, String userName) { in showUserSwitchDialog() argument
18863 Dialog d = new UserSwitchingDialog(this, mContext, userId, userName, in showUserSwitchDialog()
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
DBluetoothPbapObexAuthenticator.java81 public byte[] onAuthenticationResponse(byte[] userName) { in onAuthenticationResponse() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DUserInfoController.java134 final String userName = userInfo.name; in queryForUserInformation() local
149 String name = userName; in queryForUserInformation()