HomeSort by relevance Sort by last modified time
    Searched refs:StkAppService (Results 1 - 9 of 9) sorted by null

  /packages/apps/Stk/src/com/android/stk/
StkCmdReceiver.java 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);
59 int slot_id = intent.getIntExtra(StkAppService.SLOT_ID, 0);
61 args.putInt(StkAppService.OPCODE, op);
62 args.putInt(StkAppService.SLOT_ID, slot_id);
64 if (StkAppService.OP_CMD == op) {
65 args.putParcelable(StkAppService.CMD_MSG, intent
66 .getParcelableExtra(StkAppService.STK_CMD))
    [all...]
ToneDialog.java 57 sendResponse(StkAppService.RES_ID_DONE);
131 sendResponse(StkAppService.RES_ID_END_SESSION);
147 sendResponse(StkAppService.RES_ID_END_SESSION);
158 sendResponse(StkAppService.RES_ID_END_SESSION);
171 mSlotId = intent.getIntExtra(StkAppService.SLOT_ID, -1);
176 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);
177 args.putInt(StkAppService.SLOT_ID, mSlotId);
178 args.putInt(StkAppService.RES_ID, resId);
179 startService(new Intent(this, StkAppService.class).putExtras(args))
    [all...]
StkDialogActivity.java 46 private StkAppService appService = StkAppService.getInstance();
85 sendResponse(StkAppService.RES_ID_CONFIRM, true);
96 sendResponse(StkAppService.RES_ID_CONFIRM, false);
117 sendResponse(StkAppService.RES_ID_BACKWARD);
222 // if dialog activity is finished by stkappservice
226 sendResponse(StkAppService.RES_ID_CONFIRM, false);
264 if (StkAppService.getInstance() == null) {
273 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE)
    [all...]
BootCompletedReceiver.java 45 args.putInt(StkAppService.OPCODE, StkAppService.OP_BOOT_COMPLETED);
46 context.startService(new Intent(context, StkAppService.class)
StkInputActivity.java 79 private StkAppService appService = StkAppService.getInstance();
93 sendResponse(StkAppService.RES_ID_TIMEOUT);
130 sendResponse(StkAppService.RES_ID_INPUT, input, false);
220 //If the input activity is finished by stkappservice
225 sendResponse(StkAppService.RES_ID_END_SESSION);
243 sendResponse(StkAppService.RES_ID_BACKWARD, null, false);
259 if (StkAppService.getInstance() == null) {
260 CatLog.d(LOG_TAG, "StkAppService is null, Ignore response: id is " + resId);
268 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE)
    [all...]
StkMain.java 35 * StkAppService and finish.
98 args.putInt(StkAppService.OPCODE, StkAppService.OP_LAUNCH_APP);
99 args.putInt(StkAppService.SLOT_ID
101 startService(new Intent(this, StkAppService.class)
StkMenuActivity.java 65 private StkAppService appService = StkAppService.getInstance();
91 sendResponse(StkAppService.RES_ID_TIMEOUT);
150 sendResponse(StkAppService.RES_ID_MENU_SELECTION, item.id, false);
174 sendResponse(StkAppService.RES_ID_BACKWARD);
295 //isMenuPending: if input act is finish by stkappservice when OP_LAUNCH_APP again,
299 sendResponse(StkAppService.RES_ID_END_SESSION);
341 sendResponse(StkAppService.RES_ID_END_SESSION);
382 sendResponse(StkAppService.RES_ID_MENU_SELECTION, stkItem.id, true);
455 mSlotId = intent.getIntExtra(StkAppService.SLOT_ID, -1)
    [all...]
StkLauncherActivity.java 44 * StkAppService and finish.
169 StkAppService appService = StkAppService.getInstance();
207 args.putInt(StkAppService.OPCODE, StkAppService.OP_LAUNCH_APP);
208 args.putInt(StkAppService.SLOT_ID
210 startService(new Intent(this, StkAppService.class)
StkAppService.java 86 public class StkAppService extends Service implements Runnable {
150 static StkAppService sInstance = null;
281 CatLog.d(LOG_TAG, "StkAppService onStart intent is null so return");
287 CatLog.d(LOG_TAG, "StkAppService onStart args is null so return");
421 CatLog.d(LOG_TAG, "StkAppService, getMenu, sim id: " + slotId);
433 CatLog.d(LOG_TAG, "StkAppService, getMainMenu, sim id: " + slotId);
445 static StkAppService getInstance() {
601 // Uninstall STKAPP, Clear Idle text, Stop StkAppService
690 args.putInt(StkAppService.RES_ID, resId);
691 args.putBoolean(StkAppService.CONFIRMATION, confirm)
    [all...]

Completed in 270 milliseconds