Home | History | Annotate | Download | only in phone

Lines Matching defs:command

163         public int channel, cla, command, p1, p2, p3;
166 public IccAPDUArgument(int channel, int cla, int command,
170 this.command = command;
317 iccArgument.channel, iccArgument.cla, iccArgument.command,
357 iccArgument.cla, iccArgument.command, iccArgument.p1, iccArgument.p2,
396 iccArgument.command, iccArgument.p1, iccArgument.p2, iccArgument.p3,
741 private void handleNullReturnEvent(Message msg, String command) {
749 loge(command + ": CommandException: " + ar.exception);
751 loge(command + ": Unknown exception");
761 * Posts the specified command to be executed on the main thread,
765 private Object sendRequest(int command, Object argument) {
766 return sendRequest(command, argument, null);
770 * Posts the specified command to be executed on the main thread,
774 private Object sendRequest(int command, Object argument, Integer subId) {
780 Message msg = mMainThreadHandler.obtainMessage(command, request);
798 * Posts the specified command to be executed on the main thread, and
802 private void sendRequestAsync(int command) {
803 mMainThreadHandler.sendEmptyMessage(command);
810 private void sendRequestAsync(int command, Object argument) {
812 Message msg = mMainThreadHandler.obtainMessage(command, request);
1981 int command, int p1, int p2, int p3, String data) {
1986 " cmd=" + command + " p1=" + p1 + " p2=" + p2 + " p3=" + p3 +
1995 new IccAPDUArgument(channel, cla, command, p1, p2, p3, data));
2008 public String iccTransmitApduBasicChannel(int cla, int command, int p1, int p2,
2013 log("iccTransmitApduBasicChannel: cla=" + cla + " cmd=" + command + " p1="
2018 new IccAPDUArgument(0, cla, command, p1, p2, p3, data));
2031 public byte[] iccExchangeSimIO(int fileID, int command, int p1, int p2, int p3,
2036 log("Exchange SIM_IO " + fileID + ":" + command + " " +
2042 new IccAPDUArgument(-1, fileID, command, p1, p2, p3, filePath));