OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StkAppService
(Results
1 - 9
of
9
) sorted by null
/packages/apps/Stk/src/com/android/stk/
StkCmdReceiver.java
40
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
.STK_CMD))
[
all
...]
ToneDialog.java
55
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
.class).putExtras(args))
[
all
...]
StkDialogActivity.java
49
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);
228
// if dialog activity is finished by
stkappservice
232
sendResponse(
StkAppService
.RES_ID_CONFIRM, false);
270
if (
StkAppService
.getInstance() == null) {
279
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_RESPONSE)
[
all
...]
BootCompletedReceiver.java
42
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_BOOT_COMPLETED);
43
context.startService(new Intent(context,
StkAppService
.class)
StkInputActivity.java
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)
[
all
...]
StkMenuActivity.java
64
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);
275
//isMenuPending: if input act is finish by
stkappservice
when OP_LAUNCH_APP again,
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)
[
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)
StkLauncherActivity.java
43
*
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)
StkAppService.java
98
public class
StkAppService
extends Service implements Runnable {
162
static
StkAppService
sInstance = null;
290
CatLog.d(LOG_TAG, "
StkAppService
onStart intent is null so return");
296
CatLog.d(LOG_TAG, "
StkAppService
onStart args is null so return");
429
CatLog.d(LOG_TAG, "
StkAppService
, getMenu, sim id: " + slotId);
441
CatLog.d(LOG_TAG, "
StkAppService
, getMainMenu, sim id: " + slotId);
453
static
StkAppService
getInstance() {
607
// Uninstall STKAPP, Clear Idle text, Stop
StkAppService
696
args.putInt(
StkAppService
.RES_ID, resId);
697
args.putBoolean(
StkAppService
.CONFIRMATION, confirm)
[
all
...]
Completed in 217 milliseconds