Searched refs:userName (Results 1 - 5 of 5) 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.java143 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);
H A DServerRequestHandler.java255 * @param userName the user name returned in the authentication response;
258 public void onAuthenticationFailure(byte[] userName) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQuickSettings.java205 final String userName = userInfo.name;
216 String name = userName;

Completed in 109 milliseconds