Home | History | Annotate | Download | only in stk

Lines Matching refs:StkAppService

91     private StkAppService appService = StkAppService.getInstance();
105 sendResponse(StkAppService.RES_ID_TIMEOUT);
133 sendResponse(StkAppService.RES_ID_END_SESSION);
170 sendResponse(StkAppService.RES_ID_INPUT, input, false);
281 // If the input activity is finished by stkappservice
286 sendResponse(StkAppService.RES_ID_END_SESSION);
313 sendResponse(StkAppService.RES_ID_BACKWARD, null, false);
329 if (StkAppService.getInstance() == null) {
330 CatLog.d(LOG_TAG, "StkAppService is null, Ignore response: id is " + resId);
342 args.putInt(StkAppService.OPCODE, StkAppService.OP_RESPONSE);
343 args.putInt(StkAppService.SLOT_ID, mSlotId);
344 args.putInt(StkAppService.RES_ID, resId);
346 args.putString(StkAppService.INPUT, input);
348 args.putBoolean(StkAppService.HELP, help);
349 mContext.startService(new Intent(mContext, StkAppService.class)
394 sendResponse(StkAppService.RES_ID_END_SESSION);
400 sendResponse(StkAppService.RES_ID_INPUT, "", true);
546 mSlotId = intent.getIntExtra(StkAppService.SLOT_ID, -1);