blob: ebdd302c6d5d538d805e6fad56d37dc453d54f6f [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
Craig Mautnerc00204b2013-03-05 15:02:14 -080019import android.app.ActivityManager.RunningServiceInfo;
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -070020import android.app.ActivityManager.RunningTaskInfo;
Craig Mautnerbdc748af2013-12-02 14:08:25 -080021import android.app.ActivityManager.StackInfo;
Dianne Hackborn69c6adc2015-06-02 10:52:59 -070022import android.app.assist.AssistContent;
23import android.app.assist.AssistStructure;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import android.content.ComponentName;
25import android.content.ContentProviderNative;
26import android.content.IContentProvider;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070027import android.content.IIntentReceiver;
28import android.content.IIntentSender;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import android.content.Intent;
30import android.content.IntentFilter;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070031import android.content.IntentSender;
Jeff Sharkeye66c1772013-09-20 14:30:59 -070032import android.content.UriPermission;
Christopher Tate181fafa2009-05-14 11:12:14 -070033import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034import android.content.pm.ConfigurationInfo;
35import android.content.pm.IPackageDataObserver;
Jeff Sharkeye66c1772013-09-20 14:30:59 -070036import android.content.pm.ParceledListSlice;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.content.pm.ProviderInfo;
Amith Yamasani52f1d752012-03-28 18:19:29 -070038import android.content.pm.UserInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.content.res.Configuration;
40import android.graphics.Bitmap;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -070041import android.graphics.Point;
Craig Mautnerbdc748af2013-12-02 14:08:25 -080042import android.graphics.Rect;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.net.Uri;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070044import android.os.Bundle;
Dianne Hackborn3025ef32009-08-31 21:31:47 -070045import android.os.Debug;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046import android.os.IBinder;
47import android.os.IInterface;
48import android.os.Parcel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049import android.os.ParcelFileDescriptor;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070050import android.os.Parcelable;
Craig Mautnera0026042014-04-23 11:45:37 -070051import android.os.PersistableBundle;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070052import android.os.RemoteException;
53import android.os.StrictMode;
Dianne Hackborn91097de2014-04-04 18:02:06 -070054import android.service.voice.IVoiceInteractionSession;
55import com.android.internal.app.IVoiceInteractor;
Dianne Hackbornae6688b2015-02-11 17:02:41 -080056import com.android.internal.os.IResultReceiver;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057
58import java.util.List;
59
60/**
61 * System private API for talking with the activity manager service. This
62 * provides calls from the application back to the activity manager.
63 *
64 * {@hide}
65 */
66public interface IActivityManager extends IInterface {
Jeff Hao1b012d32014-08-20 10:35:34 -070067 public int startActivity(IApplicationThread caller, String callingPackage, Intent intent,
68 String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags,
69 ProfilerInfo profilerInfo, Bundle options) throws RemoteException;
70 public int startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent,
71 String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags,
72 ProfilerInfo profilerInfo, Bundle options, int userId) throws RemoteException;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -070073 public int startActivityAsCaller(IApplicationThread caller, String callingPackage,
Jeff Hao1b012d32014-08-20 10:35:34 -070074 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
Dianne Hackborna7cfbe02015-07-16 10:52:52 -070075 int flags, ProfilerInfo profilerInfo, Bundle options, boolean ignoreTargetSecurity,
76 int userId) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -080077 public WaitResult startActivityAndWait(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -070078 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
Jeff Hao1b012d32014-08-20 10:35:34 -070079 int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options,
80 int userId) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -080081 public int startActivityWithConfig(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -070082 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
83 int requestCode, int startFlags, Configuration newConfig,
Dianne Hackborn41203752012-08-31 14:05:51 -070084 Bundle options, int userId) throws RemoteException;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070085 public int startActivityIntentSender(IApplicationThread caller,
86 IntentSender intent, Intent fillInIntent, String resolvedType,
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070087 IBinder resultTo, String resultWho, int requestCode,
Dianne Hackborna4972e92012-03-14 10:38:05 -070088 int flagsMask, int flagsValues, Bundle options) throws RemoteException;
Dianne Hackborn91097de2014-04-04 18:02:06 -070089 public int startVoiceActivity(String callingPackage, int callingPid, int callingUid,
90 Intent intent, String resolvedType, IVoiceInteractionSession session,
Jeff Hao1b012d32014-08-20 10:35:34 -070091 IVoiceInteractor interactor, int flags, ProfilerInfo profilerInfo, Bundle options,
92 int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 public boolean startNextMatchingActivity(IBinder callingActivity,
Dianne Hackborna4972e92012-03-14 10:38:05 -070094 Intent intent, Bundle options) throws RemoteException;
Wale Ogunwale7e8184b2015-10-05 14:37:03 -070095 public int startActivityFromRecents(int taskId, int launchStackId, Bundle options)
96 throws RemoteException;
Wale Ogunwaleba7881c2015-08-01 19:28:29 -070097 public boolean finishActivity(IBinder token, int code, Intent data, int finishTask)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098 throws RemoteException;
99 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -0700100 public boolean finishActivityAffinity(IBinder token) throws RemoteException;
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -0700101 public void finishVoiceTask(IVoiceInteractionSession session) throws RemoteException;
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700102 public boolean releaseActivityInstance(IBinder token) throws RemoteException;
103 public void releaseSomeActivities(IApplicationThread app) throws RemoteException;
Dianne Hackborn061d58a2010-03-12 15:07:06 -0800104 public boolean willActivityBeVisible(IBinder token) throws RemoteException;
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700105 public Intent registerReceiver(IApplicationThread caller, String callerPackage,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800106 IIntentReceiver receiver, IntentFilter filter,
Dianne Hackborn20e80982012-08-31 19:00:44 -0700107 String requiredPermission, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 public int broadcastIntent(IApplicationThread caller, Intent intent,
110 String resolvedType, IIntentReceiver resultTo, int resultCode,
Fyodor Kupolovd4fd8c72015-07-13 19:19:25 -0700111 String resultData, Bundle map, String[] requiredPermissions,
Dianne Hackborna750a632015-06-16 17:18:23 -0700112 int appOp, Bundle options, boolean serialized, boolean sticky, int userId) throws RemoteException;
Amith Yamasani742a6712011-05-04 14:49:28 -0700113 public void unbroadcastIntent(IApplicationThread caller, Intent intent, int userId) throws RemoteException;
riddle_hsu1f5ac4d2015-01-03 15:38:21 +0800114 public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map,
115 boolean abortBroadcast, int flags) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800116 public void attachApplication(IApplicationThread app) throws RemoteException;
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700117 public void activityResumed(IBinder token) throws RemoteException;
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700118 public void activityIdle(IBinder token, Configuration config,
119 boolean stopProfiling) throws RemoteException;
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700120 public void activityPaused(IBinder token) throws RemoteException;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800121 public void activityStopped(IBinder token, Bundle state,
Craig Mautnera0026042014-04-23 11:45:37 -0700122 PersistableBundle persistentState, CharSequence description) throws RemoteException;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800123 public void activitySlept(IBinder token) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124 public void activityDestroyed(IBinder token) throws RemoteException;
Filip Gruszczynski23493322015-07-29 17:02:59 -0700125 public void reportSizeConfigurations(IBinder token, int[] horizontalSizeConfiguration,
126 int[] verticalSizeConfigurations) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 public String getCallingPackage(IBinder token) throws RemoteException;
128 public ComponentName getCallingActivity(IBinder token) throws RemoteException;
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700129 public List<IAppTask> getAppTasks(String callingPackage) throws RemoteException;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700130 public int addAppTask(IBinder activityToken, Intent intent,
131 ActivityManager.TaskDescription description, Bitmap thumbnail) throws RemoteException;
132 public Point getAppTaskThumbnailSize() throws RemoteException;
Dianne Hackborn09233282014-04-30 11:33:59 -0700133 public List<RunningTaskInfo> getTasks(int maxNum, int flags) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134 public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
Amith Yamasani82644082012-08-03 13:09:11 -0700135 int flags, int userId) throws RemoteException;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700136 public ActivityManager.TaskThumbnail getTaskThumbnail(int taskId) throws RemoteException;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800137 public List<RunningServiceInfo> getServices(int maxNum, int flags) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800138 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
139 throws RemoteException;
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700140 public void moveTaskToFront(int task, int flags, Bundle options) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
142 public void moveTaskBackwards(int task) throws RemoteException;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800143 public void moveTaskToStack(int taskId, int stackId, boolean toTop) throws RemoteException;
Wale Ogunwale59a73ca2015-09-14 12:54:50 -0700144 public void moveTaskToDockedStack(int taskId, int createMode, boolean toTop)
145 throws RemoteException;
Wale Ogunwale079a0042015-10-24 11:44:07 -0700146 public boolean moveTopActivityToPinnedStack(int stackId, Rect bounds) throws RemoteException;
Wale Ogunwaleffc11bb2015-10-10 13:05:45 -0700147 public void resizeStack(int stackId, Rect bounds, boolean allowResizeInDockedMode) throws RemoteException;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700148 public void positionTaskInStack(int taskId, int stackId, int position) throws RemoteException;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800149 public List<StackInfo> getAllStackInfos() throws RemoteException;
150 public StackInfo getStackInfo(int stackId) throws RemoteException;
Winson Chung303e1ff2014-03-07 15:06:19 -0800151 public boolean isInHomeStack(int taskId) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700152 public void setFocusedStack(int stackId) throws RemoteException;
Winson Chungd16c5652015-01-26 16:11:07 -0800153 public int getFocusedStackId() throws RemoteException;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700154 public void setFocusedTask(int taskId) throws RemoteException;
Winson Chung740c3ac2014-11-12 16:14:38 -0800155 public void registerTaskStackListener(ITaskStackListener listener) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800156 public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 public ContentProviderHolder getContentProvider(IApplicationThread caller,
Jeff Sharkey6d515712012-09-20 16:06:08 -0700158 String name, int userId, boolean stable) throws RemoteException;
159 public ContentProviderHolder getContentProviderExternal(String name, int userId, IBinder token)
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800160 throws RemoteException;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700161 public void removeContentProvider(IBinder connection, boolean stable) throws RemoteException;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800162 public void removeContentProviderExternal(String name, IBinder token) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 public void publishContentProviders(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700164 List<ContentProviderHolder> providers) throws RemoteException;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700165 public boolean refContentProvider(IBinder connection, int stableDelta, int unstableDelta)
166 throws RemoteException;
167 public void unstableProviderDied(IBinder connection) throws RemoteException;
Jeff Sharkey7aa76012013-09-30 14:26:27 -0700168 public void appNotRespondingViaProvider(IBinder connection) throws RemoteException;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700169 public PendingIntent getRunningServiceControlPanel(ComponentName service)
170 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171 public ComponentName startService(IApplicationThread caller, Intent service,
Svet Ganov99b60432015-06-27 13:15:22 -0700172 String resolvedType, String callingPackage, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800173 public int stopService(IApplicationThread caller, Intent service,
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700174 String resolvedType, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175 public boolean stopServiceToken(ComponentName className, IBinder token,
176 int startId) throws RemoteException;
177 public void setServiceForeground(ComponentName className, IBinder token,
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700178 int id, Notification notification, boolean keepNotification) throws RemoteException;
Svet Ganov99b60432015-06-27 13:15:22 -0700179 public int bindService(IApplicationThread caller, IBinder token, Intent service,
180 String resolvedType, IServiceConnection connection, int flags,
181 String callingPackage, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800182 public boolean unbindService(IServiceConnection connection) throws RemoteException;
183 public void publishService(IBinder token,
184 Intent intent, IBinder service) throws RemoteException;
185 public void unbindFinished(IBinder token, Intent service,
186 boolean doRebind) throws RemoteException;
187 /* oneway */
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700188 public void serviceDoneExecuting(IBinder token, int type, int startId,
189 int res) throws RemoteException;
Svet Ganov99b60432015-06-27 13:15:22 -0700190 public IBinder peekService(Intent service, String resolvedType, String callingPackage)
191 throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700192
Christopher Tate181fafa2009-05-14 11:12:14 -0700193 public boolean bindBackupAgent(ApplicationInfo appInfo, int backupRestoreMode)
194 throws RemoteException;
Christopher Tate346acb12012-10-15 19:20:25 -0700195 public void clearPendingBackup() throws RemoteException;
Christopher Tate181fafa2009-05-14 11:12:14 -0700196 public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException;
197 public void unbindBackupAgent(ApplicationInfo appInfo) throws RemoteException;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700198 public void killApplicationProcess(String processName, int uid) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700199
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800200 public boolean startInstrumentation(ComponentName className, String profileFile,
Svetoslav Ganov80943d82013-01-02 10:25:37 -0800201 int flags, Bundle arguments, IInstrumentationWatcher watcher,
Narayan Kamath8dcfefd2014-05-15 18:12:59 +0100202 IUiAutomationConnection connection, int userId,
203 String abiOverride) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204 public void finishInstrumentation(IApplicationThread target,
205 int resultCode, Bundle results) throws RemoteException;
206
207 public Configuration getConfiguration() throws RemoteException;
208 public void updateConfiguration(Configuration values) throws RemoteException;
209 public void setRequestedOrientation(IBinder token,
210 int requestedOrientation) throws RemoteException;
211 public int getRequestedOrientation(IBinder token) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700212
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800213 public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
214 public String getPackageForToken(IBinder token) throws RemoteException;
215
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800216 public IIntentSender getIntentSender(int type,
217 String packageName, IBinder token, String resultWho,
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800218 int requestCode, Intent[] intents, String[] resolvedTypes,
Dianne Hackborn41203752012-08-31 14:05:51 -0700219 int flags, Bundle options, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220 public void cancelIntentSender(IIntentSender sender) throws RemoteException;
221 public boolean clearApplicationUserData(final String packageName,
Amith Yamasani742a6712011-05-04 14:49:28 -0700222 final IPackageDataObserver observer, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800223 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
Christopher Tatec4a07d12012-04-06 14:19:13 -0700224 public int getUidForIntentSender(IIntentSender sender) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700225
Dianne Hackborn41203752012-08-31 14:05:51 -0700226 public int handleIncomingUser(int callingPid, int callingUid, int userId, boolean allowAll,
227 boolean requireFull, String name, String callerPackage) throws RemoteException;
228
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229 public void setProcessLimit(int max) throws RemoteException;
230 public int getProcessLimit() throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700231
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800232 public void setProcessForeground(IBinder token, int pid,
233 boolean isForeground) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700234
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800235 public int checkPermission(String permission, int pid, int uid)
236 throws RemoteException;
Dianne Hackbornff170242014-11-19 10:59:01 -0800237 public int checkPermissionWithToken(String permission, int pid, int uid, IBinder callerToken)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800238 throws RemoteException;
Dianne Hackbornff170242014-11-19 10:59:01 -0800239
240 public int checkUriPermission(Uri uri, int pid, int uid, int mode, int userId,
241 IBinder callerToken) throws RemoteException;
Nicolas Prevotd85fc722014-04-16 19:52:08 +0100242 public void grantUriPermission(IApplicationThread caller, String targetPkg, Uri uri,
243 int mode, int userId) throws RemoteException;
244 public void revokeUriPermission(IApplicationThread caller, Uri uri, int mode, int userId)
245 throws RemoteException;
246 public void takePersistableUriPermission(Uri uri, int modeFlags, int userId)
247 throws RemoteException;
248 public void releasePersistableUriPermission(Uri uri, int modeFlags, int userId)
249 throws RemoteException;
Jeff Sharkeybcaac0a2013-10-09 14:21:08 -0700250 public ParceledListSlice<UriPermission> getPersistedUriPermissions(
251 String packageName, boolean incoming) throws RemoteException;
Jeff Sharkeye66c1772013-09-20 14:30:59 -0700252
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800253 public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
254 throws RemoteException;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700255
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800256 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700257
Dianne Hackborn1676c852012-09-10 14:52:30 -0700258 public void killBackgroundProcesses(final String packageName, int userId)
259 throws RemoteException;
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -0800260 public void killAllBackgroundProcesses() throws RemoteException;
Dianne Hackborn1676c852012-09-10 14:52:30 -0700261 public void forceStopPackage(final String packageName, int userId) throws RemoteException;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700262
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800263 // Note: probably don't want to allow applications access to these.
Dianne Hackbornff5b1582012-04-12 17:24:07 -0700264 public void setLockScreenShown(boolean shown) throws RemoteException;
265
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800266 public void unhandledBack() throws RemoteException;
267 public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException;
268 public void setDebugApp(
269 String packageName, boolean waitForDebugger, boolean persistent)
270 throws RemoteException;
271 public void setAlwaysFinish(boolean enabled) throws RemoteException;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700272 public void setActivityController(IActivityController watcher)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800273 throws RemoteException;
274
275 public void enterSafeMode() throws RemoteException;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700276
Dianne Hackborn1e383822015-04-10 14:02:33 -0700277 public void noteWakeupAlarm(IIntentSender sender, int sourceUid, String sourcePkg, String tag)
278 throws RemoteException;
279 public void noteAlarmStart(IIntentSender sender, int sourceUid, String tag)
280 throws RemoteException;
281 public void noteAlarmFinish(IIntentSender sender, int sourceUid, String tag)
Dianne Hackborn099bc622014-01-22 13:39:16 -0800282 throws RemoteException;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700283
Dianne Hackborn64825172011-03-02 21:32:58 -0800284 public boolean killPids(int[] pids, String reason, boolean secure) throws RemoteException;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700285 public boolean killProcessesBelowForeground(String reason) throws RemoteException;
286
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800287 // Special low-level communication with activity manager.
Dan Egnor60d87622009-12-16 16:32:58 -0800288 public void handleApplicationCrash(IBinder app,
289 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
Dianne Hackborn52322712014-08-26 22:47:26 -0700290 public boolean handleApplicationWtf(IBinder app, String tag, boolean system,
Dan Egnorb7f03672009-12-09 16:22:32 -0800291 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
Brad Fitzpatrick46d42382010-06-11 13:57:58 -0700292
293 // A StrictMode violation to be handled. The violationMask is a
294 // subset of the original StrictMode policy bitmask, with only the
295 // bit violated and penalty bits to be executed by the
296 // ActivityManagerService remaining set.
297 public void handleApplicationStrictModeViolation(IBinder app, int violationMask,
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -0700298 StrictMode.ViolationInfo crashInfo) throws RemoteException;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700299
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800300 /*
Craig Mautner5eda9b32013-07-02 11:58:16 -0700301 * This will deliver the specified signal to all the persistent processes. Currently only
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302 * SIGUSR1 is delivered. All others are ignored.
303 */
304 public void signalPersistentProcesses(int signal) throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800305 // Retrieve running application processes in the system
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800306 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
307 throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800308 // Retrieve info of applications installed on external media that are currently
309 // running.
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700310 public List<ApplicationInfo> getRunningExternalApplications()
311 throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800312 // Get memory information about the calling process.
313 public void getMyMemoryState(ActivityManager.RunningAppProcessInfo outInfo)
314 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800315 // Get device configuration
316 public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
Jeff Hao1b012d32014-08-20 10:35:34 -0700317
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800318 // Turn on/off profiling in a particular process.
Dianne Hackborn1676c852012-09-10 14:52:30 -0700319 public boolean profileControl(String process, int userId, boolean start,
Jeff Hao1b012d32014-08-20 10:35:34 -0700320 ProfilerInfo profilerInfo, int profileType) throws RemoteException;
321
Dianne Hackborn55280a92009-05-07 15:53:46 -0700322 public boolean shutdown(int timeout) throws RemoteException;
Jeff Hao1b012d32014-08-20 10:35:34 -0700323
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700324 public void stopAppSwitches() throws RemoteException;
325 public void resumeAppSwitches() throws RemoteException;
Dianne Hackbornfee756f2014-07-16 17:31:10 -0700326
327 public void addPackageDependency(String packageName) throws RemoteException;
328
Dianne Hackborn21d9b562013-05-28 17:46:59 -0700329 public void killApplicationWithAppId(String pkg, int appid, String reason)
330 throws RemoteException;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700331
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700332 public void closeSystemDialogs(String reason) throws RemoteException;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700333
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -0700334 public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids)
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700335 throws RemoteException;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700336
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700337 public void overridePendingTransition(IBinder token, String packageName,
338 int enterAnim, int exitAnim) throws RemoteException;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700339
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800340 public boolean isUserAMonkey() throws RemoteException;
Adam Momtaz8f6f1f42013-04-10 12:42:58 -0700341
342 public void setUserIsMonkey(boolean monkey) throws RemoteException;
343
Dianne Hackborn860755f2010-06-03 18:47:52 -0700344 public void finishHeavyWeightApp() throws RemoteException;
Daniel Sandler69a48172010-06-23 16:29:36 -0400345
Craig Mautnerbc57cd12013-08-19 15:47:42 -0700346 public boolean convertFromTranslucent(IBinder token) throws RemoteException;
Craig Mautner233ceee2014-05-09 17:05:11 -0700347 public boolean convertToTranslucent(IBinder token, ActivityOptions options) throws RemoteException;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700348 public void notifyActivityDrawn(IBinder token) throws RemoteException;
Craig Mautner233ceee2014-05-09 17:05:11 -0700349 public ActivityOptions getActivityOptions(IBinder token) throws RemoteException;
Craig Mautner4addfc52013-06-25 08:05:45 -0700350
Craig Mautner6e2f3952014-09-09 14:26:41 -0700351 public void bootAnimationComplete() throws RemoteException;
352
Daniel Sandler69a48172010-06-23 16:29:36 -0400353 public void setImmersive(IBinder token, boolean immersive) throws RemoteException;
354 public boolean isImmersive(IBinder token) throws RemoteException;
355 public boolean isTopActivityImmersive() throws RemoteException;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700356 public boolean isTopOfTask(IBinder token) throws RemoteException;
357
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700358 public void crashApplication(int uid, int initialPid, String packageName,
359 String message) throws RemoteException;
Dianne Hackborncca1f0e2010-09-26 18:34:53 -0700360
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700361 public String getProviderMimeType(Uri uri, int userId) throws RemoteException;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700362
Dianne Hackborn7e269642010-08-25 19:50:20 -0700363 public IBinder newUriPermissionOwner(String name) throws RemoteException;
364 public void grantUriPermissionFromOwner(IBinder owner, int fromUid, String targetPkg,
Nicolas Prevotf1939902014-06-25 09:29:02 +0100365 Uri uri, int mode, int sourceUserId, int targetUserId) throws RemoteException;
Dianne Hackborn7e269642010-08-25 19:50:20 -0700366 public void revokeUriPermissionFromOwner(IBinder owner, Uri uri,
Nicolas Prevotd85fc722014-04-16 19:52:08 +0100367 int mode, int userId) throws RemoteException;
Andy McFadden824c5102010-07-09 16:26:57 -0700368
Nicolas Prevotd85fc722014-04-16 19:52:08 +0100369 public int checkGrantUriPermission(int callingUid, String targetPkg, Uri uri,
370 int modeFlags, int userId) throws RemoteException;
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -0700371
Andy McFadden824c5102010-07-09 16:26:57 -0700372 // Cause the specified process to dump the specified heap.
Dianne Hackborn1676c852012-09-10 14:52:30 -0700373 public boolean dumpHeap(String process, int userId, boolean managed, String path,
Andy McFadden824c5102010-07-09 16:26:57 -0700374 ParcelFileDescriptor fd) throws RemoteException;
375
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800376 public int startActivities(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -0700377 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
Amith Yamasaniea7e9152012-09-24 16:11:18 -0700378 Bundle options, int userId) throws RemoteException;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800379
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700380 public int getFrontActivityScreenCompatMode() throws RemoteException;
381 public void setFrontActivityScreenCompatMode(int mode) throws RemoteException;
382 public int getPackageScreenCompatMode(String packageName) throws RemoteException;
383 public void setPackageScreenCompatMode(String packageName, int mode)
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400384 throws RemoteException;
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700385 public boolean getPackageAskScreenCompat(String packageName) throws RemoteException;
386 public void setPackageAskScreenCompat(String packageName, boolean ask)
387 throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700388
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700389 // Multi-user APIs
390 public boolean switchUser(int userid) throws RemoteException;
Kenny Guy08488bf2014-02-21 17:40:37 +0000391 public boolean startUserInBackground(int userid) throws RemoteException;
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700392 public int stopUser(int userid, IStopUserCallback callback) throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700393 public UserInfo getCurrentUser() throws RemoteException;
Dianne Hackborna8a9bd62012-10-09 15:36:59 -0700394 public boolean isUserRunning(int userid, boolean orStopping) throws RemoteException;
Dianne Hackbornc72fc672012-09-20 13:12:03 -0700395 public int[] getRunningUserIds() throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700396
Wale Ogunwaled54b5782014-10-23 15:55:23 -0700397 public boolean removeTask(int taskId) throws RemoteException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700398
Jeff Sharkeya4620792011-05-20 15:29:23 -0700399 public void registerProcessObserver(IProcessObserver observer) throws RemoteException;
400 public void unregisterProcessObserver(IProcessObserver observer) throws RemoteException;
401
Dianne Hackbornd23e0d62015-05-15 16:36:12 -0700402 public void registerUidObserver(IUidObserver observer) throws RemoteException;
403 public void unregisterUidObserver(IUidObserver observer) throws RemoteException;
404
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700405 public boolean isIntentSenderTargetedToPackage(IIntentSender sender) throws RemoteException;
406
Dianne Hackborn1927ae82012-06-22 15:21:36 -0700407 public boolean isIntentSenderAnActivity(IIntentSender sender) throws RemoteException;
408
Dianne Hackborn81038902012-11-26 17:04:09 -0800409 public Intent getIntentForIntentSender(IIntentSender sender) throws RemoteException;
410
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800411 public String getTagForIntentSender(IIntentSender sender, String prefix) throws RemoteException;
412
Dianne Hackborn31ca8542011-07-19 14:58:28 -0700413 public void updatePersistentConfiguration(Configuration values) throws RemoteException;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700414
415 public long[] getProcessPss(int[] pids) throws RemoteException;
416
Dianne Hackborn661cd522011-08-22 00:26:20 -0700417 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException;
418
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200419 public void keyguardWaitingForActivityDrawn() throws RemoteException;
Dianne Hackborn90c52de2011-09-23 12:57:44 -0700420
Jorim Jaggi827e0fa2015-05-07 11:41:41 -0700421 public void keyguardGoingAway(boolean disableWindowAnimations,
422 boolean keyguardGoingToNotificationShade) throws RemoteException;
423
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -0700424 public boolean shouldUpRecreateTask(IBinder token, String destAffinity)
Adam Powelldd8fab22012-03-22 17:47:27 -0700425 throws RemoteException;
426
427 public boolean navigateUpTo(IBinder token, Intent target, int resultCode, Intent resultData)
428 throws RemoteException;
429
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800430 // These are not public because you need to be very careful in how you
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700431 // manage your activity to make sure it is always the uid you expect.
432 public int getLaunchedFromUid(IBinder activityToken) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800433 public String getLaunchedFromPackage(IBinder activityToken) throws RemoteException;
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700434
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700435 public void registerUserSwitchObserver(IUserSwitchObserver observer) throws RemoteException;
436 public void unregisterUserSwitchObserver(IUserSwitchObserver observer) throws RemoteException;
437
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700438 public void requestBugReport() throws RemoteException;
439
Jeff Brownbd181bb2013-09-10 16:44:24 -0700440 public long inputDispatchingTimedOut(int pid, boolean aboveSystem, String reason)
441 throws RemoteException;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700442
Adam Skorydfc7fd72013-08-05 19:23:41 -0700443 public Bundle getAssistContextExtras(int requestType) throws RemoteException;
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -0800444
Dianne Hackborn17f69352015-07-17 18:04:14 -0700445 public boolean requestAssistContextExtras(int requestType, IResultReceiver receiver,
446 IBinder activityToken) throws RemoteException;
Dianne Hackbornae6688b2015-02-11 17:02:41 -0800447
Dianne Hackborn09d57fe2015-05-27 18:05:52 -0700448 public void reportAssistContextExtras(IBinder token, Bundle extras,
Dianne Hackborna3acdb32015-06-08 17:07:40 -0700449 AssistStructure structure, AssistContent content, Uri referrer) throws RemoteException;
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -0800450
Tim Kilbourn0e5f1102015-06-05 16:18:09 -0700451 public boolean launchAssistIntent(Intent intent, int requestType, String hint, int userHandle,
452 Bundle args) throws RemoteException;
Dianne Hackbornfdf5b352014-10-08 17:43:48 -0700453
Dianne Hackborn17f69352015-07-17 18:04:14 -0700454 public boolean isAssistDataAllowedOnCurrentActivity() throws RemoteException;
455
456 public boolean showAssistFromActivity(IBinder token, Bundle args) throws RemoteException;
Benjamin Franzc200f442015-06-25 18:20:04 +0100457
Svetoslavaa41add2015-08-06 15:03:55 -0700458 public void killUid(int appId, int userId, String reason) throws RemoteException;
Dianne Hackbornf1b78242013-04-08 22:28:59 -0700459
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700460 public void hang(IBinder who, boolean allowRestart) throws RemoteException;
461
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700462 public void reportActivityFullyDrawn(IBinder token) throws RemoteException;
463
Dianne Hackborn57a7f592013-07-22 18:21:32 -0700464 public void restart() throws RemoteException;
465
Dianne Hackborn35f72be2013-09-16 10:57:39 -0700466 public void performIdleMaintenance() throws RemoteException;
467
Todd Kennedyca4d8422015-01-15 15:19:22 -0800468 public IActivityContainer createVirtualActivityContainer(IBinder parentActivityToken,
Craig Mautner4a1cb222013-12-04 16:14:06 -0800469 IActivityContainerCallback callback) throws RemoteException;
470
Todd Kennedy4900bf92015-01-16 16:05:14 -0800471 public IActivityContainer createStackOnDisplay(int displayId) throws RemoteException;
472
Craig Mautner95da1082014-02-24 17:54:35 -0800473 public void deleteActivityContainer(IActivityContainer container) throws RemoteException;
474
Craig Mautneraa7e3ed2015-02-17 10:17:21 -0800475 public int getActivityDisplayId(IBinder activityToken) throws RemoteException;
Craig Mautnere0a38842013-12-16 16:14:02 -0800476
Jason Monk62515be2014-05-21 16:06:19 -0400477 public void startLockTaskModeOnCurrent() throws RemoteException;
478
Craig Mautneraea74a52014-03-08 14:23:10 -0800479 public void startLockTaskMode(int taskId) throws RemoteException;
480
Craig Mautneraea74a52014-03-08 14:23:10 -0800481 public void startLockTaskMode(IBinder token) throws RemoteException;
482
Craig Mautneraea74a52014-03-08 14:23:10 -0800483 public void stopLockTaskMode() throws RemoteException;
484
Jason Monk62515be2014-05-21 16:06:19 -0400485 public void stopLockTaskModeOnCurrent() throws RemoteException;
486
Craig Mautneraea74a52014-03-08 14:23:10 -0800487 public boolean isInLockTaskMode() throws RemoteException;
488
Benjamin Franz43261142015-02-11 15:59:44 +0000489 public int getLockTaskModeState() throws RemoteException;
490
Craig Mautnerc21ae9e2015-04-15 09:45:42 -0700491 public void showLockTaskEscapeMessage(IBinder token) throws RemoteException;
492
Winson Chunga449dc02014-05-16 11:15:04 -0700493 public void setTaskDescription(IBinder token, ActivityManager.TaskDescription values)
Winson Chung03a9bae2014-05-02 09:56:12 -0700494 throws RemoteException;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800495 public void setTaskResizeable(int taskId, boolean resizeable) throws RemoteException;
Chong Zhang87b21722015-09-21 15:39:51 -0700496 public void resizeTask(int taskId, Rect bounds, int resizeMode) throws RemoteException;
Skuhnece2faa52015-08-11 10:36:38 -0700497
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700498 public Rect getTaskBounds(int taskId) throws RemoteException;
Craig Mautner648f69b2014-09-18 14:16:26 -0700499 public Bitmap getTaskDescriptionIcon(String filename) throws RemoteException;
Craig Mautner2fbd7542014-03-21 09:34:07 -0700500
Winson Chung044d5292014-11-06 11:05:19 -0800501 public void startInPlaceAnimationOnFrontMostApplication(ActivityOptions opts)
502 throws RemoteException;
503
Jose Lima4b6c6692014-08-12 17:41:12 -0700504 public boolean requestVisibleBehind(IBinder token, boolean visible) throws RemoteException;
505 public boolean isBackgroundVisibleBehind(IBinder token) throws RemoteException;
506 public void backgroundResourcesReleased(IBinder token) throws RemoteException;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700507
Craig Mautnerbb742462014-07-07 15:28:55 -0700508 public void notifyLaunchTaskBehindComplete(IBinder token) throws RemoteException;
Craig Mautner8746a472014-07-24 15:12:54 -0700509 public void notifyEnterAnimationComplete(IBinder token) throws RemoteException;
Craig Mautnerbb742462014-07-07 15:28:55 -0700510
Jeff Sharkey605eb792014-11-04 13:34:06 -0800511 public void notifyCleartextNetwork(int uid, byte[] firstPacket) throws RemoteException;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800512
Dianne Hackbornd59a5d52015-04-04 14:52:14 -0700513 public void setDumpHeapDebugLimit(String processName, int uid, long maxMemSize,
514 String reportPackage) throws RemoteException;
Dianne Hackbornb9a5e4a2015-03-03 17:04:12 -0800515 public void dumpHeapFinished(String path) throws RemoteException;
516
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700517 public void setVoiceKeepAwake(IVoiceInteractionSession session, boolean keepAwake)
518 throws RemoteException;
Craig Mautnere5600772015-04-03 21:36:37 -0700519 public void updateLockTaskPackages(int userId, String[] packages) throws RemoteException;
Craig Mautner015c5e52015-04-23 10:39:39 -0700520 public void updateDeviceOwner(String packageName) throws RemoteException;
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700521
Adam Lesinskic30454c2015-06-24 13:24:35 -0700522 public int getPackageProcessState(String packageName, String callingPackage)
523 throws RemoteException;
Dianne Hackborn1e383822015-04-10 14:02:33 -0700524
Stefan Kuhne16045c22015-06-05 07:18:06 -0700525 public boolean setProcessMemoryTrimLevel(String process, int uid, int level)
526 throws RemoteException;
527
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700528 public boolean isRootVoiceInteraction(IBinder token) throws RemoteException;
529
Rahul Chaturvedi52613f92015-06-17 23:54:08 -0400530 // Start Binder transaction tracking for all applications.
531 public boolean startBinderTracking() throws RemoteException;
532
533 // Stop Binder transaction tracking for all applications and dump trace data to the given file
534 // descriptor.
535 public boolean stopBinderTrackingAndDump(ParcelFileDescriptor fd) throws RemoteException;
536
Wale Ogunwale868a5e12015-08-02 16:19:20 -0700537 public int getActivityStackId(IBinder token) throws RemoteException;
538 public void moveActivityToStack(IBinder token, int stackId) throws RemoteException;
539
Wale Ogunwale83301a92015-09-24 15:54:08 -0700540 public void suppressResizeConfigChanges(boolean suppress) throws RemoteException;
541
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -0700542 public void removeStack(int stackId) throws RemoteException;
543
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800544 /*
545 * Private non-Binder interfaces
546 */
547 /* package */ boolean testIsSystemReady();
Primiano Tucci810c0522014-07-25 18:03:16 +0100548
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800549 /** Information you can retrieve about a particular application. */
550 public static class ContentProviderHolder implements Parcelable {
551 public final ProviderInfo info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800552 public IContentProvider provider;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700553 public IBinder connection;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800554 public boolean noReleaseNeeded;
555
556 public ContentProviderHolder(ProviderInfo _info) {
557 info = _info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800558 }
559
Craig Mautnercf910b02013-04-23 11:23:27 -0700560 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800561 public int describeContents() {
562 return 0;
563 }
564
Craig Mautnercf910b02013-04-23 11:23:27 -0700565 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800566 public void writeToParcel(Parcel dest, int flags) {
567 info.writeToParcel(dest, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 if (provider != null) {
569 dest.writeStrongBinder(provider.asBinder());
570 } else {
571 dest.writeStrongBinder(null);
572 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700573 dest.writeStrongBinder(connection);
Dianne Hackbornb9a5e4a2015-03-03 17:04:12 -0800574 dest.writeInt(noReleaseNeeded ? 1 : 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800575 }
576
577 public static final Parcelable.Creator<ContentProviderHolder> CREATOR
578 = new Parcelable.Creator<ContentProviderHolder>() {
Craig Mautnercf910b02013-04-23 11:23:27 -0700579 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800580 public ContentProviderHolder createFromParcel(Parcel source) {
581 return new ContentProviderHolder(source);
582 }
583
Craig Mautnercf910b02013-04-23 11:23:27 -0700584 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800585 public ContentProviderHolder[] newArray(int size) {
586 return new ContentProviderHolder[size];
587 }
588 };
589
590 private ContentProviderHolder(Parcel source) {
591 info = ProviderInfo.CREATOR.createFromParcel(source);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800592 provider = ContentProviderNative.asInterface(
Dianne Hackbornb9a5e4a2015-03-03 17:04:12 -0800593 source.readStrongBinder());
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700594 connection = source.readStrongBinder();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800595 noReleaseNeeded = source.readInt() != 0;
596 }
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800597 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800598
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800599 /** Information returned after waiting for an activity start. */
600 public static class WaitResult implements Parcelable {
601 public int result;
602 public boolean timeout;
603 public ComponentName who;
604 public long thisTime;
605 public long totalTime;
606
607 public WaitResult() {
608 }
609
Craig Mautnercf910b02013-04-23 11:23:27 -0700610 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800611 public int describeContents() {
612 return 0;
613 }
614
Craig Mautnercf910b02013-04-23 11:23:27 -0700615 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800616 public void writeToParcel(Parcel dest, int flags) {
617 dest.writeInt(result);
618 dest.writeInt(timeout ? 1 : 0);
619 ComponentName.writeToParcel(who, dest);
620 dest.writeLong(thisTime);
621 dest.writeLong(totalTime);
622 }
623
624 public static final Parcelable.Creator<WaitResult> CREATOR
625 = new Parcelable.Creator<WaitResult>() {
Craig Mautnercf910b02013-04-23 11:23:27 -0700626 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800627 public WaitResult createFromParcel(Parcel source) {
628 return new WaitResult(source);
629 }
630
Craig Mautnercf910b02013-04-23 11:23:27 -0700631 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800632 public WaitResult[] newArray(int size) {
633 return new WaitResult[size];
634 }
635 };
636
637 private WaitResult(Parcel source) {
638 result = source.readInt();
639 timeout = source.readInt() != 0;
640 who = ComponentName.readFromParcel(source);
641 thisTime = source.readLong();
642 totalTime = source.readLong();
643 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700644 }
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800645
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800646 String descriptor = "android.app.IActivityManager";
647
648 // Please keep these transaction codes the same -- they are also
649 // sent by C++ code.
Dan Egnor60d87622009-12-16 16:32:58 -0800650 int HANDLE_APPLICATION_CRASH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800651 int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
652 int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
653 int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
654
655 // Remaining non-native transaction codes.
656 int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
657 int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
658 int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
659 int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
660 int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
661 int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
662 int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
663 int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
664 int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
665 int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
666 int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
667 int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
668 int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
669 int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
Craig Mautner428ecf22015-01-14 16:09:01 -0800670
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800671 int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
672 int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
Dianne Hackborn09233282014-04-30 11:33:59 -0700673
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800674 int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
675 int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700676 int REF_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+30;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800677 int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700678 int GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800679 int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
680 int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
681 int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
682 int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
683 int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700684 int ACTIVITY_RESUMED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+38;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800685 int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
686 int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
687 int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
688 int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
689 int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
690 int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
691 int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
692 int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
693 int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
694 int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
695 int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
696 int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
697 int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
698 int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
699 int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700700 int SET_ACTIVITY_CONTROLLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800701 int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
702 int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
703 int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
704 int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
705 int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
706 int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
707 int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
708 int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
709 int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
710 int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
711 int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
712 int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
713 int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
714 int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
715 int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
716 int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
717 int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
718 int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
719 int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
720 int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
721 int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800722 int FORCE_STOP_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -0700723 int KILL_PIDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800724 int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700725 int GET_TASK_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+81;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800726 int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
727 int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
728 int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800729 int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
Dianne Hackborn55280a92009-05-07 15:53:46 -0700730 int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700731 int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
732 int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
Christopher Tate181fafa2009-05-14 11:12:14 -0700733 int START_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+89;
734 int BACKUP_AGENT_CREATED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+90;
735 int UNBIND_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+91;
Christopher Tatec4a07d12012-04-06 14:19:13 -0700736 int GET_UID_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+92;
Dianne Hackborn41203752012-08-31 14:05:51 -0700737 int HANDLE_INCOMING_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+93;
Dianne Hackbornfee756f2014-07-16 17:31:10 -0700738 int ADD_PACKAGE_DEPENDENCY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+94;
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700739 int KILL_APPLICATION_WITH_APPID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+95;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700740 int CLOSE_SYSTEM_DIALOGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+96;
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700741 int GET_PROCESS_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+97;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700742 int KILL_APPLICATION_PROCESS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+98;
Dianne Hackbornfa82f222009-09-17 15:14:12 -0700743 int START_ACTIVITY_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+99;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700744 int OVERRIDE_PENDING_TRANSITION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+100;
Dan Egnor60d87622009-12-16 16:32:58 -0800745 int HANDLE_APPLICATION_WTF_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+101;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800746 int KILL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+102;
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800747 int IS_USER_A_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+103;
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800748 int START_ACTIVITY_AND_WAIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+104;
Dianne Hackborn061d58a2010-03-12 15:07:06 -0800749 int WILL_ACTIVITY_BE_VISIBLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+105;
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700750 int START_ACTIVITY_WITH_CONFIG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+106;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700751 int GET_RUNNING_EXTERNAL_APPLICATIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+107;
Dianne Hackborn860755f2010-06-03 18:47:52 -0700752 int FINISH_HEAVY_WEIGHT_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+108;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700753 int HANDLE_APPLICATION_STRICT_MODE_VIOLATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+109;
Daniel Sandler69a48172010-06-23 16:29:36 -0400754 int IS_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+110;
755 int SET_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+111;
756 int IS_TOP_ACTIVITY_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+112;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700757 int CRASH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+113;
Dianne Hackborncca1f0e2010-09-26 18:34:53 -0700758 int GET_PROVIDER_MIME_TYPE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+114;
759 int NEW_URI_PERMISSION_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+115;
760 int GRANT_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+116;
761 int REVOKE_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+117;
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -0700762 int CHECK_GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+118;
763 int DUMP_HEAP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+119;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800764 int START_ACTIVITIES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+120;
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700765 int IS_USER_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+121;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800766 int ACTIVITY_SLEPT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+122;
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700767 int GET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+123;
768 int SET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+124;
769 int GET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+125;
770 int SET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+126;
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700771 int GET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+127;
772 int SET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+128;
Dianne Hackborn36f80f32011-05-31 18:26:45 -0700773 int SWITCH_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+129;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700774 int SET_FOCUSED_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+130;
Dianne Hackborn36f80f32011-05-31 18:26:45 -0700775 int REMOVE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+131;
776 int REGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+132;
777 int UNREGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+133;
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700778 int IS_INTENT_SENDER_TARGETED_TO_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+134;
Dianne Hackborn31ca8542011-07-19 14:58:28 -0700779 int UPDATE_PERSISTENT_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+135;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700780 int GET_PROCESS_PSS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+136;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700781 int SHOW_BOOT_MESSAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+137;
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -0800782 int KILL_ALL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+139;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800783 int GET_CONTENT_PROVIDER_EXTERNAL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+140;
784 int REMOVE_CONTENT_PROVIDER_EXTERNAL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+141;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800785 int GET_MY_MEMORY_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+142;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700786 int KILL_PROCESSES_BELOW_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+143;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700787 int GET_CURRENT_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+144;
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -0700788 int SHOULD_UP_RECREATE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+145;
Adam Powelldd8fab22012-03-22 17:47:27 -0700789 int NAVIGATE_UP_TO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+146;
Dianne Hackbornff5b1582012-04-12 17:24:07 -0700790 int SET_LOCK_SCREEN_SHOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+147;
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -0700791 int FINISH_ACTIVITY_AFFINITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+148;
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700792 int GET_LAUNCHED_FROM_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+149;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700793 int UNSTABLE_PROVIDER_DIED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+150;
Dianne Hackborn1927ae82012-06-22 15:21:36 -0700794 int IS_INTENT_SENDER_AN_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+151;
Amith Yamasani82644082012-08-03 13:09:11 -0700795 int START_ACTIVITY_AS_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+152;
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700796 int STOP_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+153;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700797 int REGISTER_USER_SWITCH_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+154;
798 int UNREGISTER_USER_SWITCH_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+155;
Dianne Hackbornc72fc672012-09-20 13:12:03 -0700799 int GET_RUNNING_USER_IDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+156;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700800 int REQUEST_BUG_REPORT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+157;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700801 int INPUT_DISPATCHING_TIMED_OUT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+158;
Christopher Tate346acb12012-10-15 19:20:25 -0700802 int CLEAR_PENDING_BACKUP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+159;
Dianne Hackborn81038902012-11-26 17:04:09 -0800803 int GET_INTENT_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+160;
Adam Skorydfc7fd72013-08-05 19:23:41 -0700804 int GET_ASSIST_CONTEXT_EXTRAS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+161;
805 int REPORT_ASSIST_CONTEXT_EXTRAS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+162;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800806 int GET_LAUNCHED_FROM_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+163;
Dianne Hackbornf1b78242013-04-08 22:28:59 -0700807 int KILL_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+164;
Adam Momtaz8f6f1f42013-04-10 12:42:58 -0700808 int SET_USER_IS_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+165;
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700809 int HANG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+166;
Todd Kennedyca4d8422015-01-15 15:19:22 -0800810 int CREATE_VIRTUAL_ACTIVITY_CONTAINER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+167;
Kenny Root1d69bad2013-05-07 10:14:28 -0700811 int MOVE_TASK_TO_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+168;
812 int RESIZE_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+169;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800813 int GET_ALL_STACK_INFOS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+170;
Kenny Root1d69bad2013-05-07 10:14:28 -0700814 int SET_FOCUSED_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+171;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800815 int GET_STACK_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+172;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700816 int CONVERT_FROM_TRANSLUCENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+173;
817 int CONVERT_TO_TRANSLUCENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+174;
818 int NOTIFY_ACTIVITY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+175;
819 int REPORT_ACTIVITY_FULLY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+176;
Dianne Hackborn57a7f592013-07-22 18:21:32 -0700820 int RESTART_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+177;
Jeff Sharkeye66c1772013-09-20 14:30:59 -0700821 int PERFORM_IDLE_MAINTENANCE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+178;
822 int TAKE_PERSISTABLE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+179;
823 int RELEASE_PERSISTABLE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+180;
824 int GET_PERSISTED_URI_PERMISSIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+181;
Jeff Sharkey7aa76012013-09-30 14:26:27 -0700825 int APP_NOT_RESPONDING_VIA_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+182;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700826 int GET_TASK_BOUNDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+183;
Craig Mautneraa7e3ed2015-02-17 10:17:21 -0800827 int GET_ACTIVITY_DISPLAY_ID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+184;
Craig Mautner95da1082014-02-24 17:54:35 -0800828 int DELETE_ACTIVITY_CONTAINER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+185;
Stefan Kuhne16045c22015-06-05 07:18:06 -0700829 int SET_PROCESS_MEMORY_TRIM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+186;
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800830
831
832 // Start of L transactions
833 int GET_TAG_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+210;
Kenny Guy08488bf2014-02-21 17:40:37 +0000834 int START_USER_IN_BACKGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+211;
Winson Chung303e1ff2014-03-07 15:06:19 -0800835 int IS_IN_HOME_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+212;
Craig Mautneraea74a52014-03-08 14:23:10 -0800836 int START_LOCK_TASK_BY_TASK_ID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+213;
837 int START_LOCK_TASK_BY_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+214;
838 int STOP_LOCK_TASK_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+215;
839 int IS_IN_LOCK_TASK_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+216;
Winson Chunga449dc02014-05-16 11:15:04 -0700840 int SET_TASK_DESCRIPTION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+217;
Dianne Hackborn91097de2014-04-04 18:02:06 -0700841 int START_VOICE_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+218;
Craig Mautner233ceee2014-05-09 17:05:11 -0700842 int GET_ACTIVITY_OPTIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+219;
Winson Chung1147c402014-05-14 11:05:00 -0700843 int GET_APP_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+220;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700844 int START_LOCK_TASK_BY_CURRENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+221;
845 int STOP_LOCK_TASK_BY_CURRENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+222;
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -0700846 int FINISH_VOICE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+223;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700847 int IS_TOP_OF_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+224;
Jose Lima4b6c6692014-08-12 17:41:12 -0700848 int REQUEST_VISIBLE_BEHIND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+225;
849 int IS_BACKGROUND_VISIBLE_BEHIND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+226;
850 int BACKGROUND_RESOURCES_RELEASED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+227;
Craig Mautnerbb742462014-07-07 15:28:55 -0700851 int NOTIFY_LAUNCH_TASK_BEHIND_COMPLETE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+228;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700852 int START_ACTIVITY_FROM_RECENTS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 229;
Craig Mautner8746a472014-07-24 15:12:54 -0700853 int NOTIFY_ENTER_ANIMATION_COMPLETE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+230;
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200854 int KEYGUARD_WAITING_FOR_ACTIVITY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+231;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700855 int START_ACTIVITY_AS_CALLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+232;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700856 int ADD_APP_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+233;
857 int GET_APP_TASK_THUMBNAIL_SIZE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+234;
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700858 int RELEASE_ACTIVITY_INSTANCE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+235;
859 int RELEASE_SOME_ACTIVITIES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+236;
Craig Mautner6e2f3952014-09-09 14:26:41 -0700860 int BOOT_ANIMATION_COMPLETE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+237;
Craig Mautner648f69b2014-09-18 14:16:26 -0700861 int GET_TASK_DESCRIPTION_ICON_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+238;
Dianne Hackbornfdf5b352014-10-08 17:43:48 -0700862 int LAUNCH_ASSIST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+239;
Winson Chung044d5292014-11-06 11:05:19 -0800863 int START_IN_PLACE_ANIMATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+240;
Dianne Hackbornff170242014-11-19 10:59:01 -0800864 int CHECK_PERMISSION_WITH_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+241;
Winson Chung740c3ac2014-11-12 16:14:38 -0800865 int REGISTER_TASK_STACK_LISTENER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+242;
Jeff Sharkey605eb792014-11-04 13:34:06 -0800866
867 // Start of M transactions
868 int NOTIFY_CLEARTEXT_NETWORK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+280;
Todd Kennedy4900bf92015-01-16 16:05:14 -0800869 int CREATE_STACK_ON_DISPLAY = IBinder.FIRST_CALL_TRANSACTION+281;
Winson Chungd16c5652015-01-26 16:11:07 -0800870 int GET_FOCUSED_STACK_ID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+282;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800871 int SET_TASK_RESIZEABLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+283;
Dianne Hackbornae6688b2015-02-11 17:02:41 -0800872 int REQUEST_ASSIST_CONTEXT_EXTRAS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+284;
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800873 int RESIZE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+285;
Benjamin Franz43261142015-02-11 15:59:44 +0000874 int GET_LOCK_TASK_MODE_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+286;
Dianne Hackbornb9a5e4a2015-03-03 17:04:12 -0800875 int SET_DUMP_HEAP_DEBUG_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+287;
876 int DUMP_HEAP_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+288;
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700877 int SET_VOICE_KEEP_AWAKE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+289;
Craig Mautnere5600772015-04-03 21:36:37 -0700878 int UPDATE_LOCK_TASK_PACKAGES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+290;
Dianne Hackborn1e383822015-04-10 14:02:33 -0700879 int NOTE_ALARM_START_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+291;
880 int NOTE_ALARM_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+292;
881 int GET_PACKAGE_PROCESS_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+293;
Craig Mautnerc21ae9e2015-04-15 09:45:42 -0700882 int SHOW_LOCK_TASK_ESCAPE_MESSAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+294;
Craig Mautner015c5e52015-04-23 10:39:39 -0700883 int UPDATE_DEVICE_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+295;
Julia Reynoldscedd53a2015-06-09 11:14:35 -0400884 int KEYGUARD_GOING_AWAY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+296;
885 int REGISTER_UID_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+297;
886 int UNREGISTER_UID_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+298;
Benjamin Franzc200f442015-06-25 18:20:04 +0100887 int IS_SCREEN_CAPTURE_ALLOWED_ON_CURRENT_ACTIVITY_TRANSACTION
888 = IBinder.FIRST_CALL_TRANSACTION+299;
Dianne Hackborn17f69352015-07-17 18:04:14 -0700889 int SHOW_ASSIST_FROM_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+300;
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700890 int IS_ROOT_VOICE_INTERACTION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+301;
Rahul Chaturvedi52613f92015-06-17 23:54:08 -0400891
Benjamin Franz94a20a22015-06-29 17:39:31 +0100892 // Start of N transactions
893 int START_BINDER_TRACKING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 340;
894 int STOP_BINDER_TRACKING_AND_DUMP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 341;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700895 int POSITION_TASK_IN_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 342;
Wale Ogunwale868a5e12015-08-02 16:19:20 -0700896 int GET_ACTIVITY_STACK_ID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 343;
897 int MOVE_ACTIVITY_TO_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 344;
Filip Gruszczynski23493322015-07-29 17:02:59 -0700898 int REPORT_SIZE_CONFIGURATIONS = IBinder.FIRST_CALL_TRANSACTION + 345;
Wale Ogunwale59a73ca2015-09-14 12:54:50 -0700899 int MOVE_TASK_TO_DOCKED_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 346;
Wale Ogunwale83301a92015-09-24 15:54:08 -0700900 int SUPPRESS_RESIZE_CONFIG_CHANGES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 347;
Filip Gruszczynski57b6cce2015-10-06 09:50:51 -0700901 int REMOVE_STACK = IBinder.FIRST_CALL_TRANSACTION + 348;
Wale Ogunwale079a0042015-10-24 11:44:07 -0700902 int MOVE_TOP_ACTIVITY_TO_PINNED_STACK = IBinder.FIRST_CALL_TRANSACTION + 349;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800903}