HomeSort by relevance Sort by last modified time
    Searched defs:mAuthResp (Results 1 - 2 of 2) sorted by null

  /frameworks/base/obex/javax/obex/
ObexSession.java 154 header.mAuthResp = new byte[38 + userName.length];
155 header.mAuthResp[36] = (byte)0x01;
156 header.mAuthResp[37] = (byte)userName.length;
157 System.arraycopy(userName, 0, header.mAuthResp, 38, userName.length);
159 header.mAuthResp = new byte[36];
170 header.mAuthResp[0] = (byte)0x00;
171 header.mAuthResp[1] = (byte)0x10;
173 System.arraycopy(ObexHelper.computeMd5Hash(digest), 0, header.mAuthResp, 2, 16);
176 header.mAuthResp[18] = (byte)0x02;
177 header.mAuthResp[19] = (byte)0x10
    [all...]
HeaderSet.java 218 public byte[] mAuthResp; // The authentication response header

Completed in 493 milliseconds