Searched refs:StkAppService (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Stk/src/com/android/stk/
H A DStkCmdReceiver.java40 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
[all...]
H A DToneDialog.java55 sendResponse(StkAppService.RES_ID_DONE);
124 sendResponse(StkAppService.RES_ID_END_SESSION);
140 sendResponse(StkAppService.RES_ID_END_SESSION);
151 sendResponse(StkAppService.RES_ID_END_SESSION);
164 mSlotId = intent.getIntExtra(StkAppService.SLOT_ID, -1);
169 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);
170 args.putInt(StkAppService.SLOT_ID, mSlotId);
171 args.putInt(StkAppService.RES_ID, resId);
172 startService(new Intent(this, StkAppService
[all...]
H A DStkDialogActivity.java49 private StkAppService appService = StkAppService.getInstance();
100 sendResponse(StkAppService.RES_ID_CONFIRM, true);
105 sendResponse(StkAppService.RES_ID_CONFIRM, false);
117 sendResponse(StkAppService.RES_ID_BACKWARD);
232 sendResponse(StkAppService.RES_ID_CONFIRM, false);
270 if (StkAppService.getInstance() == null) {
279 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);
280 args.putInt(StkAppService
[all...]
H A DBootCompletedReceiver.java42 args.putInt(StkAppService.OPCODE, StkAppService.OP_BOOT_COMPLETED);
43 context.startService(new Intent(context, StkAppService.class)
H A DStkInputActivity.java77 private StkAppService appService = StkAppService.getInstance();
91 sendResponse(StkAppService.RES_ID_TIMEOUT);
128 sendResponse(StkAppService.RES_ID_INPUT, input, false);
209 sendResponse(StkAppService.RES_ID_END_SESSION);
227 sendResponse(StkAppService.RES_ID_BACKWARD, null, false);
243 if (StkAppService.getInstance() == null) {
244 CatLog.d(LOG_TAG, "StkAppService is null, Ignore response: id is " + resId);
252 args.putInt(StkAppService.OPCODE, StkAppService
[all...]
H A DStkMenuActivity.java64 private StkAppService appService = StkAppService.getInstance();
90 sendResponse(StkAppService.RES_ID_TIMEOUT);
137 sendResponse(StkAppService.RES_ID_MENU_SELECTION, item.id, false);
159 sendResponse(StkAppService.RES_ID_BACKWARD);
279 sendResponse(StkAppService.RES_ID_END_SESSION);
327 sendResponse(StkAppService.RES_ID_END_SESSION);
340 sendResponse(StkAppService.RES_ID_MENU_SELECTION, stkItem.id, true);
377 sendResponse(StkAppService.RES_ID_MENU_SELECTION, stkItem.id, true);
450 mSlotId = intent.getIntExtra(StkAppService
[all...]
H A DStkMain.java35 * 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)
H A DStkLauncherActivity.java43 * StkAppService and finish.
199 args.putInt(StkAppService.OPCODE, StkAppService.OP_LAUNCH_APP);
200 args.putInt(StkAppService.SLOT_ID
202 startService(new Intent(this, StkAppService.class)
H A DStkAppService.java100 public class StkAppService extends Service implements Runnable { class in inherits:Service,Runnable
164 static StkAppService sInstance = null;
292 CatLog.d(LOG_TAG, "StkAppService onStart intent is null so return");
298 CatLog.d(LOG_TAG, "StkAppService onStart args is null so return");
431 CatLog.d(LOG_TAG, "StkAppService, getMenu, sim id: " + slotId);
443 CatLog.d(LOG_TAG, "StkAppService, getMainMenu, sim id: " + slotId);
455 static StkAppService getInstance() {
609 // Uninstall STKAPP, Clear Idle text, Stop StkAppService
698 args.putInt(StkAppService.RES_ID, resId);
699 args.putBoolean(StkAppService
[all...]

Completed in 105 milliseconds