Lines Matching refs:StkAppService
45 handleAction(context, intent, StkAppService.OP_CMD); in onReceive()
47 handleAction(context, intent, StkAppService.OP_END_SESSION); in onReceive()
49 handleAction(context, intent, StkAppService.OP_CARD_STATUS_CHANGED); in onReceive()
51 handleAction(context, intent, StkAppService.OP_ALPHA_NOTIFY); in onReceive()
57 int slot_id = intent.getIntExtra(StkAppService.SLOT_ID, 0); in handleAction()
59 args.putInt(StkAppService.OPCODE, op); in handleAction()
60 args.putInt(StkAppService.SLOT_ID, slot_id); in handleAction()
62 if (StkAppService.OP_CMD == op) { in handleAction()
63 args.putParcelable(StkAppService.CMD_MSG, intent in handleAction()
64 .getParcelableExtra(StkAppService.STK_CMD)); in handleAction()
65 } else if (StkAppService.OP_CARD_STATUS_CHANGED == op) { in handleAction()
69 && StkAppService.getInstance() == null) { in handleAction()
78 } else if (StkAppService.OP_ALPHA_NOTIFY == op) { in handleAction()
85 Intent toService = new Intent(context, StkAppService.class); in handleAction()