Lines Matching refs:StkAppService
43 handleAction(context, intent, StkAppService.OP_CMD);
45 handleAction(context, intent, StkAppService.OP_END_SESSION);
47 handleAction(context, intent, StkAppService.OP_CARD_STATUS_CHANGED);
51 handleAction(context, intent, StkAppService.OP_ALPHA_NOTIFY);
57 int slot_id = intent.getIntExtra(StkAppService.SLOT_ID, 0);
59 args.putInt(StkAppService.OPCODE, op);
60 args.putInt(StkAppService.SLOT_ID, slot_id);
62 if (StkAppService.OP_CMD == op) {
63 args.putParcelable(StkAppService.CMD_MSG, intent
64 .getParcelableExtra(StkAppService.STK_CMD));
65 } else if (StkAppService.OP_CARD_STATUS_CHANGED == op) {
66 // If the Card is absent then check if the StkAppService is even
69 && StkAppService.getInstance() == null) {
78 } else if (StkAppService.OP_ALPHA_NOTIFY == op) {
85 Intent toService = new Intent(context, StkAppService.class);
92 args.putInt(StkAppService.OPCODE, StkAppService.OP_LOCALE_CHANGED);
93 context.startService(new Intent(context, StkAppService.class)