Home
last modified time | relevance | path

Searched refs:mAid (Results 1 – 2 of 2) sorted by relevance

/packages/apps/SecureElement/src/com/android/se/security/gpac/
DAID_REF_DO.java54 private byte[] mAid = new byte[0]; field in AID_REF_DO
62 if (aid != null) mAid = aid; in AID_REF_DO()
94 return mAid; in getAid()
126 mAid = new byte[getValueLength()]; in interpret()
127 System.arraycopy(data, index, mAid, 0, getValueLength()); in interpret()
147 if (mAid.length > 0) { in build()
162 stream.write(mAid.length); in build()
164 stream.write(mAid); in build()
178 return Arrays.equals(mAid, aid_ref_do.mAid); in equals()
186 return Arrays.equals(mAid, CARRIER_PRIVILEGE_AID); in isCarrierPrivilege()
/packages/apps/SecureElement/src/com/android/se/
DChannel.java54 private byte[] mAid = null; field in Channel
66 mAid = aid; in Channel()
162 } else if (mAid == null || mAid.length == 0) { in selectNext()
166 byte[] selectCommand = new byte[5 + mAid.length]; in selectNext()
171 selectCommand[4] = (byte) mAid.length; in selectNext()
172 System.arraycopy(mAid, 0, selectCommand, 5, mAid.length); in selectNext()
261 return (mAid != null); in hasSelectedAid()