Searched refs:mIns (Results 1 – 2 of 2) sorted by relevance
/packages/apps/SecureElement/src/com/android/se/security/ |
D | CommandApdu.java | 41 protected int mIns = 0x00; field in CommandApdu 51 mIns = ins; in CommandApdu() 61 mIns = ins; in CommandApdu() 70 mIns = ins; in CommandApdu() 81 mIns = ins; in CommandApdu() 164 apdu[index] = (byte) mIns; in toBytes() 187 apdu.mIns = mIns; in clone()
|
/packages/modules/Uwb/service/java/com/android/server/uwb/secure/iso7816/ |
D | CommandApdu.java | 60 private final byte mIns; // Instruction byte. field in CommandApdu 102 this.mIns = (byte) (ins & 0xff); in CommandApdu() 161 apdu[OFFSET_INS] = mIns; in getEncoded() 209 return mIns; in getIns() 274 printWriter.printf("Command : CLA=%02x, INS=%02x, P1=%02x, P2=%02x", mCla, mIns, mP1, mP2); in toString() 333 && this.mIns == other.mIns in equals() 346 return Objects.hashCode(mCla, mIns, mP1, mP2, Arrays.hashCode(mCdata), mLe, mExpected); in hashCode() 362 private final byte mIns; // Instruction byte. field in CommandApdu.Builder 378 this.mIns = (byte) ins; in Builder() 431 mIns, in build()
|