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
43
handleAction(context, intent,
StkAppService
.OP_CMD);
45
handleAction(context, intent,
StkAppService
.OP_END_SESSION);
47
handleAction(context, intent,
StkAppService
.OP_CARD_STATUS_CHANGED);
51
handleAction(context, intent,
StkAppService
.OP_ALPHA_NOTIFY);
57
int slot_id = intent.getIntExtra(
StkAppService
.SLOT_ID, 0);
59
args.putInt(
StkAppService
.OPCODE, op);
60
args.putInt(
StkAppService
.SLOT_ID, slot_id);
62
if (
StkAppService
.OP_CMD == op) {
63
args.putParcelable(
StkAppService
.CMD_MSG, intent
64
.getParcelableExtra(
StkAppService
.STK_CMD))
[
all
...]
StkDialogActivity.java
52
private
StkAppService
appService =
StkAppService
.getInstance();
93
sendResponse(
StkAppService
.RES_ID_CONFIRM, true);
104
sendResponse(
StkAppService
.RES_ID_CONFIRM, false);
114
sendResponse(
StkAppService
.RES_ID_BACKWARD);
266
// if dialog activity is finished by
stkappservice
271
sendResponse(
StkAppService
.RES_ID_CONFIRM, false);
327
if (
StkAppService
.getInstance() == null) {
336
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_RESPONSE)
[
all
...]
BootCompletedReceiver.java
45
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_BOOT_COMPLETED);
46
context.startService(new Intent(context,
StkAppService
.class)
StkMenuActivity.java
69
private
StkAppService
appService =
StkAppService
.getInstance();
100
sendResponse(
StkAppService
.RES_ID_TIMEOUT);
135
new IntentFilter(
StkAppService
.SESSION_ENDED));
164
sendResponse(
StkAppService
.RES_ID_MENU_SELECTION, item.id, false);
183
sendResponse(
StkAppService
.RES_ID_BACKWARD);
292
//isMenuPending: if input act is finish by
stkappservice
when OP_LAUNCH_APP again,
299
sendResponse(
StkAppService
.RES_ID_END_SESSION);
335
sendResponse(
StkAppService
.RES_ID_END_SESSION);
375
sendResponse(
StkAppService
.RES_ID_MENU_SELECTION, stkItem.id, true)
[
all
...]
ToneDialog.java
56
filter.addAction(
StkAppService
.FINISH_TONE_ACTIVITY_ACTION);
112
// Intent received from
StkAppService
to finish ToneDialog activity,
114
if (intent.getAction().equals(
StkAppService
.FINISH_TONE_ACTIVITY_ACTION)) {
126
mSlotId = intent.getIntExtra(
StkAppService
.SLOT_ID, -1);
129
// Send stop playing tone to
StkAppService
, when user presses back key.
132
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_STOP_TONE_USER);
133
args.putInt(
StkAppService
.SLOT_ID, mSlotId);
134
startService(new Intent(this,
StkAppService
.class).putExtras(args));
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)
StkInputActivity.java
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)
[
all
...]
StkLauncherActivity.java
43
*
StkAppService
and finish.
167
StkAppService
appService =
StkAppService
.getInstance();
222
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_LAUNCH_APP);
223
args.putInt(
StkAppService
.SLOT_ID
225
startService(new Intent(this,
StkAppService
.class)
StkAppService.java
108
public class
StkAppService
extends Service implements Runnable {
174
static
StkAppService
sInstance = null;
326
CatLog.d(LOG_TAG, "
StkAppService
onStart intent is null so return");
332
CatLog.d(LOG_TAG, "
StkAppService
onStart args is null so return");
476
CatLog.d(LOG_TAG, "
StkAppService
, getMenu, sim id: " + slotId);
488
CatLog.d(LOG_TAG, "
StkAppService
, getMainMenu, sim id: " + slotId);
521
static
StkAppService
getInstance() {
692
// Uninstall STKAPP, Clear Idle text, Stop
StkAppService
803
args.putInt(
StkAppService
.RES_ID, resId);
804
args.putBoolean(
StkAppService
.CONFIRMATION, confirm)
[
all
...]
Completed in 103 milliseconds