Lines Matching refs:StkAppService
44 handleAction(context, intent, StkAppService.OP_CMD); in onReceive()
46 handleAction(context, intent, StkAppService.OP_END_SESSION); in onReceive()
48 handleAction(context, intent, StkAppService.OP_CARD_STATUS_CHANGED); in onReceive()
50 handleAction(context, intent, StkAppService.OP_ALPHA_NOTIFY); in onReceive()
56 int slot_id = intent.getIntExtra(StkAppService.SLOT_ID, 0); in handleAction()
58 args.putInt(StkAppService.OPCODE, op); in handleAction()
59 args.putInt(StkAppService.SLOT_ID, slot_id); in handleAction()
61 if (StkAppService.OP_CMD == op) { in handleAction()
62 args.putParcelable(StkAppService.CMD_MSG, intent in handleAction()
63 .getParcelableExtra(StkAppService.STK_CMD)); in handleAction()
64 } else if (StkAppService.OP_CARD_STATUS_CHANGED == op) { in handleAction()
68 && StkAppService.getInstance() == null) { in handleAction()
77 } else if (StkAppService.OP_ALPHA_NOTIFY == op) { in handleAction()
84 Intent toService = new Intent(context, StkAppService.class); in handleAction()