Lines Matching refs:StkAppService
43 handleAction(context, intent, StkAppService.OP_CMD); in onReceive()
45 handleAction(context, intent, StkAppService.OP_END_SESSION); in onReceive()
47 handleAction(context, intent, StkAppService.OP_CARD_STATUS_CHANGED); in onReceive()
49 handleAction(context, intent, StkAppService.OP_ALPHA_NOTIFY); in onReceive()
55 int slot_id = intent.getIntExtra(StkAppService.SLOT_ID, 0); in handleAction()
57 args.putInt(StkAppService.OPCODE, op); in handleAction()
58 args.putInt(StkAppService.SLOT_ID, slot_id); in handleAction()
60 if (StkAppService.OP_CMD == op) { in handleAction()
61 args.putParcelable(StkAppService.CMD_MSG, intent in handleAction()
62 .getParcelableExtra(StkAppService.STK_CMD)); in handleAction()
63 } else if (StkAppService.OP_CARD_STATUS_CHANGED == op) { in handleAction()
67 && StkAppService.getInstance() == null) { in handleAction()
76 } else if (StkAppService.OP_ALPHA_NOTIFY == op) { in handleAction()
83 Intent toService = new Intent(context, StkAppService.class); in handleAction()