Home | History | Annotate | Download | only in stk

Lines Matching refs:StkAppService

77     private StkAppService appService = StkAppService.getInstance();
91 sendResponse(StkAppService.RES_ID_TIMEOUT);
128 sendResponse(StkAppService.RES_ID_INPUT, input, false);
204 //If the input activity is finished by stkappservice
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.OP_RESPONSE);
253 args.putInt(StkAppService.SLOT_ID, mSlotId);
254 args.putInt(StkAppService.RES_ID, resId);
256 args.putString(StkAppService.INPUT, input);
258 args.putBoolean(StkAppService.HELP, help);
259 mContext.startService(new Intent(mContext, StkAppService.class)
292 sendResponse(StkAppService.RES_ID_END_SESSION);
298 sendResponse(StkAppService.RES_ID_INPUT, "", true);
423 mSlotId = intent.getIntExtra(StkAppService.SLOT_ID, -1);