blob: 3a86ead0f4a1c8ef339d2e5d03b7c18d97c9c585 [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 Hackborn2ccda4d2010-03-22 21:49:15 -070091 public int startActivityWithConfig(IApplicationThread caller,
92 Intent intent, String resolvedType, Uri[] grantedUriPermissions,
93 int grantedMode, IBinder resultTo, String resultWho, int requestCode,
94 boolean onlyIfNeeded, boolean debug, Configuration newConfig) throws RemoteException;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070095 public int startActivityIntentSender(IApplicationThread caller,
96 IntentSender intent, Intent fillInIntent, String resolvedType,
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070097 IBinder resultTo, String resultWho, int requestCode,
98 int flagsMask, int flagsValues) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099 public boolean startNextMatchingActivity(IBinder callingActivity,
100 Intent intent) throws RemoteException;
101 public boolean finishActivity(IBinder token, int code, Intent data)
102 throws RemoteException;
103 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
Dianne Hackborn061d58a2010-03-12 15:07:06 -0800104 public boolean willActivityBeVisible(IBinder token) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105 public Intent registerReceiver(IApplicationThread caller,
106 IIntentReceiver receiver, IntentFilter filter,
107 String requiredPermission) throws RemoteException;
108 public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
109 public static final int BROADCAST_SUCCESS = 0;
110 public static final int BROADCAST_STICKY_CANT_HAVE_PERMISSION = -1;
111 public int broadcastIntent(IApplicationThread caller, Intent intent,
112 String resolvedType, IIntentReceiver resultTo, int resultCode,
113 String resultData, Bundle map, String requiredPermission,
114 boolean serialized, boolean sticky) throws RemoteException;
115 public void unbroadcastIntent(IApplicationThread caller, Intent intent) throws RemoteException;
116 /* oneway */
117 public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map, boolean abortBroadcast) throws RemoteException;
118 public void setPersistent(IBinder token, boolean isPersistent) throws RemoteException;
119 public void attachApplication(IApplicationThread app) throws RemoteException;
120 /* oneway */
Dianne Hackborne88846e2009-09-30 21:34:25 -0700121 public void activityIdle(IBinder token, Configuration config) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122 public void activityPaused(IBinder token, Bundle state) throws RemoteException;
123 /* oneway */
124 public void activityStopped(IBinder token,
125 Bitmap thumbnail, CharSequence description) throws RemoteException;
126 /* oneway */
127 public void activityDestroyed(IBinder token) throws RemoteException;
128 public String getCallingPackage(IBinder token) throws RemoteException;
129 public ComponentName getCallingActivity(IBinder token) throws RemoteException;
130 public List getTasks(int maxNum, int flags,
131 IThumbnailReceiver receiver) throws RemoteException;
132 public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
133 int flags) throws RemoteException;
134 public List getServices(int maxNum, int flags) throws RemoteException;
135 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
136 throws RemoteException;
137 public void moveTaskToFront(int task) throws RemoteException;
138 public void moveTaskToBack(int task) throws RemoteException;
139 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
140 public void moveTaskBackwards(int task) throws RemoteException;
141 public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
142 public void finishOtherInstances(IBinder token, ComponentName className) throws RemoteException;
143 /* oneway */
144 public void reportThumbnail(IBinder token,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700145 Bitmap thumbnail, CharSequence description) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800146 public ContentProviderHolder getContentProvider(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700147 String name) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 public void removeContentProvider(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700149 String name) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800150 public void publishContentProviders(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700151 List<ContentProviderHolder> providers) throws RemoteException;
152 public PendingIntent getRunningServiceControlPanel(ComponentName service)
153 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 public ComponentName startService(IApplicationThread caller, Intent service,
155 String resolvedType) throws RemoteException;
156 public int stopService(IApplicationThread caller, Intent service,
157 String resolvedType) throws RemoteException;
158 public boolean stopServiceToken(ComponentName className, IBinder token,
159 int startId) throws RemoteException;
160 public void setServiceForeground(ComponentName className, IBinder token,
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700161 int id, Notification notification, boolean keepNotification) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 public int bindService(IApplicationThread caller, IBinder token,
163 Intent service, String resolvedType,
164 IServiceConnection connection, int flags) throws RemoteException;
165 public boolean unbindService(IServiceConnection connection) throws RemoteException;
166 public void publishService(IBinder token,
167 Intent intent, IBinder service) throws RemoteException;
168 public void unbindFinished(IBinder token, Intent service,
169 boolean doRebind) throws RemoteException;
170 /* oneway */
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700171 public void serviceDoneExecuting(IBinder token, int type, int startId,
172 int res) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800173 public IBinder peekService(Intent service, String resolvedType) throws RemoteException;
174
Christopher Tate181fafa2009-05-14 11:12:14 -0700175 public boolean bindBackupAgent(ApplicationInfo appInfo, int backupRestoreMode)
176 throws RemoteException;
177 public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException;
178 public void unbindBackupAgent(ApplicationInfo appInfo) throws RemoteException;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700179 public void killApplicationProcess(String processName, int uid) throws RemoteException;
Christopher Tate181fafa2009-05-14 11:12:14 -0700180
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181 public boolean startInstrumentation(ComponentName className, String profileFile,
182 int flags, Bundle arguments, IInstrumentationWatcher watcher)
183 throws RemoteException;
184 public void finishInstrumentation(IApplicationThread target,
185 int resultCode, Bundle results) throws RemoteException;
186
187 public Configuration getConfiguration() throws RemoteException;
188 public void updateConfiguration(Configuration values) throws RemoteException;
189 public void setRequestedOrientation(IBinder token,
190 int requestedOrientation) throws RemoteException;
191 public int getRequestedOrientation(IBinder token) throws RemoteException;
192
193 public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
194 public String getPackageForToken(IBinder token) throws RemoteException;
195
196 public static final int INTENT_SENDER_BROADCAST = 1;
197 public static final int INTENT_SENDER_ACTIVITY = 2;
198 public static final int INTENT_SENDER_ACTIVITY_RESULT = 3;
199 public static final int INTENT_SENDER_SERVICE = 4;
200 public IIntentSender getIntentSender(int type,
201 String packageName, IBinder token, String resultWho,
202 int requestCode, Intent intent, String resolvedType, int flags) throws RemoteException;
203 public void cancelIntentSender(IIntentSender sender) throws RemoteException;
204 public boolean clearApplicationUserData(final String packageName,
205 final IPackageDataObserver observer) throws RemoteException;
206 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
207
208 public void setProcessLimit(int max) throws RemoteException;
209 public int getProcessLimit() throws RemoteException;
210
211 public void setProcessForeground(IBinder token, int pid, boolean isForeground) throws RemoteException;
212
213 public int checkPermission(String permission, int pid, int uid)
214 throws RemoteException;
215
216 public int checkUriPermission(Uri uri, int pid, int uid, int mode)
217 throws RemoteException;
218 public void grantUriPermission(IApplicationThread caller, String targetPkg,
219 Uri uri, int mode) throws RemoteException;
220 public void revokeUriPermission(IApplicationThread caller, Uri uri,
221 int mode) throws RemoteException;
222
223 public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
224 throws RemoteException;
225
226 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
227
Dianne Hackborn03abb812010-01-04 18:43:19 -0800228 public void killBackgroundProcesses(final String packageName) throws RemoteException;
229 public void forceStopPackage(final String packageName) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800230
231 // Note: probably don't want to allow applications access to these.
232 public void goingToSleep() throws RemoteException;
233 public void wakingUp() throws RemoteException;
234
235 public void unhandledBack() throws RemoteException;
236 public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException;
237 public void setDebugApp(
238 String packageName, boolean waitForDebugger, boolean persistent)
239 throws RemoteException;
240 public void setAlwaysFinish(boolean enabled) throws RemoteException;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700241 public void setActivityController(IActivityController watcher)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800242 throws RemoteException;
243
244 public void enterSafeMode() throws RemoteException;
245
246 public void noteWakeupAlarm(IIntentSender sender) throws RemoteException;
247
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -0700248 public boolean killPids(int[] pids, String reason) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800249
250 public void reportPss(IApplicationThread caller, int pss) throws RemoteException;
251
252 // Special low-level communication with activity manager.
253 public void startRunning(String pkg, String cls, String action,
254 String data) throws RemoteException;
Dan Egnor60d87622009-12-16 16:32:58 -0800255 public void handleApplicationCrash(IBinder app,
256 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
257 public boolean handleApplicationWtf(IBinder app, String tag,
Dan Egnorb7f03672009-12-09 16:22:32 -0800258 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
Brad Fitzpatrick46d42382010-06-11 13:57:58 -0700259
260 // A StrictMode violation to be handled. The violationMask is a
261 // subset of the original StrictMode policy bitmask, with only the
262 // bit violated and penalty bits to be executed by the
263 // ActivityManagerService remaining set.
264 public void handleApplicationStrictModeViolation(IBinder app, int violationMask,
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700265 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
266
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800267 /*
268 * This will deliver the specified signal to all the persistent processes. Currently only
269 * SIGUSR1 is delivered. All others are ignored.
270 */
271 public void signalPersistentProcesses(int signal) throws RemoteException;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700272 // Retrieve info of applications installed on external media that are currently
273 // running.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800274 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
275 throws RemoteException;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700276 // Retrieve running application processes in the system
277 public List<ApplicationInfo> getRunningExternalApplications()
278 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800279 // Get device configuration
280 public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
281
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800282 // Turn on/off profiling in a particular process.
283 public boolean profileControl(String process, boolean start,
Dianne Hackborn9c8dd552009-06-23 19:22:52 -0700284 String path, ParcelFileDescriptor fd) throws RemoteException;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800285
Dianne Hackborn55280a92009-05-07 15:53:46 -0700286 public boolean shutdown(int timeout) throws RemoteException;
287
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700288 public void stopAppSwitches() throws RemoteException;
289 public void resumeAppSwitches() throws RemoteException;
290
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700291 public void registerActivityWatcher(IActivityWatcher watcher)
292 throws RemoteException;
293 public void unregisterActivityWatcher(IActivityWatcher watcher)
294 throws RemoteException;
295
Dianne Hackborn2d91af02009-07-16 13:34:33 -0700296 public int startActivityInPackage(int uid,
297 Intent intent, String resolvedType, IBinder resultTo,
298 String resultWho, int requestCode, boolean onlyIfNeeded)
299 throws RemoteException;
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -0700300
301 public void killApplicationWithUid(String pkg, int uid) throws RemoteException;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700302
303 public void closeSystemDialogs(String reason) throws RemoteException;
304
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -0700305 public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids)
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700306 throws RemoteException;
307
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700308 public void overridePendingTransition(IBinder token, String packageName,
309 int enterAnim, int exitAnim) throws RemoteException;
310
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800311 public boolean isUserAMonkey() throws RemoteException;
312
Dianne Hackborn860755f2010-06-03 18:47:52 -0700313 public void finishHeavyWeightApp() throws RemoteException;
Daniel Sandler69a48172010-06-23 16:29:36 -0400314
315 public void setImmersive(IBinder token, boolean immersive) throws RemoteException;
316 public boolean isImmersive(IBinder token) throws RemoteException;
317 public boolean isTopActivityImmersive() throws RemoteException;
Dianne Hackborn860755f2010-06-03 18:47:52 -0700318
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800319 /*
320 * Private non-Binder interfaces
321 */
322 /* package */ boolean testIsSystemReady();
323
324 /** Information you can retrieve about a particular application. */
325 public static class ContentProviderHolder implements Parcelable {
326 public final ProviderInfo info;
327 public final String permissionFailure;
328 public IContentProvider provider;
329 public boolean noReleaseNeeded;
330
331 public ContentProviderHolder(ProviderInfo _info) {
332 info = _info;
333 permissionFailure = null;
334 }
335
336 public ContentProviderHolder(ProviderInfo _info,
337 String _permissionFailure) {
338 info = _info;
339 permissionFailure = _permissionFailure;
340 }
341
342 public int describeContents() {
343 return 0;
344 }
345
346 public void writeToParcel(Parcel dest, int flags) {
347 info.writeToParcel(dest, 0);
348 dest.writeString(permissionFailure);
349 if (provider != null) {
350 dest.writeStrongBinder(provider.asBinder());
351 } else {
352 dest.writeStrongBinder(null);
353 }
354 dest.writeInt(noReleaseNeeded ? 1:0);
355 }
356
357 public static final Parcelable.Creator<ContentProviderHolder> CREATOR
358 = new Parcelable.Creator<ContentProviderHolder>() {
359 public ContentProviderHolder createFromParcel(Parcel source) {
360 return new ContentProviderHolder(source);
361 }
362
363 public ContentProviderHolder[] newArray(int size) {
364 return new ContentProviderHolder[size];
365 }
366 };
367
368 private ContentProviderHolder(Parcel source) {
369 info = ProviderInfo.CREATOR.createFromParcel(source);
370 permissionFailure = source.readString();
371 provider = ContentProviderNative.asInterface(
372 source.readStrongBinder());
373 noReleaseNeeded = source.readInt() != 0;
374 }
375 };
376
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800377 /** Information returned after waiting for an activity start. */
378 public static class WaitResult implements Parcelable {
379 public int result;
380 public boolean timeout;
381 public ComponentName who;
382 public long thisTime;
383 public long totalTime;
384
385 public WaitResult() {
386 }
387
388 public int describeContents() {
389 return 0;
390 }
391
392 public void writeToParcel(Parcel dest, int flags) {
393 dest.writeInt(result);
394 dest.writeInt(timeout ? 1 : 0);
395 ComponentName.writeToParcel(who, dest);
396 dest.writeLong(thisTime);
397 dest.writeLong(totalTime);
398 }
399
400 public static final Parcelable.Creator<WaitResult> CREATOR
401 = new Parcelable.Creator<WaitResult>() {
402 public WaitResult createFromParcel(Parcel source) {
403 return new WaitResult(source);
404 }
405
406 public WaitResult[] newArray(int size) {
407 return new WaitResult[size];
408 }
409 };
410
411 private WaitResult(Parcel source) {
412 result = source.readInt();
413 timeout = source.readInt() != 0;
414 who = ComponentName.readFromParcel(source);
415 thisTime = source.readLong();
416 totalTime = source.readLong();
417 }
418 };
419
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800420 String descriptor = "android.app.IActivityManager";
421
422 // Please keep these transaction codes the same -- they are also
423 // sent by C++ code.
424 int START_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION;
Dan Egnor60d87622009-12-16 16:32:58 -0800425 int HANDLE_APPLICATION_CRASH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800426 int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
427 int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
428 int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
429
430 // Remaining non-native transaction codes.
431 int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
432 int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
433 int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
434 int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
435 int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
436 int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
437 int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
438 int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
439 int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
440 int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
441 int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
442 int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
443 int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
444 int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
445 int MOVE_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+24;
446 int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
447 int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
448 int REPORT_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+27;
449 int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
450 int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
451 int SET_PERSISTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+30;
452 int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700453 int GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800454 int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
455 int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
456 int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
457 int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
458 int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
459 int FINISH_OTHER_INSTANCES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+38;
460 int GOING_TO_SLEEP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+39;
461 int WAKING_UP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+40;
462 int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
463 int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
464 int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
465 int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
466 int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
467 int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
468 int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
469 int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
470 int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
471 int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
472 int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
473 int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
474 int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
475 int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
476 int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700477 int SET_ACTIVITY_CONTROLLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800478 int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
479 int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
480 int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
481 int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
482 int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
483 int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
484 int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
485 int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
486 int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
487 int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
488 int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
489 int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
490 int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
491 int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
492 int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
493 int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
494 int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
495 int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
496 int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
497 int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
498 int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800499 int FORCE_STOP_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -0700500 int KILL_PIDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800501 int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
502 int REPORT_PSS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+81;
503 int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
504 int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
505 int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800506 int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
Dianne Hackborn55280a92009-05-07 15:53:46 -0700507 int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700508 int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
509 int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
Christopher Tate181fafa2009-05-14 11:12:14 -0700510 int START_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+89;
511 int BACKUP_AGENT_CREATED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+90;
512 int UNBIND_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+91;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700513 int REGISTER_ACTIVITY_WATCHER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+92;
514 int UNREGISTER_ACTIVITY_WATCHER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+93;
Dianne Hackborn2d91af02009-07-16 13:34:33 -0700515 int START_ACTIVITY_IN_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+94;
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -0700516 int KILL_APPLICATION_WITH_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+95;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700517 int CLOSE_SYSTEM_DIALOGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+96;
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700518 int GET_PROCESS_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+97;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700519 int KILL_APPLICATION_PROCESS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+98;
Dianne Hackbornfa82f222009-09-17 15:14:12 -0700520 int START_ACTIVITY_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+99;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700521 int OVERRIDE_PENDING_TRANSITION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+100;
Dan Egnor60d87622009-12-16 16:32:58 -0800522 int HANDLE_APPLICATION_WTF_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+101;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800523 int KILL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+102;
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800524 int IS_USER_A_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+103;
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800525 int START_ACTIVITY_AND_WAIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+104;
Dianne Hackborn061d58a2010-03-12 15:07:06 -0800526 int WILL_ACTIVITY_BE_VISIBLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+105;
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700527 int START_ACTIVITY_WITH_CONFIG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+106;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700528 int GET_RUNNING_EXTERNAL_APPLICATIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+107;
Dianne Hackborn860755f2010-06-03 18:47:52 -0700529 int FINISH_HEAVY_WEIGHT_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+108;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700530 int HANDLE_APPLICATION_STRICT_MODE_VIOLATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+109;
Daniel Sandler69a48172010-06-23 16:29:36 -0400531 int IS_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+110;
532 int SET_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+111;
533 int IS_TOP_ACTIVITY_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+112;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800534}