Lines Matching refs:command
115 public byte[] transmit(byte[] command) throws IOException { in transmit() argument
119 if (command == null) { in transmit()
130 CommandApduValidator.execute(command); in transmit()
132 if (((command[0] & (byte) 0x80) == 0) in transmit()
133 && ((command[0] & (byte) 0x60) != (byte) 0x20)) { in transmit()
135 if (command[1] == (byte) 0x70) { in transmit()
138 if ((command[1] == (byte) 0xA4) && (command[2] == (byte) 0x04)) { in transmit()
147 checkCommand(command); in transmit()
150 command[0] = setChannelToClassByte(command[0], mChannelNumber); in transmit()
151 return mTerminal.transmit(command); in transmit()
239 private void checkCommand(byte[] command) { in checkCommand() argument
243 mTerminal.getAccessControlEnforcer().checkCommand(this, command); in checkCommand()
315 public byte[] transmit(byte[] command) throws RemoteException { in transmit() argument
318 return Channel.this.transmit(command); in transmit()