OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StkAppService
(Results
1 - 8
of
8
) sorted by null
/packages/apps/Stk/src/com/android/stk/
StkLauncherActivity.java
25
*
StkAppService
and finish.
34
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_LAUNCH_APP);
35
startService(new Intent(this,
StkAppService
.class).putExtras(args));
StkCmdReceiver.java
45
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_CMD);
46
args.putParcelable(
StkAppService
.CMD_MSG, intent
48
context.startService(new Intent(context,
StkAppService
.class)
54
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_END_SESSION);
55
context.startService(new Intent(context,
StkAppService
.class)
BootCompletedReceiver.java
37
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_BOOT_COMPLETED);
38
context.startService(new Intent(context,
StkAppService
.class)
StkDialogActivity.java
46
sendResponse(
StkAppService
.RES_ID_TIMEOUT);
105
sendResponse(
StkAppService
.RES_ID_CONFIRM, true);
109
sendResponse(
StkAppService
.RES_ID_CONFIRM, false);
119
sendResponse(
StkAppService
.RES_ID_BACKWARD);
155
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_RESPONSE);
156
args.putInt(
StkAppService
.RES_ID, resId);
157
args.putBoolean(
StkAppService
.CONFIRMATION, confirmed);
158
startService(new Intent(this,
StkAppService
.class).putExtras(args));
ToneDialog.java
51
sendResponse(
StkAppService
.RES_ID_DONE);
116
sendResponse(
StkAppService
.RES_ID_END_SESSION);
133
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_RESPONSE);
134
args.putInt(
StkAppService
.RES_ID, resId);
135
startService(new Intent(this,
StkAppService
.class).putExtras(args));
StkMenuActivity.java
54
StkAppService
appService =
StkAppService
.getInstance();
69
sendResponse(
StkAppService
.RES_ID_TIMEOUT);
115
sendResponse(
StkAppService
.RES_ID_MENU_SELECTION, item.id, false);
134
sendResponse(
StkAppService
.RES_ID_BACKWARD);
220
sendResponse(
StkAppService
.RES_ID_END_SESSION);
231
sendResponse(
StkAppService
.RES_ID_MENU_SELECTION, stkItem.id, true);
326
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_RESPONSE);
327
args.putInt(
StkAppService
.RES_ID, resId)
[
all
...]
StkInputActivity.java
78
sendResponse(
StkAppService
.RES_ID_TIMEOUT);
106
sendResponse(
StkAppService
.RES_ID_INPUT, input, false);
176
sendResponse(
StkAppService
.RES_ID_BACKWARD, null, false);
189
args.putInt(
StkAppService
.OPCODE,
StkAppService
.OP_RESPONSE);
190
args.putInt(
StkAppService
.RES_ID, resId);
192
args.putString(
StkAppService
.INPUT, input);
194
args.putBoolean(
StkAppService
.HELP, help);
195
mContext.startService(new Intent(mContext,
StkAppService
.class)
222
sendResponse(
StkAppService
.RES_ID_END_SESSION)
[
all
...]
StkAppService.java
62
public class
StkAppService
extends Service implements Runnable {
80
static
StkAppService
sInstance = null;
234
static
StkAppService
getInstance() {
793
new Intent(mContext,
StkAppService
.class), 0);
[
all
...]
Completed in 50 milliseconds