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