Searched refs:userName (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/obex/javax/obex/ |
D | PasswordAuthentication.java | 53 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()
|
D | ObexSession.java | 143 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()
|
D | Authenticator.java | 114 byte[] onAuthenticationResponse(byte[] userName); in onAuthenticationResponse() argument
|
D | ServerRequestHandler.java | 258 public void onAuthenticationFailure(byte[] userName) { in onAuthenticationFailure() argument
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | UserSwitchingDialog.java | 44 int userId, String userName, boolean aboveSystem) { in UserSwitchingDialog() argument 56 res.getString(com.android.internal.R.string.user_switching_message, userName)); in UserSwitchingDialog()
|
D | ActivityManagerService.java | 18842 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/ |
D | BluetoothPbapObexAuthenticator.java | 81 public byte[] onAuthenticationResponse(byte[] userName) { in onAuthenticationResponse() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | UserInfoController.java | 134 final String userName = userInfo.name; in queryForUserInformation() local 149 String name = userName; in queryForUserInformation()
|