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