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