Lines Matching defs:args
285 Bundle args = intent.getExtras();
286 if (args == null) {
287 CatLog.d(LOG_TAG, "StkAppService onStart args is null so return");
291 int op = args.getInt(OPCODE);
295 slotId = args.getInt(SLOT_ID);
330 msg.obj = args.getParcelable(CMD_MSG);
337 msg.obj = args;
595 private void handleCardStatusChangeAndIccRefresh(Bundle args, int slotId) {
596 boolean cardStatus = args.getBoolean(AppInterface.CARD_STATUS);
610 state.refreshResult = args.getInt(AppInterface.REFRESH_RESULT);
689 Bundle args = new Bundle();
690 args.putInt(StkAppService.RES_ID, resId);
691 args.putBoolean(StkAppService.CONFIRMATION, confirm);
692 msg.obj = args;
1031 private void handleCmdResponse(Bundle args, int slotId) {
1050 boolean helpRequired = args.getBoolean(HELP, false);
1053 switch(args.getInt(RES_ID)) {
1057 int menuSelection = args.getInt(MENU_SELECTION);
1074 String input = args.getString(INPUT);
1092 confirmed = args.getBoolean(CONFIRMATION);
1147 int choice = args.getInt(CHOICE);
1388 private void checkForSetupEvent(int event, Bundle args, int slotId) {
1658 Bundle args = new Bundle();
1659 args.putInt(RES_ID, RES_ID_CHOICE);
1660 args.putInt(CHOICE, YES);
1664 message.obj = args;
1671 Bundle args = new Bundle();
1672 args.putInt(RES_ID, RES_ID_CHOICE);
1673 args.putInt(CHOICE, NO);
1677 message.obj = args;
1771 private void handleAlphaNotify(Bundle args) {
1772 String alphaString = args.getString(AppInterface.ALPHA_STRING);