blob: c9d3682405d1bcbf50e3cebc7565884ebb8b6940 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.app;
18
Tony Mak9c6e8ce2016-03-21 12:07:16 +000019import android.annotation.UserIdInt;
Craig Mautnerc00204b2013-03-05 15:02:14 -080020import android.app.ActivityManager.RunningServiceInfo;
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -070021import android.app.ActivityManager.RunningTaskInfo;
Craig Mautnerbdc748af2013-12-02 14:08:25 -080022import android.app.ActivityManager.StackInfo;
Dianne Hackborn69c6adc2015-06-02 10:52:59 -070023import android.app.assist.AssistContent;
24import android.app.assist.AssistStructure;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.content.ComponentName;
26import android.content.ContentProviderNative;
27import android.content.IContentProvider;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070028import android.content.IIntentReceiver;
29import android.content.IIntentSender;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080030import android.content.Intent;
31import android.content.IntentFilter;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070032import android.content.IntentSender;
Jeff Sharkeye66c1772013-09-20 14:30:59 -070033import android.content.UriPermission;
Christopher Tate181fafa2009-05-14 11:12:14 -070034import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.content.pm.ConfigurationInfo;
36import android.content.pm.IPackageDataObserver;
Ruben Brunke24b9a62016-02-16 21:38:24 -080037import android.content.pm.PackageManager.NameNotFoundException;
Jeff Sharkeye66c1772013-09-20 14:30:59 -070038import android.content.pm.ParceledListSlice;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.content.pm.ProviderInfo;
Amith Yamasani52f1d752012-03-28 18:19:29 -070040import android.content.pm.UserInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041import android.content.res.Configuration;
42import android.graphics.Bitmap;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -070043import android.graphics.Point;
Craig Mautnerbdc748af2013-12-02 14:08:25 -080044import android.graphics.Rect;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045import android.net.Uri;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070046import android.os.Bundle;
Dianne Hackborn3025ef32009-08-31 21:31:47 -070047import android.os.Debug;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048import android.os.IBinder;
49import android.os.IInterface;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -060050import android.os.IProgressListener;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051import android.os.Parcel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052import android.os.ParcelFileDescriptor;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070053import android.os.Parcelable;
Craig Mautnera0026042014-04-23 11:45:37 -070054import android.os.PersistableBundle;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070055import android.os.RemoteException;
56import android.os.StrictMode;
Dianne Hackborn91097de2014-04-04 18:02:06 -070057import android.service.voice.IVoiceInteractionSession;
58import com.android.internal.app.IVoiceInteractor;
Dianne Hackbornae6688b2015-02-11 17:02:41 -080059import com.android.internal.os.IResultReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060
61import java.util.List;
62
63/**
64 * System private API for talking with the activity manager service. This
65 * provides calls from the application back to the activity manager.
66 *
67 * {@hide}
68 */
69public interface IActivityManager extends IInterface {
Jeff Hao1b012d32014-08-20 10:35:34 -070070 public int startActivity(IApplicationThread caller, String callingPackage, Intent intent,
71 String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags,
72 ProfilerInfo profilerInfo, Bundle options) throws RemoteException;
73 public int startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent,
74 String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags,
75 ProfilerInfo profilerInfo, Bundle options, int userId) throws RemoteException;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -070076 public int startActivityAsCaller(IApplicationThread caller, String callingPackage,
Jeff Hao1b012d32014-08-20 10:35:34 -070077 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
Dianne Hackborna7cfbe02015-07-16 10:52:52 -070078 int flags, ProfilerInfo profilerInfo, Bundle options, boolean ignoreTargetSecurity,
79 int userId) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -080080 public WaitResult startActivityAndWait(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -070081 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
Jeff Hao1b012d32014-08-20 10:35:34 -070082 int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options,
83 int userId) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -080084 public int startActivityWithConfig(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -070085 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
86 int requestCode, int startFlags, Configuration newConfig,
Dianne Hackborn41203752012-08-31 14:05:51 -070087 Bundle options, int userId) throws RemoteException;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070088 public int startActivityIntentSender(IApplicationThread caller,
89 IntentSender intent, Intent fillInIntent, String resolvedType,
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070090 IBinder resultTo, String resultWho, int requestCode,
Dianne Hackborna4972e92012-03-14 10:38:05 -070091 int flagsMask, int flagsValues, Bundle options) throws RemoteException;
Dianne Hackborn91097de2014-04-04 18:02:06 -070092 public int startVoiceActivity(String callingPackage, int callingPid, int callingUid,
93 Intent intent, String resolvedType, IVoiceInteractionSession session,
Jeff Hao1b012d32014-08-20 10:35:34 -070094 IVoiceInteractor interactor, int flags, ProfilerInfo profilerInfo, Bundle options,
95 int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 public boolean startNextMatchingActivity(IBinder callingActivity,
Dianne Hackborna4972e92012-03-14 10:38:05 -070097 Intent intent, Bundle options) throws RemoteException;
Wale Ogunwale854809c2015-12-27 16:18:19 -080098 public int startActivityFromRecents(int taskId, Bundle options)
Wale Ogunwale7e8184b2015-10-05 14:37:03 -070099 throws RemoteException;
Wale Ogunwaleba7881c2015-08-01 19:28:29 -0700100 public boolean finishActivity(IBinder token, int code, Intent data, int finishTask)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101 throws RemoteException;
102 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -0700103 public boolean finishActivityAffinity(IBinder token) throws RemoteException;
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -0700104 public void finishVoiceTask(IVoiceInteractionSession session) throws RemoteException;
Chong Zhangfec694e2016-08-09 12:57:38 -0700105 public void requestActivityRelaunch(IBinder token) throws RemoteException;
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700106 public boolean releaseActivityInstance(IBinder token) throws RemoteException;
107 public void releaseSomeActivities(IApplicationThread app) throws RemoteException;
Dianne Hackborn061d58a2010-03-12 15:07:06 -0800108 public boolean willActivityBeVisible(IBinder token) throws RemoteException;
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700109 public Intent registerReceiver(IApplicationThread caller, String callerPackage,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 IIntentReceiver receiver, IntentFilter filter,
Dianne Hackborn20e80982012-08-31 19:00:44 -0700111 String requiredPermission, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112 public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113 public int broadcastIntent(IApplicationThread caller, Intent intent,
114 String resolvedType, IIntentReceiver resultTo, int resultCode,
Fyodor Kupolovd4fd8c72015-07-13 19:19:25 -0700115 String resultData, Bundle map, String[] requiredPermissions,
Dianne Hackborna750a632015-06-16 17:18:23 -0700116 int appOp, Bundle options, boolean serialized, boolean sticky, int userId) throws RemoteException;
Amith Yamasani742a6712011-05-04 14:49:28 -0700117 public void unbroadcastIntent(IApplicationThread caller, Intent intent, int userId) throws RemoteException;
riddle_hsu1f5ac4d2015-01-03 15:38:21 +0800118 public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map,
119 boolean abortBroadcast, int flags) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800120 public void attachApplication(IApplicationThread app) throws RemoteException;
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700121 public void activityResumed(IBinder token) throws RemoteException;
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700122 public void activityIdle(IBinder token, Configuration config,
123 boolean stopProfiling) throws RemoteException;
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700124 public void activityPaused(IBinder token) throws RemoteException;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800125 public void activityStopped(IBinder token, Bundle state,
Craig Mautnera0026042014-04-23 11:45:37 -0700126 PersistableBundle persistentState, CharSequence description) throws RemoteException;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800127 public void activitySlept(IBinder token) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800128 public void activityDestroyed(IBinder token) throws RemoteException;
Jorim Jaggife89d122015-12-22 16:28:44 +0100129 public void activityRelaunched(IBinder token) throws RemoteException;
Filip Gruszczynski23493322015-07-29 17:02:59 -0700130 public void reportSizeConfigurations(IBinder token, int[] horizontalSizeConfiguration,
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700131 int[] verticalSizeConfigurations, int[] smallestWidthConfigurations)
132 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800133 public String getCallingPackage(IBinder token) throws RemoteException;
134 public ComponentName getCallingActivity(IBinder token) throws RemoteException;
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700135 public List<IAppTask> getAppTasks(String callingPackage) throws RemoteException;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700136 public int addAppTask(IBinder activityToken, Intent intent,
137 ActivityManager.TaskDescription description, Bitmap thumbnail) throws RemoteException;
138 public Point getAppTaskThumbnailSize() throws RemoteException;
Dianne Hackborn09233282014-04-30 11:33:59 -0700139 public List<RunningTaskInfo> getTasks(int maxNum, int flags) throws RemoteException;
Jeff Sharkey479212c2016-06-29 16:00:55 -0600140 public ParceledListSlice<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
Amith Yamasani82644082012-08-03 13:09:11 -0700141 int flags, int userId) throws RemoteException;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700142 public ActivityManager.TaskThumbnail getTaskThumbnail(int taskId) throws RemoteException;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800143 public List<RunningServiceInfo> getServices(int maxNum, int flags) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
145 throws RemoteException;
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700146 public void moveTaskToFront(int task, int flags, Bundle options) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
148 public void moveTaskBackwards(int task) throws RemoteException;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800149 public void moveTaskToStack(int taskId, int stackId, boolean toTop) throws RemoteException;
Chong Zhange4fbd322016-03-01 14:44:03 -0800150 public boolean moveTaskToDockedStack(int taskId, int createMode, boolean toTop, boolean animate,
Wale Ogunwalea4d92a02016-05-01 16:02:16 -0700151 Rect initialBounds, boolean moveHomeStackFront) throws RemoteException;
Wale Ogunwale079a0042015-10-24 11:44:07 -0700152 public boolean moveTopActivityToPinnedStack(int stackId, Rect bounds) throws RemoteException;
Wale Ogunwalee75a9ad2016-03-18 20:43:49 -0700153
154 /**
155 * Resizes the input stack id to the given bounds.
156 *
157 * @param stackId Id of the stack to resize.
158 * @param bounds Bounds to resize the stack to or {@code null} for fullscreen.
159 * @param allowResizeInDockedMode True if the resize should be allowed when the docked stack is
160 * active.
161 * @param preserveWindows True if the windows of activities contained in the stack should be
162 * preserved.
163 * @param animate True if the stack resize should be animated.
164 * @param animationDuration The duration of the resize animation in milliseconds or -1 if the
165 * default animation duration should be used.
166 * @throws RemoteException
167 */
Filip Gruszczynski84fa3352016-01-25 16:28:49 -0800168 public void resizeStack(int stackId, Rect bounds, boolean allowResizeInDockedMode,
Wale Ogunwalee75a9ad2016-03-18 20:43:49 -0700169 boolean preserveWindows, boolean animate, int animationDuration) throws RemoteException;
Jorim Jaggidc249c42015-12-15 14:57:31 -0800170
171 /**
Jorim Jaggid47e7e12016-03-01 09:57:38 +0100172 * Moves all tasks from the docked stack in the fullscreen stack and puts the top task of the
173 * fullscreen stack into the docked stack.
174 */
175 public void swapDockedAndFullscreenStack() throws RemoteException;
176
177 /**
Jorim Jaggidc249c42015-12-15 14:57:31 -0800178 * Resizes the docked stack, and all other stacks as the result of the dock stack bounds change.
179 *
180 * @param dockedBounds The bounds for the docked stack.
181 * @param tempDockedTaskBounds The temporary bounds for the tasks in the docked stack, which
182 * might be different from the stack bounds to allow more
183 * flexibility while resizing, or {@code null} if they should be the
184 * same as the stack bounds.
185 * @param tempDockedTaskInsetBounds The temporary bounds for the tasks to calculate the insets.
186 * When resizing, we usually "freeze" the layout of a task. To
187 * achieve that, we also need to "freeze" the insets, which
188 * gets achieved by changing task bounds but not bounds used
189 * to calculate the insets in this transient state
190 * @param tempOtherTaskBounds The temporary bounds for the tasks in all other stacks, or
191 * {@code null} if they should be the same as the stack bounds.
192 * @param tempOtherTaskInsetBounds Like {@code tempDockedTaskInsetBounds}, but for the other
193 * stacks.
194 * @throws RemoteException
195 */
196 public void resizeDockedStack(Rect dockedBounds, Rect tempDockedTaskBounds,
197 Rect tempDockedTaskInsetBounds,
198 Rect tempOtherTaskBounds, Rect tempOtherTaskInsetBounds) throws RemoteException;
Robert Carr0d00c2e2016-02-29 17:45:02 -0800199 /**
200 * Resizes the pinned stack.
201 *
202 * @param pinnedBounds The bounds for the pinned stack.
203 * @param tempPinnedTaskBounds The temporary bounds for the tasks in the pinned stack, which
204 * might be different from the stack bounds to allow more
205 * flexibility while resizing, or {@code null} if they should be the
206 * same as the stack bounds.
207 */
208 public void resizePinnedStack(Rect pinnedBounds, Rect tempPinnedTaskBounds) throws RemoteException;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700209 public void positionTaskInStack(int taskId, int stackId, int position) throws RemoteException;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800210 public List<StackInfo> getAllStackInfos() throws RemoteException;
211 public StackInfo getStackInfo(int stackId) throws RemoteException;
Winson Chung303e1ff2014-03-07 15:06:19 -0800212 public boolean isInHomeStack(int taskId) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700213 public void setFocusedStack(int stackId) throws RemoteException;
Winson Chungd16c5652015-01-26 16:11:07 -0800214 public int getFocusedStackId() throws RemoteException;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700215 public void setFocusedTask(int taskId) throws RemoteException;
Winson Chung740c3ac2014-11-12 16:14:38 -0800216 public void registerTaskStackListener(ITaskStackListener listener) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218 public ContentProviderHolder getContentProvider(IApplicationThread caller,
Jeff Sharkey6d515712012-09-20 16:06:08 -0700219 String name, int userId, boolean stable) throws RemoteException;
220 public ContentProviderHolder getContentProviderExternal(String name, int userId, IBinder token)
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800221 throws RemoteException;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700222 public void removeContentProvider(IBinder connection, boolean stable) throws RemoteException;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800223 public void removeContentProviderExternal(String name, IBinder token) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800224 public void publishContentProviders(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700225 List<ContentProviderHolder> providers) throws RemoteException;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700226 public boolean refContentProvider(IBinder connection, int stableDelta, int unstableDelta)
227 throws RemoteException;
228 public void unstableProviderDied(IBinder connection) throws RemoteException;
Jeff Sharkey7aa76012013-09-30 14:26:27 -0700229 public void appNotRespondingViaProvider(IBinder connection) throws RemoteException;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700230 public PendingIntent getRunningServiceControlPanel(ComponentName service)
231 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800232 public ComponentName startService(IApplicationThread caller, Intent service,
Svet Ganov99b60432015-06-27 13:15:22 -0700233 String resolvedType, String callingPackage, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800234 public int stopService(IApplicationThread caller, Intent service,
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700235 String resolvedType, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800236 public boolean stopServiceToken(ComponentName className, IBinder token,
237 int startId) throws RemoteException;
238 public void setServiceForeground(ComponentName className, IBinder token,
Dianne Hackborn67324c92016-04-18 13:55:25 -0700239 int id, Notification notification, int flags) throws RemoteException;
Svet Ganov99b60432015-06-27 13:15:22 -0700240 public int bindService(IApplicationThread caller, IBinder token, Intent service,
241 String resolvedType, IServiceConnection connection, int flags,
242 String callingPackage, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800243 public boolean unbindService(IServiceConnection connection) throws RemoteException;
244 public void publishService(IBinder token,
245 Intent intent, IBinder service) throws RemoteException;
246 public void unbindFinished(IBinder token, Intent service,
247 boolean doRebind) throws RemoteException;
248 /* oneway */
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700249 public void serviceDoneExecuting(IBinder token, int type, int startId,
250 int res) throws RemoteException;
Svet Ganov99b60432015-06-27 13:15:22 -0700251 public IBinder peekService(Intent service, String resolvedType, String callingPackage)
252 throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700253
Christopher Tatec58054f2016-06-13 15:17:54 -0700254 public boolean bindBackupAgent(String packageName, int backupRestoreMode, int userId)
Christopher Tate181fafa2009-05-14 11:12:14 -0700255 throws RemoteException;
Christopher Tate346acb12012-10-15 19:20:25 -0700256 public void clearPendingBackup() throws RemoteException;
Christopher Tate181fafa2009-05-14 11:12:14 -0700257 public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException;
258 public void unbindBackupAgent(ApplicationInfo appInfo) throws RemoteException;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700259 public void killApplicationProcess(String processName, int uid) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700260
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800261 public boolean startInstrumentation(ComponentName className, String profileFile,
Svetoslav Ganov80943d82013-01-02 10:25:37 -0800262 int flags, Bundle arguments, IInstrumentationWatcher watcher,
Narayan Kamath8dcfefd2014-05-15 18:12:59 +0100263 IUiAutomationConnection connection, int userId,
264 String abiOverride) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800265 public void finishInstrumentation(IApplicationThread target,
266 int resultCode, Bundle results) throws RemoteException;
267
Andrii Kulian8072d112016-09-16 11:11:01 -0700268 /**
269 * @return A copy of global {@link Configuration}, contains general settings for the entire
270 * system. Corresponds to the configuration of the default display.
271 * @throws RemoteException
272 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800273 public Configuration getConfiguration() throws RemoteException;
Andrii Kulian8072d112016-09-16 11:11:01 -0700274
275 /**
276 * Updates global configuration and applies changes to the entire system.
277 * @param values Update values for global configuration.
278 * @throws RemoteException
Wale Ogunwale02896ab2016-10-05 09:08:43 -0700279 * @return Returns true if the configuration was updated.
Andrii Kulian8072d112016-09-16 11:11:01 -0700280 */
Wale Ogunwale02896ab2016-10-05 09:08:43 -0700281 public boolean updateConfiguration(Configuration values) throws RemoteException;
Andrii Kulian8072d112016-09-16 11:11:01 -0700282
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800283 public void setRequestedOrientation(IBinder token,
284 int requestedOrientation) throws RemoteException;
285 public int getRequestedOrientation(IBinder token) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700286
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800287 public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
288 public String getPackageForToken(IBinder token) throws RemoteException;
289
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800290 public IIntentSender getIntentSender(int type,
291 String packageName, IBinder token, String resultWho,
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800292 int requestCode, Intent[] intents, String[] resolvedTypes,
Dianne Hackborn41203752012-08-31 14:05:51 -0700293 int flags, Bundle options, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294 public void cancelIntentSender(IIntentSender sender) throws RemoteException;
295 public boolean clearApplicationUserData(final String packageName,
Amith Yamasani742a6712011-05-04 14:49:28 -0700296 final IPackageDataObserver observer, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800297 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
Christopher Tatec4a07d12012-04-06 14:19:13 -0700298 public int getUidForIntentSender(IIntentSender sender) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700299
Dianne Hackborn41203752012-08-31 14:05:51 -0700300 public int handleIncomingUser(int callingPid, int callingUid, int userId, boolean allowAll,
301 boolean requireFull, String name, String callerPackage) throws RemoteException;
302
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800303 public void setProcessLimit(int max) throws RemoteException;
304 public int getProcessLimit() throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700305
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800306 public void setProcessForeground(IBinder token, int pid,
307 boolean isForeground) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700308
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800309 public int checkPermission(String permission, int pid, int uid)
310 throws RemoteException;
Dianne Hackbornff170242014-11-19 10:59:01 -0800311 public int checkPermissionWithToken(String permission, int pid, int uid, IBinder callerToken)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800312 throws RemoteException;
Dianne Hackbornff170242014-11-19 10:59:01 -0800313
314 public int checkUriPermission(Uri uri, int pid, int uid, int mode, int userId,
315 IBinder callerToken) throws RemoteException;
Nicolas Prevotd85fc722014-04-16 19:52:08 +0100316 public void grantUriPermission(IApplicationThread caller, String targetPkg, Uri uri,
317 int mode, int userId) throws RemoteException;
318 public void revokeUriPermission(IApplicationThread caller, Uri uri, int mode, int userId)
319 throws RemoteException;
320 public void takePersistableUriPermission(Uri uri, int modeFlags, int userId)
321 throws RemoteException;
322 public void releasePersistableUriPermission(Uri uri, int modeFlags, int userId)
323 throws RemoteException;
Jeff Sharkeybcaac0a2013-10-09 14:21:08 -0700324 public ParceledListSlice<UriPermission> getPersistedUriPermissions(
325 String packageName, boolean incoming) throws RemoteException;
Jeff Sharkeye66c1772013-09-20 14:30:59 -0700326
Felipe Lemef3fa0f82016-01-07 12:08:19 -0800327 // Gets the URI permissions granted to an arbitrary package.
328 // NOTE: this is different from getPersistedUriPermissions(), which returns the URIs the package
329 // granted to another packages (instead of those granted to it).
330 public ParceledListSlice<UriPermission> getGrantedUriPermissions(String packageName, int userId)
331 throws RemoteException;
332
333 // Clears the URI permissions granted to an arbitrary package.
334 public void clearGrantedUriPermissions(String packageName, int userId) throws RemoteException;
335
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800336 public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
337 throws RemoteException;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700338
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800339 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700340
Dianne Hackborn1676c852012-09-10 14:52:30 -0700341 public void killBackgroundProcesses(final String packageName, int userId)
342 throws RemoteException;
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -0800343 public void killAllBackgroundProcesses() throws RemoteException;
Gustav Sennton6258dcd2015-10-30 19:25:37 +0000344 public void killPackageDependents(final String packageName, int userId) throws RemoteException;
Dianne Hackborn1676c852012-09-10 14:52:30 -0700345 public void forceStopPackage(final String packageName, int userId) throws RemoteException;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700346
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347 // Note: probably don't want to allow applications access to these.
Wale Ogunwale99732942016-05-06 10:13:14 -0700348 public void setLockScreenShown(boolean showing, boolean occluded) throws RemoteException;
Dianne Hackbornff5b1582012-04-12 17:24:07 -0700349
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800350 public void unhandledBack() throws RemoteException;
351 public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException;
352 public void setDebugApp(
353 String packageName, boolean waitForDebugger, boolean persistent)
354 throws RemoteException;
355 public void setAlwaysFinish(boolean enabled) throws RemoteException;
Dianne Hackborn4a18c262016-02-26 17:23:48 -0800356 public void setActivityController(IActivityController watcher, boolean imAMonkey)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800357 throws RemoteException;
Dianne Hackbornb2117d12016-02-16 18:26:35 -0800358 public void setLenientBackgroundCheck(boolean enabled) throws RemoteException;
Dianne Hackborn970510b2016-02-24 16:56:42 -0800359 public int getMemoryTrimLevel() throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800360
361 public void enterSafeMode() throws RemoteException;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700362
Dianne Hackborn1e383822015-04-10 14:02:33 -0700363 public void noteWakeupAlarm(IIntentSender sender, int sourceUid, String sourcePkg, String tag)
364 throws RemoteException;
365 public void noteAlarmStart(IIntentSender sender, int sourceUid, String tag)
366 throws RemoteException;
367 public void noteAlarmFinish(IIntentSender sender, int sourceUid, String tag)
Dianne Hackborn099bc622014-01-22 13:39:16 -0800368 throws RemoteException;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700369
Dianne Hackborn64825172011-03-02 21:32:58 -0800370 public boolean killPids(int[] pids, String reason, boolean secure) throws RemoteException;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700371 public boolean killProcessesBelowForeground(String reason) throws RemoteException;
372
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800373 // Special low-level communication with activity manager.
Dan Egnor60d87622009-12-16 16:32:58 -0800374 public void handleApplicationCrash(IBinder app,
375 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
Dianne Hackborn52322712014-08-26 22:47:26 -0700376 public boolean handleApplicationWtf(IBinder app, String tag, boolean system,
Dan Egnorb7f03672009-12-09 16:22:32 -0800377 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
Brad Fitzpatrick46d42382010-06-11 13:57:58 -0700378
379 // A StrictMode violation to be handled. The violationMask is a
380 // subset of the original StrictMode policy bitmask, with only the
381 // bit violated and penalty bits to be executed by the
382 // ActivityManagerService remaining set.
383 public void handleApplicationStrictModeViolation(IBinder app, int violationMask,
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -0700384 StrictMode.ViolationInfo crashInfo) throws RemoteException;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700385
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 /*
Craig Mautner5eda9b32013-07-02 11:58:16 -0700387 * This will deliver the specified signal to all the persistent processes. Currently only
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388 * SIGUSR1 is delivered. All others are ignored.
389 */
390 public void signalPersistentProcesses(int signal) throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800391 // Retrieve running application processes in the system
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800392 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
393 throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800394 // Retrieve info of applications installed on external media that are currently
395 // running.
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700396 public List<ApplicationInfo> getRunningExternalApplications()
397 throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800398 // Get memory information about the calling process.
399 public void getMyMemoryState(ActivityManager.RunningAppProcessInfo outInfo)
400 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800401 // Get device configuration
402 public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
Jeff Hao1b012d32014-08-20 10:35:34 -0700403
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800404 // Turn on/off profiling in a particular process.
Dianne Hackborn1676c852012-09-10 14:52:30 -0700405 public boolean profileControl(String process, int userId, boolean start,
Jeff Hao1b012d32014-08-20 10:35:34 -0700406 ProfilerInfo profilerInfo, int profileType) throws RemoteException;
407
Dianne Hackborn55280a92009-05-07 15:53:46 -0700408 public boolean shutdown(int timeout) throws RemoteException;
Jeff Hao1b012d32014-08-20 10:35:34 -0700409
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700410 public void stopAppSwitches() throws RemoteException;
411 public void resumeAppSwitches() throws RemoteException;
Dianne Hackbornfee756f2014-07-16 17:31:10 -0700412
413 public void addPackageDependency(String packageName) throws RemoteException;
414
Jeff Sharkey85f449e2016-06-23 09:26:00 -0600415 public void killApplication(String pkg, int appId, int userId, String reason)
Dianne Hackborn21d9b562013-05-28 17:46:59 -0700416 throws RemoteException;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700417
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700418 public void closeSystemDialogs(String reason) throws RemoteException;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700419
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -0700420 public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids)
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700421 throws RemoteException;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700422
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700423 public void overridePendingTransition(IBinder token, String packageName,
424 int enterAnim, int exitAnim) throws RemoteException;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700425
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800426 public boolean isUserAMonkey() throws RemoteException;
Adam Momtaz8f6f1f42013-04-10 12:42:58 -0700427
428 public void setUserIsMonkey(boolean monkey) throws RemoteException;
429
Dianne Hackborn860755f2010-06-03 18:47:52 -0700430 public void finishHeavyWeightApp() throws RemoteException;
Daniel Sandler69a48172010-06-23 16:29:36 -0400431
Craig Mautnerbc57cd12013-08-19 15:47:42 -0700432 public boolean convertFromTranslucent(IBinder token) throws RemoteException;
Craig Mautner233ceee2014-05-09 17:05:11 -0700433 public boolean convertToTranslucent(IBinder token, ActivityOptions options) throws RemoteException;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700434 public void notifyActivityDrawn(IBinder token) throws RemoteException;
Craig Mautner233ceee2014-05-09 17:05:11 -0700435 public ActivityOptions getActivityOptions(IBinder token) throws RemoteException;
Craig Mautner4addfc52013-06-25 08:05:45 -0700436
Craig Mautner6e2f3952014-09-09 14:26:41 -0700437 public void bootAnimationComplete() throws RemoteException;
438
Daniel Sandler69a48172010-06-23 16:29:36 -0400439 public void setImmersive(IBinder token, boolean immersive) throws RemoteException;
440 public boolean isImmersive(IBinder token) throws RemoteException;
441 public boolean isTopActivityImmersive() throws RemoteException;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700442 public boolean isTopOfTask(IBinder token) throws RemoteException;
443
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700444 public void crashApplication(int uid, int initialPid, String packageName,
445 String message) throws RemoteException;
Dianne Hackborncca1f0e2010-09-26 18:34:53 -0700446
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700447 public String getProviderMimeType(Uri uri, int userId) throws RemoteException;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700448
Dianne Hackborn7e269642010-08-25 19:50:20 -0700449 public IBinder newUriPermissionOwner(String name) throws RemoteException;
Vladislav Kaznacheevb23a7572015-12-18 12:23:43 -0800450 public IBinder getUriPermissionOwnerForActivity(IBinder activityToken) throws RemoteException;
Dianne Hackborn7e269642010-08-25 19:50:20 -0700451 public void grantUriPermissionFromOwner(IBinder owner, int fromUid, String targetPkg,
Nicolas Prevotf1939902014-06-25 09:29:02 +0100452 Uri uri, int mode, int sourceUserId, int targetUserId) throws RemoteException;
Dianne Hackborn7e269642010-08-25 19:50:20 -0700453 public void revokeUriPermissionFromOwner(IBinder owner, Uri uri,
Nicolas Prevotd85fc722014-04-16 19:52:08 +0100454 int mode, int userId) throws RemoteException;
Andy McFadden824c5102010-07-09 16:26:57 -0700455
Nicolas Prevotd85fc722014-04-16 19:52:08 +0100456 public int checkGrantUriPermission(int callingUid, String targetPkg, Uri uri,
457 int modeFlags, int userId) throws RemoteException;
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -0700458
Andy McFadden824c5102010-07-09 16:26:57 -0700459 // Cause the specified process to dump the specified heap.
Dianne Hackborn1676c852012-09-10 14:52:30 -0700460 public boolean dumpHeap(String process, int userId, boolean managed, String path,
Andy McFadden824c5102010-07-09 16:26:57 -0700461 ParcelFileDescriptor fd) throws RemoteException;
462
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800463 public int startActivities(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -0700464 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
Amith Yamasaniea7e9152012-09-24 16:11:18 -0700465 Bundle options, int userId) throws RemoteException;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800466
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700467 public int getFrontActivityScreenCompatMode() throws RemoteException;
468 public void setFrontActivityScreenCompatMode(int mode) throws RemoteException;
469 public int getPackageScreenCompatMode(String packageName) throws RemoteException;
470 public void setPackageScreenCompatMode(String packageName, int mode)
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400471 throws RemoteException;
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700472 public boolean getPackageAskScreenCompat(String packageName) throws RemoteException;
473 public void setPackageAskScreenCompat(String packageName, boolean ask)
474 throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700475
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700476 // Multi-user APIs
477 public boolean switchUser(int userid) throws RemoteException;
Kenny Guy08488bf2014-02-21 17:40:37 +0000478 public boolean startUserInBackground(int userid) throws RemoteException;
Jeff Sharkeybd91e2f2016-03-22 15:32:31 -0600479 public boolean unlockUser(int userid, byte[] token, byte[] secret, IProgressListener listener)
480 throws RemoteException;
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700481 public int stopUser(int userid, boolean force, IStopUserCallback callback) throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700482 public UserInfo getCurrentUser() throws RemoteException;
Jeff Sharkeye17ac152015-11-06 22:40:29 -0800483 public boolean isUserRunning(int userid, int flags) throws RemoteException;
Dianne Hackbornc72fc672012-09-20 13:12:03 -0700484 public int[] getRunningUserIds() throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700485
Wale Ogunwaled54b5782014-10-23 15:55:23 -0700486 public boolean removeTask(int taskId) throws RemoteException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700487
Jeff Sharkeya4620792011-05-20 15:29:23 -0700488 public void registerProcessObserver(IProcessObserver observer) throws RemoteException;
489 public void unregisterProcessObserver(IProcessObserver observer) throws RemoteException;
490
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700491 public void registerUidObserver(IUidObserver observer, int which) throws RemoteException;
Dianne Hackbornd23e0d62015-05-15 16:36:12 -0700492 public void unregisterUidObserver(IUidObserver observer) throws RemoteException;
493
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700494 public boolean isIntentSenderTargetedToPackage(IIntentSender sender) throws RemoteException;
495
Dianne Hackborn1927ae82012-06-22 15:21:36 -0700496 public boolean isIntentSenderAnActivity(IIntentSender sender) throws RemoteException;
497
Dianne Hackborn81038902012-11-26 17:04:09 -0800498 public Intent getIntentForIntentSender(IIntentSender sender) throws RemoteException;
499
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800500 public String getTagForIntentSender(IIntentSender sender, String prefix) throws RemoteException;
501
Dianne Hackborn31ca8542011-07-19 14:58:28 -0700502 public void updatePersistentConfiguration(Configuration values) throws RemoteException;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700503
504 public long[] getProcessPss(int[] pids) throws RemoteException;
505
Dianne Hackborn661cd522011-08-22 00:26:20 -0700506 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException;
507
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200508 public void keyguardWaitingForActivityDrawn() throws RemoteException;
Dianne Hackborn90c52de2011-09-23 12:57:44 -0700509
Adrian Roosd5c2db62016-03-08 16:11:31 -0800510 /**
511 * Notify the system that the keyguard is going away.
512 *
513 * @param flags See {@link android.view.WindowManagerPolicy#KEYGUARD_GOING_AWAY_FLAG_TO_SHADE}
514 * etc.
515 */
516 public void keyguardGoingAway(int flags) throws RemoteException;
Jorim Jaggi827e0fa2015-05-07 11:41:41 -0700517
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -0700518 public boolean shouldUpRecreateTask(IBinder token, String destAffinity)
Adam Powelldd8fab22012-03-22 17:47:27 -0700519 throws RemoteException;
520
521 public boolean navigateUpTo(IBinder token, Intent target, int resultCode, Intent resultData)
522 throws RemoteException;
523
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800524 // These are not public because you need to be very careful in how you
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700525 // manage your activity to make sure it is always the uid you expect.
526 public int getLaunchedFromUid(IBinder activityToken) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800527 public String getLaunchedFromPackage(IBinder activityToken) throws RemoteException;
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700528
Fyodor Kupolov0b77ef92016-06-20 17:16:52 -0700529 public void registerUserSwitchObserver(IUserSwitchObserver observer,
530 String name) throws RemoteException;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700531 public void unregisterUserSwitchObserver(IUserSwitchObserver observer) throws RemoteException;
532
Michal Karpinski3da5c972015-12-11 18:16:30 +0000533 public void requestBugReport(int bugreportType) throws RemoteException;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700534
Jeff Brownbd181bb2013-09-10 16:44:24 -0700535 public long inputDispatchingTimedOut(int pid, boolean aboveSystem, String reason)
536 throws RemoteException;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700537
Adam Skorydfc7fd72013-08-05 19:23:41 -0700538 public Bundle getAssistContextExtras(int requestType) throws RemoteException;
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -0800539
Dianne Hackborn17f69352015-07-17 18:04:14 -0700540 public boolean requestAssistContextExtras(int requestType, IResultReceiver receiver,
Amith Yamasanie8222e52016-04-08 15:28:47 -0700541 Bundle receiverExtras,
Amith Yamasani4f128e42016-05-10 11:44:12 -0700542 IBinder activityToken, boolean focused, boolean newSessionId) throws RemoteException;
Dianne Hackbornae6688b2015-02-11 17:02:41 -0800543
Dianne Hackborn09d57fe2015-05-27 18:05:52 -0700544 public void reportAssistContextExtras(IBinder token, Bundle extras,
Dianne Hackborna3acdb32015-06-08 17:07:40 -0700545 AssistStructure structure, AssistContent content, Uri referrer) throws RemoteException;
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -0800546
Tim Kilbourn0e5f1102015-06-05 16:18:09 -0700547 public boolean launchAssistIntent(Intent intent, int requestType, String hint, int userHandle,
548 Bundle args) throws RemoteException;
Dianne Hackbornfdf5b352014-10-08 17:43:48 -0700549
Dianne Hackborn17f69352015-07-17 18:04:14 -0700550 public boolean isAssistDataAllowedOnCurrentActivity() throws RemoteException;
551
552 public boolean showAssistFromActivity(IBinder token, Bundle args) throws RemoteException;
Benjamin Franzc200f442015-06-25 18:20:04 +0100553
Svetoslavaa41add2015-08-06 15:03:55 -0700554 public void killUid(int appId, int userId, String reason) throws RemoteException;
Dianne Hackbornf1b78242013-04-08 22:28:59 -0700555
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700556 public void hang(IBinder who, boolean allowRestart) throws RemoteException;
557
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700558 public void reportActivityFullyDrawn(IBinder token) throws RemoteException;
559
Dianne Hackborn57a7f592013-07-22 18:21:32 -0700560 public void restart() throws RemoteException;
561
Dianne Hackborn35f72be2013-09-16 10:57:39 -0700562 public void performIdleMaintenance() throws RemoteException;
563
Christopher Tate27d92e42016-05-06 11:25:11 -0700564 public void sendIdleJobTrigger() throws RemoteException;
565
Todd Kennedyca4d8422015-01-15 15:19:22 -0800566 public IActivityContainer createVirtualActivityContainer(IBinder parentActivityToken,
Craig Mautner4a1cb222013-12-04 16:14:06 -0800567 IActivityContainerCallback callback) throws RemoteException;
568
Todd Kennedy4900bf92015-01-16 16:05:14 -0800569 public IActivityContainer createStackOnDisplay(int displayId) throws RemoteException;
570
Craig Mautner95da1082014-02-24 17:54:35 -0800571 public void deleteActivityContainer(IActivityContainer container) throws RemoteException;
572
Craig Mautneraa7e3ed2015-02-17 10:17:21 -0800573 public int getActivityDisplayId(IBinder activityToken) throws RemoteException;
Craig Mautnere0a38842013-12-16 16:14:02 -0800574
Andrii Kulian0f051f52016-04-14 00:41:51 -0700575 public void startSystemLockTaskMode(int taskId) throws RemoteException;
Jason Monk62515be2014-05-21 16:06:19 -0400576
Craig Mautneraea74a52014-03-08 14:23:10 -0800577 public void startLockTaskMode(int taskId) throws RemoteException;
578
Craig Mautneraea74a52014-03-08 14:23:10 -0800579 public void startLockTaskMode(IBinder token) throws RemoteException;
580
Craig Mautneraea74a52014-03-08 14:23:10 -0800581 public void stopLockTaskMode() throws RemoteException;
582
Andrii Kulian0f051f52016-04-14 00:41:51 -0700583 public void stopSystemLockTaskMode() throws RemoteException;
Jason Monk62515be2014-05-21 16:06:19 -0400584
Craig Mautneraea74a52014-03-08 14:23:10 -0800585 public boolean isInLockTaskMode() throws RemoteException;
586
Benjamin Franz43261142015-02-11 15:59:44 +0000587 public int getLockTaskModeState() throws RemoteException;
588
Craig Mautnerc21ae9e2015-04-15 09:45:42 -0700589 public void showLockTaskEscapeMessage(IBinder token) throws RemoteException;
590
Winson Chunga449dc02014-05-16 11:15:04 -0700591 public void setTaskDescription(IBinder token, ActivityManager.TaskDescription values)
Winson Chung03a9bae2014-05-02 09:56:12 -0700592 throws RemoteException;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800593 public void setTaskResizeable(int taskId, int resizeableMode) throws RemoteException;
Chong Zhang87b21722015-09-21 15:39:51 -0700594 public void resizeTask(int taskId, Rect bounds, int resizeMode) throws RemoteException;
Skuhnece2faa52015-08-11 10:36:38 -0700595
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700596 public Rect getTaskBounds(int taskId) throws RemoteException;
Suprabh Shukla23593142015-11-03 17:31:15 -0800597 public Bitmap getTaskDescriptionIcon(String filename, int userId) throws RemoteException;
Craig Mautner2fbd7542014-03-21 09:34:07 -0700598
Winson Chung044d5292014-11-06 11:05:19 -0800599 public void startInPlaceAnimationOnFrontMostApplication(ActivityOptions opts)
600 throws RemoteException;
601
Jose Lima4b6c6692014-08-12 17:41:12 -0700602 public boolean requestVisibleBehind(IBinder token, boolean visible) throws RemoteException;
603 public boolean isBackgroundVisibleBehind(IBinder token) throws RemoteException;
604 public void backgroundResourcesReleased(IBinder token) throws RemoteException;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700605
Craig Mautnerbb742462014-07-07 15:28:55 -0700606 public void notifyLaunchTaskBehindComplete(IBinder token) throws RemoteException;
Craig Mautner8746a472014-07-24 15:12:54 -0700607 public void notifyEnterAnimationComplete(IBinder token) throws RemoteException;
Craig Mautnerbb742462014-07-07 15:28:55 -0700608
Jeff Sharkey605eb792014-11-04 13:34:06 -0800609 public void notifyCleartextNetwork(int uid, byte[] firstPacket) throws RemoteException;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800610
Dianne Hackbornd59a5d52015-04-04 14:52:14 -0700611 public void setDumpHeapDebugLimit(String processName, int uid, long maxMemSize,
612 String reportPackage) throws RemoteException;
Dianne Hackbornb9a5e4a2015-03-03 17:04:12 -0800613 public void dumpHeapFinished(String path) throws RemoteException;
614
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700615 public void setVoiceKeepAwake(IVoiceInteractionSession session, boolean keepAwake)
616 throws RemoteException;
Craig Mautnere5600772015-04-03 21:36:37 -0700617 public void updateLockTaskPackages(int userId, String[] packages) throws RemoteException;
Makoto Onuki219bbaf2015-11-12 01:38:47 +0000618 public void updateDeviceOwner(String packageName) throws RemoteException;
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700619
Adam Lesinskic30454c2015-06-24 13:24:35 -0700620 public int getPackageProcessState(String packageName, String callingPackage)
621 throws RemoteException;
Dianne Hackborn1e383822015-04-10 14:02:33 -0700622
Stefan Kuhne16045c22015-06-05 07:18:06 -0700623 public boolean setProcessMemoryTrimLevel(String process, int uid, int level)
624 throws RemoteException;
625
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700626 public boolean isRootVoiceInteraction(IBinder token) throws RemoteException;
627
Rahul Chaturvedi52613f92015-06-17 23:54:08 -0400628 // Start Binder transaction tracking for all applications.
629 public boolean startBinderTracking() throws RemoteException;
630
631 // Stop Binder transaction tracking for all applications and dump trace data to the given file
632 // descriptor.
633 public boolean stopBinderTrackingAndDump(ParcelFileDescriptor fd) throws RemoteException;
634
Wale Ogunwale868a5e12015-08-02 16:19:20 -0700635 public int getActivityStackId(IBinder token) throws RemoteException;
Filip Gruszczynski411c06f2016-01-07 09:44:44 -0800636 public void exitFreeformMode(IBinder token) throws RemoteException;
Wale Ogunwale868a5e12015-08-02 16:19:20 -0700637
Wale Ogunwale83301a92015-09-24 15:54:08 -0700638 public void suppressResizeConfigChanges(boolean suppress) throws RemoteException;
639
Wale Ogunwale9101d262016-01-15 08:56:11 -0800640 public void moveTasksToFullscreenStack(int fromStackId, boolean onTop) throws RemoteException;
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -0700641
Dianne Hackbornbef28fe2015-10-29 17:57:11 -0700642 public int getAppStartMode(int uid, String packageName) throws RemoteException;
643
Andrii Kulian933076d2016-03-29 17:04:42 -0700644 public boolean isInMultiWindowMode(IBinder token) throws RemoteException;
Wale Ogunwale5f986092015-12-04 15:35:38 -0800645
Andrii Kulian933076d2016-03-29 17:04:42 -0700646 public boolean isInPictureInPictureMode(IBinder token) throws RemoteException;
Wale Ogunwale5f986092015-12-04 15:35:38 -0800647
Andrii Kulian933076d2016-03-29 17:04:42 -0700648 public void enterPictureInPictureMode(IBinder token) throws RemoteException;
Wale Ogunwale9c604c72015-12-06 18:42:57 -0800649
Ruben Brunke24b9a62016-02-16 21:38:24 -0800650 public int setVrMode(IBinder token, boolean enabled, ComponentName packageName)
651 throws RemoteException;
652
653 public boolean isVrModePackageEnabled(ComponentName packageName) throws RemoteException;
Ruben Brunkdd18a0b2015-12-04 16:16:31 -0800654
Christopher Tate63fec3e2015-12-11 18:35:28 -0800655 public boolean isAppForeground(int uid) throws RemoteException;
656
Amith Yamasani0af6fa72016-01-17 15:36:19 -0800657 public void startLocalVoiceInteraction(IBinder token, Bundle options) throws RemoteException;
658
659 public void stopLocalVoiceInteraction(IBinder token) throws RemoteException;
660
661 public boolean supportsLocalVoiceInteraction() throws RemoteException;
662
Wale Ogunwale480dca02016-02-06 13:58:29 -0800663 public void notifyPinnedStackAnimationEnded() throws RemoteException;
664
Wale Ogunwale06e8ee02016-02-12 12:56:32 -0800665 public void removeStack(int stackId) throws RemoteException;
666
Tony Mak9c6e8ce2016-03-21 12:07:16 +0000667 public void notifyLockedProfile(@UserIdInt int userId) throws RemoteException;
668
Tony Mak646fe992016-04-21 16:43:08 +0100669 public void startConfirmDeviceCredentialIntent(Intent intent) throws RemoteException;
670
Dianne Hackborn0c4e6a82016-05-13 17:37:08 -0700671 public int sendIntentSender(IIntentSender target, int code, Intent intent, String resolvedType,
672 IIntentReceiver finishedReceiver, String requiredPermission, Bundle options)
673 throws RemoteException;
674
Srinath Sridharane535a582016-06-27 18:13:47 -0700675 public void setVrThread(int tid) throws RemoteException;
Tim Murray33eb07f2016-06-10 10:03:20 -0700676 public void setRenderThread(int tid) throws RemoteException;
Srinath Sridharane535a582016-06-27 18:13:47 -0700677
Jorim Jaggif6782ee2016-07-22 11:40:00 +0200678 /**
Jorim Jaggi8d4f5f52016-07-25 17:23:39 +0200679 * Lets activity manager know whether the calling process is currently showing "top-level" UI
Jorim Jaggif6782ee2016-07-22 11:40:00 +0200680 * that is not an activity, i.e. windows on the screen the user is currently interacting with.
681 *
Jorim Jaggi8d4f5f52016-07-25 17:23:39 +0200682 * <p>This flag can only be set for persistent processes.
683 *
Jorim Jaggif6782ee2016-07-22 11:40:00 +0200684 * @param hasTopUi Whether the calling process has "top-level" UI.
685 */
686 public void setHasTopUi(boolean hasTopUi) throws RemoteException;
687
Rubin Xu89927b32016-07-28 14:34:26 +0100688 /**
689 * Returns if the target of the PendingIntent can be fired directly, without triggering
690 * a work profile challenge. This can happen if the PendingIntent is to start direct-boot
691 * aware activities, and the target user is in RUNNING_LOCKED state, i.e. we should allow
692 * direct-boot aware activity to bypass work challenge when the user hasn't unlocked yet.
693 * @param intent the {@link PendingIntent} to be tested.
694 * @return {@code true} if the intent should not trigger a work challenge, {@code false}
695 * otherwise.
696 * @throws RemoteException
697 */
698 public boolean canBypassWorkChallenge(PendingIntent intent) throws RemoteException;
699
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800700 /*
701 * Private non-Binder interfaces
702 */
703 /* package */ boolean testIsSystemReady();
Primiano Tucci810c0522014-07-25 18:03:16 +0100704
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800705 /** Information you can retrieve about a particular application. */
706 public static class ContentProviderHolder implements Parcelable {
707 public final ProviderInfo info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800708 public IContentProvider provider;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700709 public IBinder connection;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800710 public boolean noReleaseNeeded;
711
712 public ContentProviderHolder(ProviderInfo _info) {
713 info = _info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800714 }
715
Craig Mautnercf910b02013-04-23 11:23:27 -0700716 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800717 public int describeContents() {
718 return 0;
719 }
720
Craig Mautnercf910b02013-04-23 11:23:27 -0700721 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800722 public void writeToParcel(Parcel dest, int flags) {
723 info.writeToParcel(dest, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800724 if (provider != null) {
725 dest.writeStrongBinder(provider.asBinder());
726 } else {
727 dest.writeStrongBinder(null);
728 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700729 dest.writeStrongBinder(connection);
Dianne Hackbornb9a5e4a2015-03-03 17:04:12 -0800730 dest.writeInt(noReleaseNeeded ? 1 : 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800731 }
732
733 public static final Parcelable.Creator<ContentProviderHolder> CREATOR
734 = new Parcelable.Creator<ContentProviderHolder>() {
Craig Mautnercf910b02013-04-23 11:23:27 -0700735 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800736 public ContentProviderHolder createFromParcel(Parcel source) {
737 return new ContentProviderHolder(source);
738 }
739
Craig Mautnercf910b02013-04-23 11:23:27 -0700740 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800741 public ContentProviderHolder[] newArray(int size) {
742 return new ContentProviderHolder[size];
743 }
744 };
745
746 private ContentProviderHolder(Parcel source) {
747 info = ProviderInfo.CREATOR.createFromParcel(source);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800748 provider = ContentProviderNative.asInterface(
Dianne Hackbornb9a5e4a2015-03-03 17:04:12 -0800749 source.readStrongBinder());
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700750 connection = source.readStrongBinder();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800751 noReleaseNeeded = source.readInt() != 0;
752 }
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800753 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800754
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800755 /** Information returned after waiting for an activity start. */
756 public static class WaitResult implements Parcelable {
757 public int result;
758 public boolean timeout;
759 public ComponentName who;
760 public long thisTime;
761 public long totalTime;
762
763 public WaitResult() {
764 }
765
Craig Mautnercf910b02013-04-23 11:23:27 -0700766 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800767 public int describeContents() {
768 return 0;
769 }
770
Craig Mautnercf910b02013-04-23 11:23:27 -0700771 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800772 public void writeToParcel(Parcel dest, int flags) {
773 dest.writeInt(result);
774 dest.writeInt(timeout ? 1 : 0);
775 ComponentName.writeToParcel(who, dest);
776 dest.writeLong(thisTime);
777 dest.writeLong(totalTime);
778 }
779
780 public static final Parcelable.Creator<WaitResult> CREATOR
781 = new Parcelable.Creator<WaitResult>() {
Craig Mautnercf910b02013-04-23 11:23:27 -0700782 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800783 public WaitResult createFromParcel(Parcel source) {
784 return new WaitResult(source);
785 }
786
Craig Mautnercf910b02013-04-23 11:23:27 -0700787 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800788 public WaitResult[] newArray(int size) {
789 return new WaitResult[size];
790 }
791 };
792
793 private WaitResult(Parcel source) {
794 result = source.readInt();
795 timeout = source.readInt() != 0;
796 who = ComponentName.readFromParcel(source);
797 thisTime = source.readLong();
798 totalTime = source.readLong();
799 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700800 }
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800801
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800802 String descriptor = "android.app.IActivityManager";
803
804 // Please keep these transaction codes the same -- they are also
805 // sent by C++ code.
Dan Egnor60d87622009-12-16 16:32:58 -0800806 int HANDLE_APPLICATION_CRASH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800807 int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
808 int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
809 int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
810
811 // Remaining non-native transaction codes.
812 int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
813 int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
814 int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
815 int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
816 int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
817 int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
818 int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
819 int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
820 int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
821 int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
822 int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
823 int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
824 int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
825 int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
Craig Mautner428ecf22015-01-14 16:09:01 -0800826
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800827 int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
828 int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
Dianne Hackborn09233282014-04-30 11:33:59 -0700829
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800830 int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
831 int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700832 int REF_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+30;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800833 int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700834 int GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800835 int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
836 int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
837 int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
838 int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
839 int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700840 int ACTIVITY_RESUMED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+38;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800841 int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
842 int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
843 int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
844 int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
845 int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
846 int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
847 int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
848 int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
849 int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
850 int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
851 int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
852 int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
853 int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
854 int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
855 int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700856 int SET_ACTIVITY_CONTROLLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800857 int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
858 int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
859 int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
860 int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
861 int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
862 int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
863 int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
864 int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
865 int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
866 int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
867 int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
868 int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
869 int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
870 int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
871 int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
872 int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
873 int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
874 int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
875 int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
876 int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
877 int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800878 int FORCE_STOP_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -0700879 int KILL_PIDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800880 int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700881 int GET_TASK_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+81;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800882 int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
883 int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
884 int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800885 int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
Dianne Hackborn55280a92009-05-07 15:53:46 -0700886 int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700887 int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
888 int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
Christopher Tate181fafa2009-05-14 11:12:14 -0700889 int START_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+89;
890 int BACKUP_AGENT_CREATED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+90;
891 int UNBIND_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+91;
Christopher Tatec4a07d12012-04-06 14:19:13 -0700892 int GET_UID_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+92;
Dianne Hackborn41203752012-08-31 14:05:51 -0700893 int HANDLE_INCOMING_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+93;
Dianne Hackbornfee756f2014-07-16 17:31:10 -0700894 int ADD_PACKAGE_DEPENDENCY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+94;
Jeff Sharkey85f449e2016-06-23 09:26:00 -0600895 int KILL_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+95;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700896 int CLOSE_SYSTEM_DIALOGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+96;
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700897 int GET_PROCESS_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+97;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700898 int KILL_APPLICATION_PROCESS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+98;
Dianne Hackbornfa82f222009-09-17 15:14:12 -0700899 int START_ACTIVITY_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+99;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700900 int OVERRIDE_PENDING_TRANSITION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+100;
Dan Egnor60d87622009-12-16 16:32:58 -0800901 int HANDLE_APPLICATION_WTF_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+101;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800902 int KILL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+102;
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800903 int IS_USER_A_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+103;
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800904 int START_ACTIVITY_AND_WAIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+104;
Dianne Hackborn061d58a2010-03-12 15:07:06 -0800905 int WILL_ACTIVITY_BE_VISIBLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+105;
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700906 int START_ACTIVITY_WITH_CONFIG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+106;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700907 int GET_RUNNING_EXTERNAL_APPLICATIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+107;
Dianne Hackborn860755f2010-06-03 18:47:52 -0700908 int FINISH_HEAVY_WEIGHT_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+108;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700909 int HANDLE_APPLICATION_STRICT_MODE_VIOLATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+109;
Daniel Sandler69a48172010-06-23 16:29:36 -0400910 int IS_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+110;
911 int SET_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+111;
912 int IS_TOP_ACTIVITY_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+112;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700913 int CRASH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+113;
Dianne Hackborncca1f0e2010-09-26 18:34:53 -0700914 int GET_PROVIDER_MIME_TYPE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+114;
915 int NEW_URI_PERMISSION_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+115;
916 int GRANT_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+116;
917 int REVOKE_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+117;
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -0700918 int CHECK_GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+118;
919 int DUMP_HEAP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+119;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800920 int START_ACTIVITIES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+120;
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700921 int IS_USER_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+121;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800922 int ACTIVITY_SLEPT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+122;
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700923 int GET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+123;
924 int SET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+124;
925 int GET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+125;
926 int SET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+126;
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700927 int GET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+127;
928 int SET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+128;
Dianne Hackborn36f80f32011-05-31 18:26:45 -0700929 int SWITCH_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+129;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700930 int SET_FOCUSED_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+130;
Dianne Hackborn36f80f32011-05-31 18:26:45 -0700931 int REMOVE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+131;
932 int REGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+132;
933 int UNREGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+133;
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700934 int IS_INTENT_SENDER_TARGETED_TO_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+134;
Dianne Hackborn31ca8542011-07-19 14:58:28 -0700935 int UPDATE_PERSISTENT_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+135;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700936 int GET_PROCESS_PSS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+136;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700937 int SHOW_BOOT_MESSAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+137;
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -0800938 int KILL_ALL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+139;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800939 int GET_CONTENT_PROVIDER_EXTERNAL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+140;
940 int REMOVE_CONTENT_PROVIDER_EXTERNAL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+141;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800941 int GET_MY_MEMORY_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+142;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700942 int KILL_PROCESSES_BELOW_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+143;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700943 int GET_CURRENT_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+144;
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -0700944 int SHOULD_UP_RECREATE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+145;
Adam Powelldd8fab22012-03-22 17:47:27 -0700945 int NAVIGATE_UP_TO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+146;
Dianne Hackbornff5b1582012-04-12 17:24:07 -0700946 int SET_LOCK_SCREEN_SHOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+147;
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -0700947 int FINISH_ACTIVITY_AFFINITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+148;
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700948 int GET_LAUNCHED_FROM_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+149;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700949 int UNSTABLE_PROVIDER_DIED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+150;
Dianne Hackborn1927ae82012-06-22 15:21:36 -0700950 int IS_INTENT_SENDER_AN_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+151;
Amith Yamasani82644082012-08-03 13:09:11 -0700951 int START_ACTIVITY_AS_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+152;
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700952 int STOP_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+153;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700953 int REGISTER_USER_SWITCH_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+154;
954 int UNREGISTER_USER_SWITCH_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+155;
Dianne Hackbornc72fc672012-09-20 13:12:03 -0700955 int GET_RUNNING_USER_IDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+156;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700956 int REQUEST_BUG_REPORT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+157;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700957 int INPUT_DISPATCHING_TIMED_OUT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+158;
Christopher Tate346acb12012-10-15 19:20:25 -0700958 int CLEAR_PENDING_BACKUP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+159;
Dianne Hackborn81038902012-11-26 17:04:09 -0800959 int GET_INTENT_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+160;
Adam Skorydfc7fd72013-08-05 19:23:41 -0700960 int GET_ASSIST_CONTEXT_EXTRAS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+161;
961 int REPORT_ASSIST_CONTEXT_EXTRAS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+162;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800962 int GET_LAUNCHED_FROM_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+163;
Dianne Hackbornf1b78242013-04-08 22:28:59 -0700963 int KILL_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+164;
Adam Momtaz8f6f1f42013-04-10 12:42:58 -0700964 int SET_USER_IS_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+165;
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700965 int HANG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+166;
Todd Kennedyca4d8422015-01-15 15:19:22 -0800966 int CREATE_VIRTUAL_ACTIVITY_CONTAINER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+167;
Kenny Root1d69bad2013-05-07 10:14:28 -0700967 int MOVE_TASK_TO_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+168;
968 int RESIZE_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+169;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800969 int GET_ALL_STACK_INFOS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+170;
Kenny Root1d69bad2013-05-07 10:14:28 -0700970 int SET_FOCUSED_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+171;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800971 int GET_STACK_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+172;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700972 int CONVERT_FROM_TRANSLUCENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+173;
973 int CONVERT_TO_TRANSLUCENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+174;
974 int NOTIFY_ACTIVITY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+175;
975 int REPORT_ACTIVITY_FULLY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+176;
Dianne Hackborn57a7f592013-07-22 18:21:32 -0700976 int RESTART_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+177;
Jeff Sharkeye66c1772013-09-20 14:30:59 -0700977 int PERFORM_IDLE_MAINTENANCE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+178;
978 int TAKE_PERSISTABLE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+179;
979 int RELEASE_PERSISTABLE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+180;
980 int GET_PERSISTED_URI_PERMISSIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+181;
Jeff Sharkey7aa76012013-09-30 14:26:27 -0700981 int APP_NOT_RESPONDING_VIA_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+182;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700982 int GET_TASK_BOUNDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+183;
Craig Mautneraa7e3ed2015-02-17 10:17:21 -0800983 int GET_ACTIVITY_DISPLAY_ID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+184;
Craig Mautner95da1082014-02-24 17:54:35 -0800984 int DELETE_ACTIVITY_CONTAINER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+185;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700985 int SET_PROCESS_MEMORY_TRIM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+186;
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800986
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800987 // Start of L transactions
988 int GET_TAG_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+210;
Kenny Guy08488bf2014-02-21 17:40:37 +0000989 int START_USER_IN_BACKGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+211;
Winson Chung303e1ff2014-03-07 15:06:19 -0800990 int IS_IN_HOME_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+212;
Craig Mautneraea74a52014-03-08 14:23:10 -0800991 int START_LOCK_TASK_BY_TASK_ID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+213;
992 int START_LOCK_TASK_BY_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+214;
993 int STOP_LOCK_TASK_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+215;
994 int IS_IN_LOCK_TASK_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+216;
Winson Chunga449dc02014-05-16 11:15:04 -0700995 int SET_TASK_DESCRIPTION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+217;
Dianne Hackborn91097de2014-04-04 18:02:06 -0700996 int START_VOICE_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+218;
Craig Mautner233ceee2014-05-09 17:05:11 -0700997 int GET_ACTIVITY_OPTIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+219;
Winson Chung1147c402014-05-14 11:05:00 -0700998 int GET_APP_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+220;
Andrii Kulian0f051f52016-04-14 00:41:51 -0700999 int START_SYSTEM_LOCK_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+221;
1000 int STOP_SYSTEM_LOCK_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+222;
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07001001 int FINISH_VOICE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+223;
Craig Mautnerd61dc202014-07-07 11:09:11 -07001002 int IS_TOP_OF_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+224;
Jose Lima4b6c6692014-08-12 17:41:12 -07001003 int REQUEST_VISIBLE_BEHIND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+225;
1004 int IS_BACKGROUND_VISIBLE_BEHIND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+226;
1005 int BACKGROUND_RESOURCES_RELEASED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+227;
Craig Mautnerbb742462014-07-07 15:28:55 -07001006 int NOTIFY_LAUNCH_TASK_BEHIND_COMPLETE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+228;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001007 int START_ACTIVITY_FROM_RECENTS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 229;
Craig Mautner8746a472014-07-24 15:12:54 -07001008 int NOTIFY_ENTER_ANIMATION_COMPLETE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+230;
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001009 int KEYGUARD_WAITING_FOR_ACTIVITY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+231;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -07001010 int START_ACTIVITY_AS_CALLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+232;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001011 int ADD_APP_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+233;
1012 int GET_APP_TASK_THUMBNAIL_SIZE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+234;
Dianne Hackborn89ad4562014-08-24 16:45:38 -07001013 int RELEASE_ACTIVITY_INSTANCE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+235;
1014 int RELEASE_SOME_ACTIVITIES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+236;
Craig Mautner6e2f3952014-09-09 14:26:41 -07001015 int BOOT_ANIMATION_COMPLETE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+237;
Craig Mautner648f69b2014-09-18 14:16:26 -07001016 int GET_TASK_DESCRIPTION_ICON_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+238;
Dianne Hackbornfdf5b352014-10-08 17:43:48 -07001017 int LAUNCH_ASSIST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+239;
Winson Chung044d5292014-11-06 11:05:19 -08001018 int START_IN_PLACE_ANIMATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+240;
Dianne Hackbornff170242014-11-19 10:59:01 -08001019 int CHECK_PERMISSION_WITH_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+241;
Winson Chung740c3ac2014-11-12 16:14:38 -08001020 int REGISTER_TASK_STACK_LISTENER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+242;
Jeff Sharkey605eb792014-11-04 13:34:06 -08001021
1022 // Start of M transactions
1023 int NOTIFY_CLEARTEXT_NETWORK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+280;
Todd Kennedy4900bf92015-01-16 16:05:14 -08001024 int CREATE_STACK_ON_DISPLAY = IBinder.FIRST_CALL_TRANSACTION+281;
Winson Chungd16c5652015-01-26 16:11:07 -08001025 int GET_FOCUSED_STACK_ID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+282;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08001026 int SET_TASK_RESIZEABLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+283;
Dianne Hackbornae6688b2015-02-11 17:02:41 -08001027 int REQUEST_ASSIST_CONTEXT_EXTRAS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+284;
Wale Ogunwale53a29a92015-02-23 15:42:52 -08001028 int RESIZE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+285;
Benjamin Franz43261142015-02-11 15:59:44 +00001029 int GET_LOCK_TASK_MODE_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+286;
Dianne Hackbornb9a5e4a2015-03-03 17:04:12 -08001030 int SET_DUMP_HEAP_DEBUG_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+287;
1031 int DUMP_HEAP_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+288;
Dianne Hackborn3d07c942015-03-13 18:02:54 -07001032 int SET_VOICE_KEEP_AWAKE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+289;
Craig Mautnere5600772015-04-03 21:36:37 -07001033 int UPDATE_LOCK_TASK_PACKAGES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+290;
Dianne Hackborn1e383822015-04-10 14:02:33 -07001034 int NOTE_ALARM_START_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+291;
1035 int NOTE_ALARM_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+292;
1036 int GET_PACKAGE_PROCESS_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+293;
Craig Mautnerc21ae9e2015-04-15 09:45:42 -07001037 int SHOW_LOCK_TASK_ESCAPE_MESSAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+294;
Makoto Onuki219bbaf2015-11-12 01:38:47 +00001038 int UPDATE_DEVICE_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+295;
Julia Reynoldscedd53a2015-06-09 11:14:35 -04001039 int KEYGUARD_GOING_AWAY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+296;
1040 int REGISTER_UID_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+297;
1041 int UNREGISTER_UID_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+298;
Benjamin Franzc200f442015-06-25 18:20:04 +01001042 int IS_SCREEN_CAPTURE_ALLOWED_ON_CURRENT_ACTIVITY_TRANSACTION
1043 = IBinder.FIRST_CALL_TRANSACTION+299;
Dianne Hackborn17f69352015-07-17 18:04:14 -07001044 int SHOW_ASSIST_FROM_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+300;
Dianne Hackbornfb81d092015-08-03 17:14:46 -07001045 int IS_ROOT_VOICE_INTERACTION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+301;
Rahul Chaturvedi52613f92015-06-17 23:54:08 -04001046
Benjamin Franz94a20a22015-06-29 17:39:31 +01001047 // Start of N transactions
1048 int START_BINDER_TRACKING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 340;
1049 int STOP_BINDER_TRACKING_AND_DUMP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 341;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001050 int POSITION_TASK_IN_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 342;
Wale Ogunwale868a5e12015-08-02 16:19:20 -07001051 int GET_ACTIVITY_STACK_ID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 343;
Filip Gruszczynski411c06f2016-01-07 09:44:44 -08001052 int EXIT_FREEFORM_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 344;
Filip Gruszczynski23493322015-07-29 17:02:59 -07001053 int REPORT_SIZE_CONFIGURATIONS = IBinder.FIRST_CALL_TRANSACTION + 345;
Wale Ogunwale59a73ca2015-09-14 12:54:50 -07001054 int MOVE_TASK_TO_DOCKED_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 346;
Wale Ogunwale83301a92015-09-24 15:54:08 -07001055 int SUPPRESS_RESIZE_CONFIG_CHANGES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 347;
Filip Gruszczynskib3da8342015-12-10 16:40:01 -08001056 int MOVE_TASKS_TO_FULLSCREEN_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 348;
Dianne Hackbornbef28fe2015-10-29 17:57:11 -07001057 int MOVE_TOP_ACTIVITY_TO_PINNED_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 349;
1058 int GET_APP_START_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 350;
Jeff Sharkeyba512352015-11-12 20:17:45 -08001059 int UNLOCK_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 351;
Wale Ogunwale3b93a4d2016-01-29 17:46:53 -08001060 int IN_MULTI_WINDOW_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 352;
1061 int IN_PICTURE_IN_PICTURE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 353;
Gustav Sennton6258dcd2015-10-30 19:25:37 +00001062 int KILL_PACKAGE_DEPENDENTS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 354;
Wale Ogunwale3b93a4d2016-01-29 17:46:53 -08001063 int ENTER_PICTURE_IN_PICTURE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 355;
Jorim Jaggife89d122015-12-22 16:28:44 +01001064 int ACTIVITY_RELAUNCHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 356;
Vladislav Kaznacheevb23a7572015-12-18 12:23:43 -08001065 int GET_URI_PERMISSION_OWNER_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 357;
Jorim Jaggidc249c42015-12-15 14:57:31 -08001066 int RESIZE_DOCKED_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 358;
Jorim Jaggife89d122015-12-22 16:28:44 +01001067 int SET_VR_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 359;
Felipe Lemef3fa0f82016-01-07 12:08:19 -08001068 int GET_GRANTED_URI_PERMISSIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 360;
1069 int CLEAR_GRANTED_URI_PERMISSIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 361;
Christopher Tate63fec3e2015-12-11 18:35:28 -08001070 int IS_APP_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 362;
Amith Yamasani0af6fa72016-01-17 15:36:19 -08001071 int START_LOCAL_VOICE_INTERACTION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 363;
1072 int STOP_LOCAL_VOICE_INTERACTION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 364;
1073 int SUPPORTS_LOCAL_VOICE_INTERACTION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 365;
Wale Ogunwale480dca02016-02-06 13:58:29 -08001074 int NOTIFY_PINNED_STACK_ANIMATION_ENDED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 366;
Wale Ogunwale06e8ee02016-02-12 12:56:32 -08001075 int REMOVE_STACK = IBinder.FIRST_CALL_TRANSACTION + 367;
Dianne Hackbornb2117d12016-02-16 18:26:35 -08001076 int SET_LENIENT_BACKGROUND_CHECK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+368;
Dianne Hackborn970510b2016-02-24 16:56:42 -08001077 int GET_MEMORY_TRIM_LEVEL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+369;
Robert Carr0d00c2e2016-02-29 17:45:02 -08001078 int RESIZE_PINNED_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 370;
Ruben Brunke24b9a62016-02-16 21:38:24 -08001079 int IS_VR_PACKAGE_ENABLED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 371;
Jorim Jaggid47e7e12016-03-01 09:57:38 +01001080 int SWAP_DOCKED_AND_FULLSCREEN_STACK = IBinder.FIRST_CALL_TRANSACTION + 372;
Tony Mak9c6e8ce2016-03-21 12:07:16 +00001081 int NOTIFY_LOCKED_PROFILE = IBinder.FIRST_CALL_TRANSACTION + 373;
Tony Mak646fe992016-04-21 16:43:08 +01001082 int START_CONFIRM_DEVICE_CREDENTIAL_INTENT = IBinder.FIRST_CALL_TRANSACTION + 374;
Christopher Tate27d92e42016-05-06 11:25:11 -07001083 int SEND_IDLE_JOB_TRIGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 375;
Dianne Hackborn0c4e6a82016-05-13 17:37:08 -07001084 int SEND_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 376;
Tim Murray33eb07f2016-06-10 10:03:20 -07001085
1086 // Start of N MR1 transactions
Srinath Sridharane535a582016-06-27 18:13:47 -07001087 int SET_VR_THREAD_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 377;
Tim Murray33eb07f2016-06-10 10:03:20 -07001088 int SET_RENDER_THREAD_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 378;
Jorim Jaggif6782ee2016-07-22 11:40:00 +02001089 int SET_HAS_TOP_UI = IBinder.FIRST_CALL_TRANSACTION + 379;
Rubin Xu89927b32016-07-28 14:34:26 +01001090 int CAN_BYPASS_WORK_CHALLENGE = IBinder.FIRST_CALL_TRANSACTION + 380;
Chong Zhangfec694e2016-08-09 12:57:38 -07001091
1092 // Start of O transactions
1093 int REQUEST_ACTIVITY_RELAUNCH = IBinder.FIRST_CALL_TRANSACTION+400;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001094}