blob: 3913ed5da0a24bfcc496d7fc7cf07350e1bba0c4 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.app;
18
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019import android.content.ComponentName;
20import android.content.ContentProviderNative;
21import android.content.IContentProvider;
22import android.content.Intent;
23import android.content.IntentFilter;
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -070024import android.content.IIntentSender;
25import android.content.IIntentReceiver;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070026import android.content.IntentSender;
Christopher Tate181fafa2009-05-14 11:12:14 -070027import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.content.pm.ConfigurationInfo;
29import android.content.pm.IPackageDataObserver;
30import android.content.pm.ProviderInfo;
31import android.content.res.Configuration;
32import android.graphics.Bitmap;
33import android.net.Uri;
Dianne Hackborn3025ef32009-08-31 21:31:47 -070034import android.os.Debug;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.os.RemoteException;
36import android.os.IBinder;
37import android.os.IInterface;
38import android.os.Parcel;
39import android.os.Parcelable;
40import android.os.ParcelFileDescriptor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041import android.os.Bundle;
42
43import java.util.List;
44
45/**
46 * System private API for talking with the activity manager service. This
47 * provides calls from the application back to the activity manager.
48 *
49 * {@hide}
50 */
51public interface IActivityManager extends IInterface {
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070052 /**
53 * Returned by startActivity() if the start request was canceled because
54 * app switches are temporarily canceled to ensure the user's last request
55 * (such as pressing home) is performed.
56 */
57 public static final int START_SWITCHES_CANCELED = 4;
58 /**
59 * Returned by startActivity() if an activity wasn't really started, but
60 * the given Intent was given to the existing top activity.
61 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062 public static final int START_DELIVERED_TO_TOP = 3;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070063 /**
64 * Returned by startActivity() if an activity wasn't really started, but
65 * a task was simply brought to the foreground.
66 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067 public static final int START_TASK_TO_FRONT = 2;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070068 /**
69 * Returned by startActivity() if the caller asked that the Intent not
70 * be executed if it is the recipient, and that is indeed the case.
71 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072 public static final int START_RETURN_INTENT_TO_CALLER = 1;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070073 /**
74 * Activity was started successfully as normal.
75 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076 public static final int START_SUCCESS = 0;
77 public static final int START_INTENT_NOT_RESOLVED = -1;
78 public static final int START_CLASS_NOT_FOUND = -2;
79 public static final int START_FORWARD_AND_REQUEST_CONFLICT = -3;
80 public static final int START_PERMISSION_DENIED = -4;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070081 public static final int START_NOT_ACTIVITY = -5;
82 public static final int START_CANCELED = -6;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080083 public int startActivity(IApplicationThread caller,
84 Intent intent, String resolvedType, Uri[] grantedUriPermissions,
85 int grantedMode, IBinder resultTo, String resultWho, int requestCode,
86 boolean onlyIfNeeded, boolean debug) throws RemoteException;
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -080087 public WaitResult startActivityAndWait(IApplicationThread caller,
88 Intent intent, String resolvedType, Uri[] grantedUriPermissions,
89 int grantedMode, IBinder resultTo, String resultWho, int requestCode,
90 boolean onlyIfNeeded, boolean debug) throws RemoteException;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070091 public int startActivityIntentSender(IApplicationThread caller,
92 IntentSender intent, Intent fillInIntent, String resolvedType,
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070093 IBinder resultTo, String resultWho, int requestCode,
94 int flagsMask, int flagsValues) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095 public boolean startNextMatchingActivity(IBinder callingActivity,
96 Intent intent) throws RemoteException;
97 public boolean finishActivity(IBinder token, int code, Intent data)
98 throws RemoteException;
99 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
100 public Intent registerReceiver(IApplicationThread caller,
101 IIntentReceiver receiver, IntentFilter filter,
102 String requiredPermission) throws RemoteException;
103 public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
104 public static final int BROADCAST_SUCCESS = 0;
105 public static final int BROADCAST_STICKY_CANT_HAVE_PERMISSION = -1;
106 public int broadcastIntent(IApplicationThread caller, Intent intent,
107 String resolvedType, IIntentReceiver resultTo, int resultCode,
108 String resultData, Bundle map, String requiredPermission,
109 boolean serialized, boolean sticky) throws RemoteException;
110 public void unbroadcastIntent(IApplicationThread caller, Intent intent) throws RemoteException;
111 /* oneway */
112 public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map, boolean abortBroadcast) throws RemoteException;
113 public void setPersistent(IBinder token, boolean isPersistent) throws RemoteException;
114 public void attachApplication(IApplicationThread app) throws RemoteException;
115 /* oneway */
Dianne Hackborne88846e2009-09-30 21:34:25 -0700116 public void activityIdle(IBinder token, Configuration config) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117 public void activityPaused(IBinder token, Bundle state) throws RemoteException;
118 /* oneway */
119 public void activityStopped(IBinder token,
120 Bitmap thumbnail, CharSequence description) throws RemoteException;
121 /* oneway */
122 public void activityDestroyed(IBinder token) throws RemoteException;
123 public String getCallingPackage(IBinder token) throws RemoteException;
124 public ComponentName getCallingActivity(IBinder token) throws RemoteException;
125 public List getTasks(int maxNum, int flags,
126 IThumbnailReceiver receiver) throws RemoteException;
127 public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
128 int flags) throws RemoteException;
129 public List getServices(int maxNum, int flags) throws RemoteException;
130 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
131 throws RemoteException;
132 public void moveTaskToFront(int task) throws RemoteException;
133 public void moveTaskToBack(int task) throws RemoteException;
134 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
135 public void moveTaskBackwards(int task) throws RemoteException;
136 public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
137 public void finishOtherInstances(IBinder token, ComponentName className) throws RemoteException;
138 /* oneway */
139 public void reportThumbnail(IBinder token,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700140 Bitmap thumbnail, CharSequence description) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141 public ContentProviderHolder getContentProvider(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700142 String name) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143 public void removeContentProvider(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700144 String name) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 public void publishContentProviders(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700146 List<ContentProviderHolder> providers) throws RemoteException;
147 public PendingIntent getRunningServiceControlPanel(ComponentName service)
148 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 public ComponentName startService(IApplicationThread caller, Intent service,
150 String resolvedType) throws RemoteException;
151 public int stopService(IApplicationThread caller, Intent service,
152 String resolvedType) throws RemoteException;
153 public boolean stopServiceToken(ComponentName className, IBinder token,
154 int startId) throws RemoteException;
155 public void setServiceForeground(ComponentName className, IBinder token,
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700156 int id, Notification notification, boolean keepNotification) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 public int bindService(IApplicationThread caller, IBinder token,
158 Intent service, String resolvedType,
159 IServiceConnection connection, int flags) throws RemoteException;
160 public boolean unbindService(IServiceConnection connection) throws RemoteException;
161 public void publishService(IBinder token,
162 Intent intent, IBinder service) throws RemoteException;
163 public void unbindFinished(IBinder token, Intent service,
164 boolean doRebind) throws RemoteException;
165 /* oneway */
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700166 public void serviceDoneExecuting(IBinder token, int type, int startId,
167 int res) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168 public IBinder peekService(Intent service, String resolvedType) throws RemoteException;
169
Christopher Tate181fafa2009-05-14 11:12:14 -0700170 public boolean bindBackupAgent(ApplicationInfo appInfo, int backupRestoreMode)
171 throws RemoteException;
172 public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException;
173 public void unbindBackupAgent(ApplicationInfo appInfo) throws RemoteException;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700174 public void killApplicationProcess(String processName, int uid) throws RemoteException;
Christopher Tate181fafa2009-05-14 11:12:14 -0700175
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176 public boolean startInstrumentation(ComponentName className, String profileFile,
177 int flags, Bundle arguments, IInstrumentationWatcher watcher)
178 throws RemoteException;
179 public void finishInstrumentation(IApplicationThread target,
180 int resultCode, Bundle results) throws RemoteException;
181
182 public Configuration getConfiguration() throws RemoteException;
183 public void updateConfiguration(Configuration values) throws RemoteException;
184 public void setRequestedOrientation(IBinder token,
185 int requestedOrientation) throws RemoteException;
186 public int getRequestedOrientation(IBinder token) throws RemoteException;
187
188 public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
189 public String getPackageForToken(IBinder token) throws RemoteException;
190
191 public static final int INTENT_SENDER_BROADCAST = 1;
192 public static final int INTENT_SENDER_ACTIVITY = 2;
193 public static final int INTENT_SENDER_ACTIVITY_RESULT = 3;
194 public static final int INTENT_SENDER_SERVICE = 4;
195 public IIntentSender getIntentSender(int type,
196 String packageName, IBinder token, String resultWho,
197 int requestCode, Intent intent, String resolvedType, int flags) throws RemoteException;
198 public void cancelIntentSender(IIntentSender sender) throws RemoteException;
199 public boolean clearApplicationUserData(final String packageName,
200 final IPackageDataObserver observer) throws RemoteException;
201 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
202
203 public void setProcessLimit(int max) throws RemoteException;
204 public int getProcessLimit() throws RemoteException;
205
206 public void setProcessForeground(IBinder token, int pid, boolean isForeground) throws RemoteException;
207
208 public int checkPermission(String permission, int pid, int uid)
209 throws RemoteException;
210
211 public int checkUriPermission(Uri uri, int pid, int uid, int mode)
212 throws RemoteException;
213 public void grantUriPermission(IApplicationThread caller, String targetPkg,
214 Uri uri, int mode) throws RemoteException;
215 public void revokeUriPermission(IApplicationThread caller, Uri uri,
216 int mode) throws RemoteException;
217
218 public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
219 throws RemoteException;
220
221 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
222
Dianne Hackborn03abb812010-01-04 18:43:19 -0800223 public void killBackgroundProcesses(final String packageName) throws RemoteException;
224 public void forceStopPackage(final String packageName) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800225
226 // Note: probably don't want to allow applications access to these.
227 public void goingToSleep() throws RemoteException;
228 public void wakingUp() throws RemoteException;
229
230 public void unhandledBack() throws RemoteException;
231 public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException;
232 public void setDebugApp(
233 String packageName, boolean waitForDebugger, boolean persistent)
234 throws RemoteException;
235 public void setAlwaysFinish(boolean enabled) throws RemoteException;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700236 public void setActivityController(IActivityController watcher)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800237 throws RemoteException;
238
239 public void enterSafeMode() throws RemoteException;
240
241 public void noteWakeupAlarm(IIntentSender sender) throws RemoteException;
242
243 public boolean killPidsForMemory(int[] pids) throws RemoteException;
244
245 public void reportPss(IApplicationThread caller, int pss) throws RemoteException;
246
247 // Special low-level communication with activity manager.
248 public void startRunning(String pkg, String cls, String action,
249 String data) throws RemoteException;
Dan Egnor60d87622009-12-16 16:32:58 -0800250 public void handleApplicationCrash(IBinder app,
251 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
252 public boolean handleApplicationWtf(IBinder app, String tag,
Dan Egnorb7f03672009-12-09 16:22:32 -0800253 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800254
255 /*
256 * This will deliver the specified signal to all the persistent processes. Currently only
257 * SIGUSR1 is delivered. All others are ignored.
258 */
259 public void signalPersistentProcesses(int signal) throws RemoteException;
260 // Retrieve running application processes in the system
261 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
262 throws RemoteException;
263 // Get device configuration
264 public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
265
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800266 // Turn on/off profiling in a particular process.
267 public boolean profileControl(String process, boolean start,
Dianne Hackborn9c8dd552009-06-23 19:22:52 -0700268 String path, ParcelFileDescriptor fd) throws RemoteException;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800269
Dianne Hackborn55280a92009-05-07 15:53:46 -0700270 public boolean shutdown(int timeout) throws RemoteException;
271
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700272 public void stopAppSwitches() throws RemoteException;
273 public void resumeAppSwitches() throws RemoteException;
274
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700275 public void registerActivityWatcher(IActivityWatcher watcher)
276 throws RemoteException;
277 public void unregisterActivityWatcher(IActivityWatcher watcher)
278 throws RemoteException;
279
Dianne Hackborn2d91af02009-07-16 13:34:33 -0700280 public int startActivityInPackage(int uid,
281 Intent intent, String resolvedType, IBinder resultTo,
282 String resultWho, int requestCode, boolean onlyIfNeeded)
283 throws RemoteException;
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -0700284
285 public void killApplicationWithUid(String pkg, int uid) throws RemoteException;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700286
287 public void closeSystemDialogs(String reason) throws RemoteException;
288
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -0700289 public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids)
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700290 throws RemoteException;
291
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700292 public void overridePendingTransition(IBinder token, String packageName,
293 int enterAnim, int exitAnim) throws RemoteException;
294
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800295 public boolean isUserAMonkey() throws RemoteException;
296
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 /*
298 * Private non-Binder interfaces
299 */
300 /* package */ boolean testIsSystemReady();
301
302 /** Information you can retrieve about a particular application. */
303 public static class ContentProviderHolder implements Parcelable {
304 public final ProviderInfo info;
305 public final String permissionFailure;
306 public IContentProvider provider;
307 public boolean noReleaseNeeded;
308
309 public ContentProviderHolder(ProviderInfo _info) {
310 info = _info;
311 permissionFailure = null;
312 }
313
314 public ContentProviderHolder(ProviderInfo _info,
315 String _permissionFailure) {
316 info = _info;
317 permissionFailure = _permissionFailure;
318 }
319
320 public int describeContents() {
321 return 0;
322 }
323
324 public void writeToParcel(Parcel dest, int flags) {
325 info.writeToParcel(dest, 0);
326 dest.writeString(permissionFailure);
327 if (provider != null) {
328 dest.writeStrongBinder(provider.asBinder());
329 } else {
330 dest.writeStrongBinder(null);
331 }
332 dest.writeInt(noReleaseNeeded ? 1:0);
333 }
334
335 public static final Parcelable.Creator<ContentProviderHolder> CREATOR
336 = new Parcelable.Creator<ContentProviderHolder>() {
337 public ContentProviderHolder createFromParcel(Parcel source) {
338 return new ContentProviderHolder(source);
339 }
340
341 public ContentProviderHolder[] newArray(int size) {
342 return new ContentProviderHolder[size];
343 }
344 };
345
346 private ContentProviderHolder(Parcel source) {
347 info = ProviderInfo.CREATOR.createFromParcel(source);
348 permissionFailure = source.readString();
349 provider = ContentProviderNative.asInterface(
350 source.readStrongBinder());
351 noReleaseNeeded = source.readInt() != 0;
352 }
353 };
354
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800355 /** Information returned after waiting for an activity start. */
356 public static class WaitResult implements Parcelable {
357 public int result;
358 public boolean timeout;
359 public ComponentName who;
360 public long thisTime;
361 public long totalTime;
362
363 public WaitResult() {
364 }
365
366 public int describeContents() {
367 return 0;
368 }
369
370 public void writeToParcel(Parcel dest, int flags) {
371 dest.writeInt(result);
372 dest.writeInt(timeout ? 1 : 0);
373 ComponentName.writeToParcel(who, dest);
374 dest.writeLong(thisTime);
375 dest.writeLong(totalTime);
376 }
377
378 public static final Parcelable.Creator<WaitResult> CREATOR
379 = new Parcelable.Creator<WaitResult>() {
380 public WaitResult createFromParcel(Parcel source) {
381 return new WaitResult(source);
382 }
383
384 public WaitResult[] newArray(int size) {
385 return new WaitResult[size];
386 }
387 };
388
389 private WaitResult(Parcel source) {
390 result = source.readInt();
391 timeout = source.readInt() != 0;
392 who = ComponentName.readFromParcel(source);
393 thisTime = source.readLong();
394 totalTime = source.readLong();
395 }
396 };
397
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800398 String descriptor = "android.app.IActivityManager";
399
400 // Please keep these transaction codes the same -- they are also
401 // sent by C++ code.
402 int START_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION;
Dan Egnor60d87622009-12-16 16:32:58 -0800403 int HANDLE_APPLICATION_CRASH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800404 int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
405 int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
406 int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
407
408 // Remaining non-native transaction codes.
409 int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
410 int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
411 int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
412 int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
413 int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
414 int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
415 int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
416 int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
417 int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
418 int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
419 int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
420 int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
421 int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
422 int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
423 int MOVE_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+24;
424 int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
425 int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
426 int REPORT_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+27;
427 int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
428 int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
429 int SET_PERSISTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+30;
430 int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700431 int GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800432 int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
433 int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
434 int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
435 int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
436 int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
437 int FINISH_OTHER_INSTANCES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+38;
438 int GOING_TO_SLEEP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+39;
439 int WAKING_UP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+40;
440 int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
441 int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
442 int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
443 int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
444 int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
445 int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
446 int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
447 int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
448 int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
449 int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
450 int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
451 int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
452 int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
453 int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
454 int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700455 int SET_ACTIVITY_CONTROLLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800456 int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
457 int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
458 int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
459 int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
460 int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
461 int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
462 int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
463 int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
464 int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
465 int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
466 int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
467 int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
468 int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
469 int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
470 int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
471 int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
472 int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
473 int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
474 int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
475 int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
476 int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800477 int FORCE_STOP_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800478 int KILL_PIDS_FOR_MEMORY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
479 int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
480 int REPORT_PSS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+81;
481 int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
482 int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
483 int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800484 int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
Dianne Hackborn55280a92009-05-07 15:53:46 -0700485 int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700486 int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
487 int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
Christopher Tate181fafa2009-05-14 11:12:14 -0700488 int START_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+89;
489 int BACKUP_AGENT_CREATED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+90;
490 int UNBIND_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+91;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700491 int REGISTER_ACTIVITY_WATCHER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+92;
492 int UNREGISTER_ACTIVITY_WATCHER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+93;
Dianne Hackborn2d91af02009-07-16 13:34:33 -0700493 int START_ACTIVITY_IN_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+94;
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -0700494 int KILL_APPLICATION_WITH_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+95;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700495 int CLOSE_SYSTEM_DIALOGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+96;
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700496 int GET_PROCESS_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+97;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700497 int KILL_APPLICATION_PROCESS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+98;
Dianne Hackbornfa82f222009-09-17 15:14:12 -0700498 int START_ACTIVITY_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+99;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700499 int OVERRIDE_PENDING_TRANSITION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+100;
Dan Egnor60d87622009-12-16 16:32:58 -0800500 int HANDLE_APPLICATION_WTF_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+101;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800501 int KILL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+102;
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800502 int IS_USER_A_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+103;
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800503 int START_ACTIVITY_AND_WAIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+104;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800504}