IActivityManager.java revision d02bdaab495641ab50e2123fdfd99a819cc40540
1/*
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
19import android.content.ComponentName;
20import android.content.ContentProviderNative;
21import android.content.IContentProvider;
22import android.content.IIntentReceiver;
23import android.content.IIntentSender;
24import android.content.Intent;
25import android.content.IntentFilter;
26import android.content.IntentSender;
27import android.content.pm.ApplicationInfo;
28import 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;
34import android.os.Bundle;
35import android.os.Debug;
36import android.os.IBinder;
37import android.os.IInterface;
38import android.os.Parcel;
39import android.os.ParcelFileDescriptor;
40import android.os.Parcelable;
41import android.os.RemoteException;
42import android.os.StrictMode;
43
44import java.util.List;
45
46/**
47 * System private API for talking with the activity manager service.  This
48 * provides calls from the application back to the activity manager.
49 *
50 * {@hide}
51 */
52public interface IActivityManager extends IInterface {
53    /**
54     * Returned by startActivity() if the start request was canceled because
55     * app switches are temporarily canceled to ensure the user's last request
56     * (such as pressing home) is performed.
57     */
58    public static final int START_SWITCHES_CANCELED = 4;
59    /**
60     * Returned by startActivity() if an activity wasn't really started, but
61     * the given Intent was given to the existing top activity.
62     */
63    public static final int START_DELIVERED_TO_TOP = 3;
64    /**
65     * Returned by startActivity() if an activity wasn't really started, but
66     * a task was simply brought to the foreground.
67     */
68    public static final int START_TASK_TO_FRONT = 2;
69    /**
70     * Returned by startActivity() if the caller asked that the Intent not
71     * be executed if it is the recipient, and that is indeed the case.
72     */
73    public static final int START_RETURN_INTENT_TO_CALLER = 1;
74    /**
75     * Activity was started successfully as normal.
76     */
77    public static final int START_SUCCESS = 0;
78    public static final int START_INTENT_NOT_RESOLVED = -1;
79    public static final int START_CLASS_NOT_FOUND = -2;
80    public static final int START_FORWARD_AND_REQUEST_CONFLICT = -3;
81    public static final int START_PERMISSION_DENIED = -4;
82    public static final int START_NOT_ACTIVITY = -5;
83    public static final int START_CANCELED = -6;
84    public int startActivity(IApplicationThread caller,
85            Intent intent, String resolvedType, Uri[] grantedUriPermissions,
86            int grantedMode, IBinder resultTo, String resultWho, int requestCode,
87            boolean onlyIfNeeded, boolean debug) throws RemoteException;
88    public WaitResult startActivityAndWait(IApplicationThread caller,
89            Intent intent, String resolvedType, Uri[] grantedUriPermissions,
90            int grantedMode, IBinder resultTo, String resultWho, int requestCode,
91            boolean onlyIfNeeded, boolean debug) throws RemoteException;
92    public int startActivityWithConfig(IApplicationThread caller,
93            Intent intent, String resolvedType, Uri[] grantedUriPermissions,
94            int grantedMode, IBinder resultTo, String resultWho, int requestCode,
95            boolean onlyIfNeeded, boolean debug, Configuration newConfig) throws RemoteException;
96    public int startActivityIntentSender(IApplicationThread caller,
97            IntentSender intent, Intent fillInIntent, String resolvedType,
98            IBinder resultTo, String resultWho, int requestCode,
99            int flagsMask, int flagsValues) throws RemoteException;
100    public boolean startNextMatchingActivity(IBinder callingActivity,
101            Intent intent) throws RemoteException;
102    public boolean finishActivity(IBinder token, int code, Intent data)
103            throws RemoteException;
104    public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
105    public boolean willActivityBeVisible(IBinder token) throws RemoteException;
106    public Intent registerReceiver(IApplicationThread caller,
107            IIntentReceiver receiver, IntentFilter filter,
108            String requiredPermission) throws RemoteException;
109    public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
110    public static final int BROADCAST_SUCCESS = 0;
111    public static final int BROADCAST_STICKY_CANT_HAVE_PERMISSION = -1;
112    public int broadcastIntent(IApplicationThread caller, Intent intent,
113            String resolvedType, IIntentReceiver resultTo, int resultCode,
114            String resultData, Bundle map, String requiredPermission,
115            boolean serialized, boolean sticky) throws RemoteException;
116    public void unbroadcastIntent(IApplicationThread caller, Intent intent) throws RemoteException;
117    /* oneway */
118    public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map, boolean abortBroadcast) throws RemoteException;
119    public void setPersistent(IBinder token, boolean isPersistent) throws RemoteException;
120    public void attachApplication(IApplicationThread app) throws RemoteException;
121    /* oneway */
122    public void activityIdle(IBinder token, Configuration config) throws RemoteException;
123    public void activityPaused(IBinder token, Bundle state) throws RemoteException;
124    /* oneway */
125    public void activityStopped(IBinder token,
126                                Bitmap thumbnail, CharSequence description) throws RemoteException;
127    /* oneway */
128    public void activityDestroyed(IBinder token) throws RemoteException;
129    public String getCallingPackage(IBinder token) throws RemoteException;
130    public ComponentName getCallingActivity(IBinder token) throws RemoteException;
131    public List getTasks(int maxNum, int flags,
132                         IThumbnailReceiver receiver) throws RemoteException;
133    public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
134            int flags) throws RemoteException;
135    public List getServices(int maxNum, int flags) throws RemoteException;
136    public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
137            throws RemoteException;
138    public void moveTaskToFront(int task) throws RemoteException;
139    public void moveTaskToBack(int task) throws RemoteException;
140    public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
141    public void moveTaskBackwards(int task) throws RemoteException;
142    public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
143    public void finishOtherInstances(IBinder token, ComponentName className) throws RemoteException;
144    /* oneway */
145    public void reportThumbnail(IBinder token,
146            Bitmap thumbnail, CharSequence description) throws RemoteException;
147    public ContentProviderHolder getContentProvider(IApplicationThread caller,
148            String name) throws RemoteException;
149    public void removeContentProvider(IApplicationThread caller,
150            String name) throws RemoteException;
151    public void publishContentProviders(IApplicationThread caller,
152            List<ContentProviderHolder> providers) throws RemoteException;
153    public PendingIntent getRunningServiceControlPanel(ComponentName service)
154            throws RemoteException;
155    public ComponentName startService(IApplicationThread caller, Intent service,
156            String resolvedType) throws RemoteException;
157    public int stopService(IApplicationThread caller, Intent service,
158            String resolvedType) throws RemoteException;
159    public boolean stopServiceToken(ComponentName className, IBinder token,
160            int startId) throws RemoteException;
161    public void setServiceForeground(ComponentName className, IBinder token,
162            int id, Notification notification, boolean keepNotification) throws RemoteException;
163    public int bindService(IApplicationThread caller, IBinder token,
164            Intent service, String resolvedType,
165            IServiceConnection connection, int flags) throws RemoteException;
166    public boolean unbindService(IServiceConnection connection) throws RemoteException;
167    public void publishService(IBinder token,
168            Intent intent, IBinder service) throws RemoteException;
169    public void unbindFinished(IBinder token, Intent service,
170            boolean doRebind) throws RemoteException;
171    /* oneway */
172    public void serviceDoneExecuting(IBinder token, int type, int startId,
173            int res) throws RemoteException;
174    public IBinder peekService(Intent service, String resolvedType) throws RemoteException;
175
176    public boolean bindBackupAgent(ApplicationInfo appInfo, int backupRestoreMode)
177            throws RemoteException;
178    public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException;
179    public void unbindBackupAgent(ApplicationInfo appInfo) throws RemoteException;
180    public void killApplicationProcess(String processName, int uid) throws RemoteException;
181
182    public boolean startInstrumentation(ComponentName className, String profileFile,
183            int flags, Bundle arguments, IInstrumentationWatcher watcher)
184            throws RemoteException;
185    public void finishInstrumentation(IApplicationThread target,
186            int resultCode, Bundle results) throws RemoteException;
187
188    public Configuration getConfiguration() throws RemoteException;
189    public void updateConfiguration(Configuration values) throws RemoteException;
190    public void setRequestedOrientation(IBinder token,
191            int requestedOrientation) throws RemoteException;
192    public int getRequestedOrientation(IBinder token) throws RemoteException;
193
194    public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
195    public String getPackageForToken(IBinder token) throws RemoteException;
196
197    public static final int INTENT_SENDER_BROADCAST = 1;
198    public static final int INTENT_SENDER_ACTIVITY = 2;
199    public static final int INTENT_SENDER_ACTIVITY_RESULT = 3;
200    public static final int INTENT_SENDER_SERVICE = 4;
201    public IIntentSender getIntentSender(int type,
202            String packageName, IBinder token, String resultWho,
203            int requestCode, Intent intent, String resolvedType, int flags) throws RemoteException;
204    public void cancelIntentSender(IIntentSender sender) throws RemoteException;
205    public boolean clearApplicationUserData(final String packageName,
206            final IPackageDataObserver observer) throws RemoteException;
207    public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
208
209    public void setProcessLimit(int max) throws RemoteException;
210    public int getProcessLimit() throws RemoteException;
211
212    public void setProcessForeground(IBinder token, int pid, boolean isForeground) throws RemoteException;
213
214    public int checkPermission(String permission, int pid, int uid)
215            throws RemoteException;
216
217    public int checkUriPermission(Uri uri, int pid, int uid, int mode)
218            throws RemoteException;
219    public void grantUriPermission(IApplicationThread caller, String targetPkg,
220            Uri uri, int mode) throws RemoteException;
221    public void revokeUriPermission(IApplicationThread caller, Uri uri,
222            int mode) throws RemoteException;
223
224    public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
225            throws RemoteException;
226
227    public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
228
229    public void killBackgroundProcesses(final String packageName) throws RemoteException;
230    public void forceStopPackage(final String packageName) throws RemoteException;
231
232    // Note: probably don't want to allow applications access to these.
233    public void goingToSleep() throws RemoteException;
234    public void wakingUp() throws RemoteException;
235
236    public void unhandledBack() throws RemoteException;
237    public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException;
238    public void setDebugApp(
239        String packageName, boolean waitForDebugger, boolean persistent)
240        throws RemoteException;
241    public void setAlwaysFinish(boolean enabled) throws RemoteException;
242    public void setActivityController(IActivityController watcher)
243        throws RemoteException;
244
245    public void enterSafeMode() throws RemoteException;
246
247    public void noteWakeupAlarm(IIntentSender sender) throws RemoteException;
248
249    public boolean killPids(int[] pids, String reason) throws RemoteException;
250
251    // Special low-level communication with activity manager.
252    public void startRunning(String pkg, String cls, String action,
253            String data) throws RemoteException;
254    public void handleApplicationCrash(IBinder app,
255            ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
256    public boolean handleApplicationWtf(IBinder app, String tag,
257            ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
258
259    // A StrictMode violation to be handled.  The violationMask is a
260    // subset of the original StrictMode policy bitmask, with only the
261    // bit violated and penalty bits to be executed by the
262    // ActivityManagerService remaining set.
263    public void handleApplicationStrictModeViolation(IBinder app, int violationMask,
264            StrictMode.ViolationInfo crashInfo) throws RemoteException;
265
266    /*
267     * This will deliver the specified signal to all the persistent processes. Currently only
268     * SIGUSR1 is delivered. All others are ignored.
269     */
270    public void signalPersistentProcesses(int signal) throws RemoteException;
271    // Retrieve info of applications installed on external media that are currently
272    // running.
273    public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
274            throws RemoteException;
275 // Retrieve running application processes in the system
276    public List<ApplicationInfo> getRunningExternalApplications()
277            throws RemoteException;
278    // Get device configuration
279    public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
280
281    // Turn on/off profiling in a particular process.
282    public boolean profileControl(String process, boolean start,
283            String path, ParcelFileDescriptor fd) throws RemoteException;
284
285    public boolean shutdown(int timeout) throws RemoteException;
286
287    public void stopAppSwitches() throws RemoteException;
288    public void resumeAppSwitches() throws RemoteException;
289
290    public void registerActivityWatcher(IActivityWatcher watcher)
291            throws RemoteException;
292    public void unregisterActivityWatcher(IActivityWatcher watcher)
293            throws RemoteException;
294
295    public int startActivityInPackage(int uid,
296            Intent intent, String resolvedType, IBinder resultTo,
297            String resultWho, int requestCode, boolean onlyIfNeeded)
298            throws RemoteException;
299
300    public void killApplicationWithUid(String pkg, int uid) throws RemoteException;
301
302    public void closeSystemDialogs(String reason) throws RemoteException;
303
304    public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids)
305            throws RemoteException;
306
307    public void overridePendingTransition(IBinder token, String packageName,
308            int enterAnim, int exitAnim) throws RemoteException;
309
310    public boolean isUserAMonkey() throws RemoteException;
311
312    public void finishHeavyWeightApp() throws RemoteException;
313
314    public void crashApplication(int uid, int initialPid, String packageName,
315            String message) throws RemoteException;
316
317    public IBinder newUriPermissionOwner(String name) throws RemoteException;
318    public void grantUriPermissionFromOwner(IBinder owner, int fromUid, String targetPkg,
319            Uri uri, int mode) throws RemoteException;
320    public void revokeUriPermissionFromOwner(IBinder owner, Uri uri,
321            int mode) throws RemoteException;
322
323    /*
324     * Private non-Binder interfaces
325     */
326    /* package */ boolean testIsSystemReady();
327
328    /** Information you can retrieve about a particular application. */
329    public static class ContentProviderHolder implements Parcelable {
330        public final ProviderInfo info;
331        public IContentProvider provider;
332        public boolean noReleaseNeeded;
333
334        public ContentProviderHolder(ProviderInfo _info) {
335            info = _info;
336        }
337
338        public int describeContents() {
339            return 0;
340        }
341
342        public void writeToParcel(Parcel dest, int flags) {
343            info.writeToParcel(dest, 0);
344            if (provider != null) {
345                dest.writeStrongBinder(provider.asBinder());
346            } else {
347                dest.writeStrongBinder(null);
348            }
349            dest.writeInt(noReleaseNeeded ? 1:0);
350        }
351
352        public static final Parcelable.Creator<ContentProviderHolder> CREATOR
353                = new Parcelable.Creator<ContentProviderHolder>() {
354            public ContentProviderHolder createFromParcel(Parcel source) {
355                return new ContentProviderHolder(source);
356            }
357
358            public ContentProviderHolder[] newArray(int size) {
359                return new ContentProviderHolder[size];
360            }
361        };
362
363        private ContentProviderHolder(Parcel source) {
364            info = ProviderInfo.CREATOR.createFromParcel(source);
365            provider = ContentProviderNative.asInterface(
366                source.readStrongBinder());
367            noReleaseNeeded = source.readInt() != 0;
368        }
369    };
370
371    /** Information returned after waiting for an activity start. */
372    public static class WaitResult implements Parcelable {
373        public int result;
374        public boolean timeout;
375        public ComponentName who;
376        public long thisTime;
377        public long totalTime;
378
379        public WaitResult() {
380        }
381
382        public int describeContents() {
383            return 0;
384        }
385
386        public void writeToParcel(Parcel dest, int flags) {
387            dest.writeInt(result);
388            dest.writeInt(timeout ? 1 : 0);
389            ComponentName.writeToParcel(who, dest);
390            dest.writeLong(thisTime);
391            dest.writeLong(totalTime);
392        }
393
394        public static final Parcelable.Creator<WaitResult> CREATOR
395                = new Parcelable.Creator<WaitResult>() {
396            public WaitResult createFromParcel(Parcel source) {
397                return new WaitResult(source);
398            }
399
400            public WaitResult[] newArray(int size) {
401                return new WaitResult[size];
402            }
403        };
404
405        private WaitResult(Parcel source) {
406            result = source.readInt();
407            timeout = source.readInt() != 0;
408            who = ComponentName.readFromParcel(source);
409            thisTime = source.readLong();
410            totalTime = source.readLong();
411        }
412    };
413
414    String descriptor = "android.app.IActivityManager";
415
416    // Please keep these transaction codes the same -- they are also
417    // sent by C++ code.
418    int START_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION;
419    int HANDLE_APPLICATION_CRASH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
420    int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
421    int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
422    int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
423
424    // Remaining non-native transaction codes.
425    int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
426    int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
427    int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
428    int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
429    int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
430    int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
431    int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
432    int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
433    int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
434    int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
435    int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
436    int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
437    int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
438    int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
439    int MOVE_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+24;
440    int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
441    int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
442    int REPORT_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+27;
443    int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
444    int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
445    int SET_PERSISTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+30;
446    int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
447    int GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
448    int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
449    int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
450    int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
451    int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
452    int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
453    int FINISH_OTHER_INSTANCES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+38;
454    int GOING_TO_SLEEP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+39;
455    int WAKING_UP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+40;
456    int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
457    int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
458    int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
459    int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
460    int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
461    int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
462    int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
463    int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
464    int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
465    int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
466    int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
467    int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
468    int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
469    int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
470    int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
471    int SET_ACTIVITY_CONTROLLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
472    int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
473    int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
474    int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
475    int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
476    int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
477    int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
478    int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
479    int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
480    int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
481    int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
482    int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
483    int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
484    int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
485    int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
486    int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
487    int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
488    int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
489    int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
490    int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
491    int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
492    int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
493    int FORCE_STOP_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
494    int KILL_PIDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
495    int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
496
497    int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
498    int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
499    int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
500    int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
501    int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
502    int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
503    int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
504    int START_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+89;
505    int BACKUP_AGENT_CREATED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+90;
506    int UNBIND_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+91;
507    int REGISTER_ACTIVITY_WATCHER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+92;
508    int UNREGISTER_ACTIVITY_WATCHER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+93;
509    int START_ACTIVITY_IN_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+94;
510    int KILL_APPLICATION_WITH_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+95;
511    int CLOSE_SYSTEM_DIALOGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+96;
512    int GET_PROCESS_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+97;
513    int KILL_APPLICATION_PROCESS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+98;
514    int START_ACTIVITY_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+99;
515    int OVERRIDE_PENDING_TRANSITION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+100;
516    int HANDLE_APPLICATION_WTF_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+101;
517    int KILL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+102;
518    int IS_USER_A_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+103;
519    int START_ACTIVITY_AND_WAIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+104;
520    int WILL_ACTIVITY_BE_VISIBLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+105;
521    int START_ACTIVITY_WITH_CONFIG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+106;
522    int GET_RUNNING_EXTERNAL_APPLICATIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+107;
523    int FINISH_HEAVY_WEIGHT_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+108;
524    int HANDLE_APPLICATION_STRICT_MODE_VIOLATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+109;
525    int IS_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+110;
526    int SET_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+111;
527    int IS_TOP_ACTIVITY_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+112;
528    int CRASH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+113;
529    int NEW_URI_PERMISSION_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+114;
530    int GRANT_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+115;
531    int REVOKE_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+116;
532}
533