Lines Matching refs:StkAppService
40 handleAction(context, intent, StkAppService.OP_CMD);
42 handleAction(context, intent, StkAppService.OP_END_SESSION);
44 handleAction(context, intent, StkAppService.OP_CARD_STATUS_CHANGED);
48 handleAction(context, intent, StkAppService.OP_ALPHA_NOTIFY);
56 int slot_id = intent.getIntExtra(StkAppService.SLOT_ID, 0);
58 args.putInt(StkAppService.OPCODE, op);
59 args.putInt(StkAppService.SLOT_ID, slot_id);
61 if (StkAppService.OP_CMD == op) {
62 args.putParcelable(StkAppService.CMD_MSG, intent
63 .getParcelableExtra(StkAppService.STK_CMD));
64 } else if (StkAppService.OP_CARD_STATUS_CHANGED == op) {
65 // If the Card is absent then check if the StkAppService is even
68 && StkAppService.getInstance() == null) {
77 } else if (StkAppService.OP_ALPHA_NOTIFY == op) {
84 Intent toService = new Intent(context, StkAppService.class);
91 args.putInt(StkAppService.OPCODE, StkAppService.OP_LOCALE_CHANGED);
92 context.startService(new Intent(context, StkAppService.class)
98 args.putInt(StkAppService.OPCODE, StkAppService.OP_IDLE_SCREEN);
99 context.startService(new Intent(context, StkAppService.class)