blob: 99428e835d34ab097d34d5400ca2f92ce096b5f5 [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.RunningTaskInfo;
20import android.app.ActivityManager.RunningServiceInfo;
Craig Mautnerbdc748af2013-12-02 14:08:25 -080021import android.app.ActivityManager.StackInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.content.ComponentName;
23import android.content.ContentProviderNative;
24import android.content.IContentProvider;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070025import android.content.IIntentReceiver;
26import android.content.IIntentSender;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import android.content.Intent;
28import android.content.IntentFilter;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070029import android.content.IntentSender;
Jeff Sharkeye66c1772013-09-20 14:30:59 -070030import android.content.UriPermission;
Christopher Tate181fafa2009-05-14 11:12:14 -070031import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import android.content.pm.ConfigurationInfo;
33import android.content.pm.IPackageDataObserver;
Jeff Sharkeye66c1772013-09-20 14:30:59 -070034import android.content.pm.ParceledListSlice;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.content.pm.ProviderInfo;
Amith Yamasani52f1d752012-03-28 18:19:29 -070036import android.content.pm.UserInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.content.res.Configuration;
38import android.graphics.Bitmap;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -070039import android.graphics.Point;
Craig Mautnerbdc748af2013-12-02 14:08:25 -080040import android.graphics.Rect;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041import android.net.Uri;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070042import android.os.Bundle;
Dianne Hackborn3025ef32009-08-31 21:31:47 -070043import android.os.Debug;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044import android.os.IBinder;
45import android.os.IInterface;
46import android.os.Parcel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047import android.os.ParcelFileDescriptor;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070048import android.os.Parcelable;
Craig Mautnera0026042014-04-23 11:45:37 -070049import android.os.PersistableBundle;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070050import android.os.RemoteException;
51import android.os.StrictMode;
Dianne Hackborn91097de2014-04-04 18:02:06 -070052import android.service.voice.IVoiceInteractionSession;
53import com.android.internal.app.IVoiceInteractor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054
55import java.util.List;
56
57/**
58 * System private API for talking with the activity manager service. This
59 * provides calls from the application back to the activity manager.
60 *
61 * {@hide}
62 */
63public interface IActivityManager extends IInterface {
Jeff Hao1b012d32014-08-20 10:35:34 -070064 public int startActivity(IApplicationThread caller, String callingPackage, Intent intent,
65 String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags,
66 ProfilerInfo profilerInfo, Bundle options) throws RemoteException;
67 public int startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent,
68 String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags,
69 ProfilerInfo profilerInfo, Bundle options, int userId) throws RemoteException;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -070070 public int startActivityAsCaller(IApplicationThread caller, String callingPackage,
Jeff Hao1b012d32014-08-20 10:35:34 -070071 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
72 int flags, ProfilerInfo profilerInfo, Bundle options) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -080073 public WaitResult startActivityAndWait(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -070074 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
Jeff Hao1b012d32014-08-20 10:35:34 -070075 int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options,
76 int userId) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -080077 public int startActivityWithConfig(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -070078 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
79 int requestCode, int startFlags, Configuration newConfig,
Dianne Hackborn41203752012-08-31 14:05:51 -070080 Bundle options, int userId) throws RemoteException;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070081 public int startActivityIntentSender(IApplicationThread caller,
82 IntentSender intent, Intent fillInIntent, String resolvedType,
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070083 IBinder resultTo, String resultWho, int requestCode,
Dianne Hackborna4972e92012-03-14 10:38:05 -070084 int flagsMask, int flagsValues, Bundle options) throws RemoteException;
Dianne Hackborn91097de2014-04-04 18:02:06 -070085 public int startVoiceActivity(String callingPackage, int callingPid, int callingUid,
86 Intent intent, String resolvedType, IVoiceInteractionSession session,
Jeff Hao1b012d32014-08-20 10:35:34 -070087 IVoiceInteractor interactor, int flags, ProfilerInfo profilerInfo, Bundle options,
88 int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 public boolean startNextMatchingActivity(IBinder callingActivity,
Dianne Hackborna4972e92012-03-14 10:38:05 -070090 Intent intent, Bundle options) throws RemoteException;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -070091 public int startActivityFromRecents(int taskId, Bundle options) throws RemoteException;
Winson Chung3b3f4642014-04-22 10:08:18 -070092 public boolean finishActivity(IBinder token, int code, Intent data, boolean finishTask)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 throws RemoteException;
94 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -070095 public boolean finishActivityAffinity(IBinder token) throws RemoteException;
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -070096 public void finishVoiceTask(IVoiceInteractionSession session) throws RemoteException;
Dianne Hackborn89ad4562014-08-24 16:45:38 -070097 public boolean releaseActivityInstance(IBinder token) throws RemoteException;
98 public void releaseSomeActivities(IApplicationThread app) throws RemoteException;
Dianne Hackborn061d58a2010-03-12 15:07:06 -080099 public boolean willActivityBeVisible(IBinder token) throws RemoteException;
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700100 public Intent registerReceiver(IApplicationThread caller, String callerPackage,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800101 IIntentReceiver receiver, IntentFilter filter,
Dianne Hackborn20e80982012-08-31 19:00:44 -0700102 String requiredPermission, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800103 public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800104 public int broadcastIntent(IApplicationThread caller, Intent intent,
105 String resolvedType, IIntentReceiver resultTo, int resultCode,
106 String resultData, Bundle map, String requiredPermission,
Dianne Hackbornf51f6122013-02-04 18:23:34 -0800107 int appOp, boolean serialized, boolean sticky, int userId) throws RemoteException;
Amith Yamasani742a6712011-05-04 14:49:28 -0700108 public void unbroadcastIntent(IApplicationThread caller, Intent intent, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map, boolean abortBroadcast) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 public void attachApplication(IApplicationThread app) throws RemoteException;
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700111 public void activityResumed(IBinder token) throws RemoteException;
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700112 public void activityIdle(IBinder token, Configuration config,
113 boolean stopProfiling) throws RemoteException;
Craig Mautnera0026042014-04-23 11:45:37 -0700114 public void activityPaused(IBinder token, PersistableBundle persistentState) throws RemoteException;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800115 public void activityStopped(IBinder token, Bundle state,
Craig Mautnera0026042014-04-23 11:45:37 -0700116 PersistableBundle persistentState, CharSequence description) throws RemoteException;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800117 public void activitySlept(IBinder token) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 public void activityDestroyed(IBinder token) throws RemoteException;
119 public String getCallingPackage(IBinder token) throws RemoteException;
120 public ComponentName getCallingActivity(IBinder token) throws RemoteException;
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700121 public List<IAppTask> getAppTasks(String callingPackage) throws RemoteException;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700122 public int addAppTask(IBinder activityToken, Intent intent,
123 ActivityManager.TaskDescription description, Bitmap thumbnail) throws RemoteException;
124 public Point getAppTaskThumbnailSize() throws RemoteException;
Dianne Hackborn09233282014-04-30 11:33:59 -0700125 public List<RunningTaskInfo> getTasks(int maxNum, int flags) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126 public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
Amith Yamasani82644082012-08-03 13:09:11 -0700127 int flags, int userId) throws RemoteException;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700128 public ActivityManager.TaskThumbnail getTaskThumbnail(int taskId) throws RemoteException;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800129 public List<RunningServiceInfo> getServices(int maxNum, int flags) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
131 throws RemoteException;
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700132 public void moveTaskToFront(int task, int flags, Bundle options) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800133 public void moveTaskToBack(int task) throws RemoteException;
134 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
135 public void moveTaskBackwards(int task) throws RemoteException;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800136 public void moveTaskToStack(int taskId, int stackId, boolean toTop) throws RemoteException;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800137 public void resizeStack(int stackId, Rect bounds) throws RemoteException;
138 public List<StackInfo> getAllStackInfos() throws RemoteException;
139 public StackInfo getStackInfo(int stackId) throws RemoteException;
Winson Chung303e1ff2014-03-07 15:06:19 -0800140 public boolean isInHomeStack(int taskId) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700141 public void setFocusedStack(int stackId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800142 public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800143 public ContentProviderHolder getContentProvider(IApplicationThread caller,
Jeff Sharkey6d515712012-09-20 16:06:08 -0700144 String name, int userId, boolean stable) throws RemoteException;
145 public ContentProviderHolder getContentProviderExternal(String name, int userId, IBinder token)
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800146 throws RemoteException;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700147 public void removeContentProvider(IBinder connection, boolean stable) throws RemoteException;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800148 public void removeContentProviderExternal(String name, IBinder token) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 public void publishContentProviders(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700150 List<ContentProviderHolder> providers) throws RemoteException;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700151 public boolean refContentProvider(IBinder connection, int stableDelta, int unstableDelta)
152 throws RemoteException;
153 public void unstableProviderDied(IBinder connection) throws RemoteException;
Jeff Sharkey7aa76012013-09-30 14:26:27 -0700154 public void appNotRespondingViaProvider(IBinder connection) throws RemoteException;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700155 public PendingIntent getRunningServiceControlPanel(ComponentName service)
156 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 public ComponentName startService(IApplicationThread caller, Intent service,
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700158 String resolvedType, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 public int stopService(IApplicationThread caller, Intent service,
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700160 String resolvedType, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161 public boolean stopServiceToken(ComponentName className, IBinder token,
162 int startId) throws RemoteException;
163 public void setServiceForeground(ComponentName className, IBinder token,
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700164 int id, Notification notification, boolean keepNotification) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 public int bindService(IApplicationThread caller, IBinder token,
166 Intent service, String resolvedType,
Amith Yamasani37ce3a82012-02-06 12:04:42 -0800167 IServiceConnection connection, int flags, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168 public boolean unbindService(IServiceConnection connection) throws RemoteException;
169 public void publishService(IBinder token,
170 Intent intent, IBinder service) throws RemoteException;
171 public void unbindFinished(IBinder token, Intent service,
172 boolean doRebind) throws RemoteException;
173 /* oneway */
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700174 public void serviceDoneExecuting(IBinder token, int type, int startId,
175 int res) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176 public IBinder peekService(Intent service, String resolvedType) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700177
Christopher Tate181fafa2009-05-14 11:12:14 -0700178 public boolean bindBackupAgent(ApplicationInfo appInfo, int backupRestoreMode)
179 throws RemoteException;
Christopher Tate346acb12012-10-15 19:20:25 -0700180 public void clearPendingBackup() throws RemoteException;
Christopher Tate181fafa2009-05-14 11:12:14 -0700181 public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException;
182 public void unbindBackupAgent(ApplicationInfo appInfo) throws RemoteException;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700183 public void killApplicationProcess(String processName, int uid) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700184
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185 public boolean startInstrumentation(ComponentName className, String profileFile,
Svetoslav Ganov80943d82013-01-02 10:25:37 -0800186 int flags, Bundle arguments, IInstrumentationWatcher watcher,
Narayan Kamath8dcfefd2014-05-15 18:12:59 +0100187 IUiAutomationConnection connection, int userId,
188 String abiOverride) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800189 public void finishInstrumentation(IApplicationThread target,
190 int resultCode, Bundle results) throws RemoteException;
191
192 public Configuration getConfiguration() throws RemoteException;
193 public void updateConfiguration(Configuration values) throws RemoteException;
194 public void setRequestedOrientation(IBinder token,
195 int requestedOrientation) throws RemoteException;
196 public int getRequestedOrientation(IBinder token) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700197
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198 public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
199 public String getPackageForToken(IBinder token) throws RemoteException;
200
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800201 public IIntentSender getIntentSender(int type,
202 String packageName, IBinder token, String resultWho,
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800203 int requestCode, Intent[] intents, String[] resolvedTypes,
Dianne Hackborn41203752012-08-31 14:05:51 -0700204 int flags, Bundle options, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800205 public void cancelIntentSender(IIntentSender sender) throws RemoteException;
206 public boolean clearApplicationUserData(final String packageName,
Amith Yamasani742a6712011-05-04 14:49:28 -0700207 final IPackageDataObserver observer, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800208 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
Christopher Tatec4a07d12012-04-06 14:19:13 -0700209 public int getUidForIntentSender(IIntentSender sender) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700210
Dianne Hackborn41203752012-08-31 14:05:51 -0700211 public int handleIncomingUser(int callingPid, int callingUid, int userId, boolean allowAll,
212 boolean requireFull, String name, String callerPackage) throws RemoteException;
213
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214 public void setProcessLimit(int max) throws RemoteException;
215 public int getProcessLimit() throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700216
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800217 public void setProcessForeground(IBinder token, int pid,
218 boolean isForeground) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700219
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220 public int checkPermission(String permission, int pid, int uid)
221 throws RemoteException;
222
Nicolas Prevotd85fc722014-04-16 19:52:08 +0100223 public int checkUriPermission(Uri uri, int pid, int uid, int mode, int userId)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800224 throws RemoteException;
Nicolas Prevotd85fc722014-04-16 19:52:08 +0100225 public void grantUriPermission(IApplicationThread caller, String targetPkg, Uri uri,
226 int mode, int userId) throws RemoteException;
227 public void revokeUriPermission(IApplicationThread caller, Uri uri, int mode, int userId)
228 throws RemoteException;
229 public void takePersistableUriPermission(Uri uri, int modeFlags, int userId)
230 throws RemoteException;
231 public void releasePersistableUriPermission(Uri uri, int modeFlags, int userId)
232 throws RemoteException;
Jeff Sharkeybcaac0a2013-10-09 14:21:08 -0700233 public ParceledListSlice<UriPermission> getPersistedUriPermissions(
234 String packageName, boolean incoming) throws RemoteException;
Jeff Sharkeye66c1772013-09-20 14:30:59 -0700235
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800236 public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
237 throws RemoteException;
238
239 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
240
Dianne Hackborn1676c852012-09-10 14:52:30 -0700241 public void killBackgroundProcesses(final String packageName, int userId)
242 throws RemoteException;
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -0800243 public void killAllBackgroundProcesses() throws RemoteException;
Dianne Hackborn1676c852012-09-10 14:52:30 -0700244 public void forceStopPackage(final String packageName, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800245
246 // Note: probably don't want to allow applications access to these.
Dianne Hackbornff5b1582012-04-12 17:24:07 -0700247 public void setLockScreenShown(boolean shown) throws RemoteException;
248
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800249 public void unhandledBack() throws RemoteException;
250 public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException;
251 public void setDebugApp(
252 String packageName, boolean waitForDebugger, boolean persistent)
253 throws RemoteException;
254 public void setAlwaysFinish(boolean enabled) throws RemoteException;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700255 public void setActivityController(IActivityController watcher)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800256 throws RemoteException;
257
258 public void enterSafeMode() throws RemoteException;
259
Dianne Hackborn099bc622014-01-22 13:39:16 -0800260 public void noteWakeupAlarm(IIntentSender sender, int sourceUid, String sourcePkg)
261 throws RemoteException;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700262
Dianne Hackborn64825172011-03-02 21:32:58 -0800263 public boolean killPids(int[] pids, String reason, boolean secure) throws RemoteException;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700264 public boolean killProcessesBelowForeground(String reason) throws RemoteException;
265
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800266 // Special low-level communication with activity manager.
Dan Egnor60d87622009-12-16 16:32:58 -0800267 public void handleApplicationCrash(IBinder app,
268 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
Dianne Hackborn52322712014-08-26 22:47:26 -0700269 public boolean handleApplicationWtf(IBinder app, String tag, boolean system,
Dan Egnorb7f03672009-12-09 16:22:32 -0800270 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
Brad Fitzpatrick46d42382010-06-11 13:57:58 -0700271
272 // A StrictMode violation to be handled. The violationMask is a
273 // subset of the original StrictMode policy bitmask, with only the
274 // bit violated and penalty bits to be executed by the
275 // ActivityManagerService remaining set.
276 public void handleApplicationStrictModeViolation(IBinder app, int violationMask,
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -0700277 StrictMode.ViolationInfo crashInfo) throws RemoteException;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700278
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800279 /*
Craig Mautner5eda9b32013-07-02 11:58:16 -0700280 * This will deliver the specified signal to all the persistent processes. Currently only
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800281 * SIGUSR1 is delivered. All others are ignored.
282 */
283 public void signalPersistentProcesses(int signal) throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800284 // Retrieve running application processes in the system
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
286 throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800287 // Retrieve info of applications installed on external media that are currently
288 // running.
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700289 public List<ApplicationInfo> getRunningExternalApplications()
290 throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800291 // Get memory information about the calling process.
292 public void getMyMemoryState(ActivityManager.RunningAppProcessInfo outInfo)
293 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800294 // Get device configuration
295 public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
Jeff Hao1b012d32014-08-20 10:35:34 -0700296
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800297 // Turn on/off profiling in a particular process.
Dianne Hackborn1676c852012-09-10 14:52:30 -0700298 public boolean profileControl(String process, int userId, boolean start,
Jeff Hao1b012d32014-08-20 10:35:34 -0700299 ProfilerInfo profilerInfo, int profileType) throws RemoteException;
300
Dianne Hackborn55280a92009-05-07 15:53:46 -0700301 public boolean shutdown(int timeout) throws RemoteException;
Jeff Hao1b012d32014-08-20 10:35:34 -0700302
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700303 public void stopAppSwitches() throws RemoteException;
304 public void resumeAppSwitches() throws RemoteException;
Dianne Hackbornfee756f2014-07-16 17:31:10 -0700305
306 public void addPackageDependency(String packageName) throws RemoteException;
307
Dianne Hackborn21d9b562013-05-28 17:46:59 -0700308 public void killApplicationWithAppId(String pkg, int appid, String reason)
309 throws RemoteException;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700310
311 public void closeSystemDialogs(String reason) throws RemoteException;
312
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -0700313 public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids)
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700314 throws RemoteException;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700315
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700316 public void overridePendingTransition(IBinder token, String packageName,
317 int enterAnim, int exitAnim) throws RemoteException;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700318
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800319 public boolean isUserAMonkey() throws RemoteException;
Adam Momtaz8f6f1f42013-04-10 12:42:58 -0700320
321 public void setUserIsMonkey(boolean monkey) throws RemoteException;
322
Dianne Hackborn860755f2010-06-03 18:47:52 -0700323 public void finishHeavyWeightApp() throws RemoteException;
Daniel Sandler69a48172010-06-23 16:29:36 -0400324
Craig Mautnerbc57cd12013-08-19 15:47:42 -0700325 public boolean convertFromTranslucent(IBinder token) throws RemoteException;
Craig Mautner233ceee2014-05-09 17:05:11 -0700326 public boolean convertToTranslucent(IBinder token, ActivityOptions options) throws RemoteException;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700327 public void notifyActivityDrawn(IBinder token) throws RemoteException;
Craig Mautner233ceee2014-05-09 17:05:11 -0700328 public ActivityOptions getActivityOptions(IBinder token) throws RemoteException;
Craig Mautner4addfc52013-06-25 08:05:45 -0700329
Daniel Sandler69a48172010-06-23 16:29:36 -0400330 public void setImmersive(IBinder token, boolean immersive) throws RemoteException;
331 public boolean isImmersive(IBinder token) throws RemoteException;
332 public boolean isTopActivityImmersive() throws RemoteException;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700333 public boolean isTopOfTask(IBinder token) throws RemoteException;
334
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700335 public void crashApplication(int uid, int initialPid, String packageName,
336 String message) throws RemoteException;
Dianne Hackborncca1f0e2010-09-26 18:34:53 -0700337
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700338 public String getProviderMimeType(Uri uri, int userId) throws RemoteException;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700339
Dianne Hackborn7e269642010-08-25 19:50:20 -0700340 public IBinder newUriPermissionOwner(String name) throws RemoteException;
341 public void grantUriPermissionFromOwner(IBinder owner, int fromUid, String targetPkg,
Nicolas Prevotf1939902014-06-25 09:29:02 +0100342 Uri uri, int mode, int sourceUserId, int targetUserId) throws RemoteException;
Dianne Hackborn7e269642010-08-25 19:50:20 -0700343 public void revokeUriPermissionFromOwner(IBinder owner, Uri uri,
Nicolas Prevotd85fc722014-04-16 19:52:08 +0100344 int mode, int userId) throws RemoteException;
Andy McFadden824c5102010-07-09 16:26:57 -0700345
Nicolas Prevotd85fc722014-04-16 19:52:08 +0100346 public int checkGrantUriPermission(int callingUid, String targetPkg, Uri uri,
347 int modeFlags, int userId) throws RemoteException;
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -0700348
Andy McFadden824c5102010-07-09 16:26:57 -0700349 // Cause the specified process to dump the specified heap.
Dianne Hackborn1676c852012-09-10 14:52:30 -0700350 public boolean dumpHeap(String process, int userId, boolean managed, String path,
Andy McFadden824c5102010-07-09 16:26:57 -0700351 ParcelFileDescriptor fd) throws RemoteException;
352
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800353 public int startActivities(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -0700354 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
Amith Yamasaniea7e9152012-09-24 16:11:18 -0700355 Bundle options, int userId) throws RemoteException;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800356
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700357 public int getFrontActivityScreenCompatMode() throws RemoteException;
358 public void setFrontActivityScreenCompatMode(int mode) throws RemoteException;
359 public int getPackageScreenCompatMode(String packageName) throws RemoteException;
360 public void setPackageScreenCompatMode(String packageName, int mode)
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400361 throws RemoteException;
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700362 public boolean getPackageAskScreenCompat(String packageName) throws RemoteException;
363 public void setPackageAskScreenCompat(String packageName, boolean ask)
364 throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700365
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700366 // Multi-user APIs
367 public boolean switchUser(int userid) throws RemoteException;
Kenny Guy08488bf2014-02-21 17:40:37 +0000368 public boolean startUserInBackground(int userid) throws RemoteException;
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700369 public int stopUser(int userid, IStopUserCallback callback) throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700370 public UserInfo getCurrentUser() throws RemoteException;
Dianne Hackborna8a9bd62012-10-09 15:36:59 -0700371 public boolean isUserRunning(int userid, boolean orStopping) throws RemoteException;
Dianne Hackbornc72fc672012-09-20 13:12:03 -0700372 public int[] getRunningUserIds() throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700373
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700374 public boolean removeTask(int taskId, int flags) throws RemoteException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700375
Jeff Sharkeya4620792011-05-20 15:29:23 -0700376 public void registerProcessObserver(IProcessObserver observer) throws RemoteException;
377 public void unregisterProcessObserver(IProcessObserver observer) throws RemoteException;
378
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700379 public boolean isIntentSenderTargetedToPackage(IIntentSender sender) throws RemoteException;
380
Dianne Hackborn1927ae82012-06-22 15:21:36 -0700381 public boolean isIntentSenderAnActivity(IIntentSender sender) throws RemoteException;
382
Dianne Hackborn81038902012-11-26 17:04:09 -0800383 public Intent getIntentForIntentSender(IIntentSender sender) throws RemoteException;
384
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800385 public String getTagForIntentSender(IIntentSender sender, String prefix) throws RemoteException;
386
Dianne Hackborn31ca8542011-07-19 14:58:28 -0700387 public void updatePersistentConfiguration(Configuration values) throws RemoteException;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700388
389 public long[] getProcessPss(int[] pids) throws RemoteException;
390
Dianne Hackborn661cd522011-08-22 00:26:20 -0700391 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException;
392
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200393 public void keyguardWaitingForActivityDrawn() throws RemoteException;
Dianne Hackborn90c52de2011-09-23 12:57:44 -0700394
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -0700395 public boolean shouldUpRecreateTask(IBinder token, String destAffinity)
Adam Powelldd8fab22012-03-22 17:47:27 -0700396 throws RemoteException;
397
398 public boolean navigateUpTo(IBinder token, Intent target, int resultCode, Intent resultData)
399 throws RemoteException;
400
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800401 // These are not public because you need to be very careful in how you
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700402 // manage your activity to make sure it is always the uid you expect.
403 public int getLaunchedFromUid(IBinder activityToken) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800404 public String getLaunchedFromPackage(IBinder activityToken) throws RemoteException;
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700405
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700406 public void registerUserSwitchObserver(IUserSwitchObserver observer) throws RemoteException;
407 public void unregisterUserSwitchObserver(IUserSwitchObserver observer) throws RemoteException;
408
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700409 public void requestBugReport() throws RemoteException;
410
Jeff Brownbd181bb2013-09-10 16:44:24 -0700411 public long inputDispatchingTimedOut(int pid, boolean aboveSystem, String reason)
412 throws RemoteException;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700413
Adam Skorydfc7fd72013-08-05 19:23:41 -0700414 public Bundle getAssistContextExtras(int requestType) throws RemoteException;
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -0800415
Adam Skory7140a252013-09-11 12:04:58 +0100416 public void reportAssistContextExtras(IBinder token, Bundle extras) throws RemoteException;
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -0800417
Dianne Hackbornf1b78242013-04-08 22:28:59 -0700418 public void killUid(int uid, String reason) throws RemoteException;
419
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700420 public void hang(IBinder who, boolean allowRestart) throws RemoteException;
421
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700422 public void reportActivityFullyDrawn(IBinder token) throws RemoteException;
423
Dianne Hackborn57a7f592013-07-22 18:21:32 -0700424 public void restart() throws RemoteException;
425
Dianne Hackborn35f72be2013-09-16 10:57:39 -0700426 public void performIdleMaintenance() throws RemoteException;
427
Craig Mautner4a1cb222013-12-04 16:14:06 -0800428 public IActivityContainer createActivityContainer(IBinder parentActivityToken,
429 IActivityContainerCallback callback) throws RemoteException;
430
Craig Mautner95da1082014-02-24 17:54:35 -0800431 public void deleteActivityContainer(IActivityContainer container) throws RemoteException;
432
Craig Mautnere0a38842013-12-16 16:14:02 -0800433 public IActivityContainer getEnclosingActivityContainer(IBinder activityToken)
434 throws RemoteException;
435
Craig Mautner4a1cb222013-12-04 16:14:06 -0800436 public IBinder getHomeActivityToken() throws RemoteException;
437
Jason Monk62515be2014-05-21 16:06:19 -0400438 public void startLockTaskModeOnCurrent() throws RemoteException;
439
Craig Mautneraea74a52014-03-08 14:23:10 -0800440 public void startLockTaskMode(int taskId) throws RemoteException;
441
Craig Mautneraea74a52014-03-08 14:23:10 -0800442 public void startLockTaskMode(IBinder token) throws RemoteException;
443
Craig Mautneraea74a52014-03-08 14:23:10 -0800444 public void stopLockTaskMode() throws RemoteException;
445
Jason Monk62515be2014-05-21 16:06:19 -0400446 public void stopLockTaskModeOnCurrent() throws RemoteException;
447
Craig Mautneraea74a52014-03-08 14:23:10 -0800448 public boolean isInLockTaskMode() throws RemoteException;
449
Winson Chunga449dc02014-05-16 11:15:04 -0700450 public void setTaskDescription(IBinder token, ActivityManager.TaskDescription values)
Winson Chung03a9bae2014-05-02 09:56:12 -0700451 throws RemoteException;
Craig Mautner2fbd7542014-03-21 09:34:07 -0700452
Jose Lima4b6c6692014-08-12 17:41:12 -0700453 public boolean requestVisibleBehind(IBinder token, boolean visible) throws RemoteException;
454 public boolean isBackgroundVisibleBehind(IBinder token) throws RemoteException;
455 public void backgroundResourcesReleased(IBinder token) throws RemoteException;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700456
Craig Mautnerbb742462014-07-07 15:28:55 -0700457 public void notifyLaunchTaskBehindComplete(IBinder token) throws RemoteException;
Craig Mautner8746a472014-07-24 15:12:54 -0700458 public void notifyEnterAnimationComplete(IBinder token) throws RemoteException;
Craig Mautnerbb742462014-07-07 15:28:55 -0700459
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800460 /*
461 * Private non-Binder interfaces
462 */
463 /* package */ boolean testIsSystemReady();
Primiano Tucci810c0522014-07-25 18:03:16 +0100464
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800465 /** Information you can retrieve about a particular application. */
466 public static class ContentProviderHolder implements Parcelable {
467 public final ProviderInfo info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800468 public IContentProvider provider;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700469 public IBinder connection;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800470 public boolean noReleaseNeeded;
471
472 public ContentProviderHolder(ProviderInfo _info) {
473 info = _info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800474 }
475
Craig Mautnercf910b02013-04-23 11:23:27 -0700476 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800477 public int describeContents() {
478 return 0;
479 }
480
Craig Mautnercf910b02013-04-23 11:23:27 -0700481 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800482 public void writeToParcel(Parcel dest, int flags) {
483 info.writeToParcel(dest, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800484 if (provider != null) {
485 dest.writeStrongBinder(provider.asBinder());
486 } else {
487 dest.writeStrongBinder(null);
488 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700489 dest.writeStrongBinder(connection);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800490 dest.writeInt(noReleaseNeeded ? 1:0);
491 }
492
493 public static final Parcelable.Creator<ContentProviderHolder> CREATOR
494 = new Parcelable.Creator<ContentProviderHolder>() {
Craig Mautnercf910b02013-04-23 11:23:27 -0700495 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800496 public ContentProviderHolder createFromParcel(Parcel source) {
497 return new ContentProviderHolder(source);
498 }
499
Craig Mautnercf910b02013-04-23 11:23:27 -0700500 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800501 public ContentProviderHolder[] newArray(int size) {
502 return new ContentProviderHolder[size];
503 }
504 };
505
506 private ContentProviderHolder(Parcel source) {
507 info = ProviderInfo.CREATOR.createFromParcel(source);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800508 provider = ContentProviderNative.asInterface(
509 source.readStrongBinder());
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700510 connection = source.readStrongBinder();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800511 noReleaseNeeded = source.readInt() != 0;
512 }
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800513 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800514
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800515 /** Information returned after waiting for an activity start. */
516 public static class WaitResult implements Parcelable {
517 public int result;
518 public boolean timeout;
519 public ComponentName who;
520 public long thisTime;
521 public long totalTime;
522
523 public WaitResult() {
524 }
525
Craig Mautnercf910b02013-04-23 11:23:27 -0700526 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800527 public int describeContents() {
528 return 0;
529 }
530
Craig Mautnercf910b02013-04-23 11:23:27 -0700531 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800532 public void writeToParcel(Parcel dest, int flags) {
533 dest.writeInt(result);
534 dest.writeInt(timeout ? 1 : 0);
535 ComponentName.writeToParcel(who, dest);
536 dest.writeLong(thisTime);
537 dest.writeLong(totalTime);
538 }
539
540 public static final Parcelable.Creator<WaitResult> CREATOR
541 = new Parcelable.Creator<WaitResult>() {
Craig Mautnercf910b02013-04-23 11:23:27 -0700542 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800543 public WaitResult createFromParcel(Parcel source) {
544 return new WaitResult(source);
545 }
546
Craig Mautnercf910b02013-04-23 11:23:27 -0700547 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800548 public WaitResult[] newArray(int size) {
549 return new WaitResult[size];
550 }
551 };
552
553 private WaitResult(Parcel source) {
554 result = source.readInt();
555 timeout = source.readInt() != 0;
556 who = ComponentName.readFromParcel(source);
557 thisTime = source.readLong();
558 totalTime = source.readLong();
559 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700560 }
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800561
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800562 String descriptor = "android.app.IActivityManager";
563
564 // Please keep these transaction codes the same -- they are also
565 // sent by C++ code.
Dan Egnor60d87622009-12-16 16:32:58 -0800566 int HANDLE_APPLICATION_CRASH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800567 int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
568 int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
569 int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
570
571 // Remaining non-native transaction codes.
572 int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
573 int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
574 int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
575 int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
576 int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
577 int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
578 int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
579 int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
580 int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
581 int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
582 int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
583 int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
584 int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
585 int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
586 int MOVE_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+24;
587 int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
588 int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
Dianne Hackborn09233282014-04-30 11:33:59 -0700589
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800590 int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
591 int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700592 int REF_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+30;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800593 int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700594 int GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800595 int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
596 int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
597 int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
598 int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
599 int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700600 int ACTIVITY_RESUMED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+38;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800601 int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
602 int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
603 int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
604 int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
605 int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
606 int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
607 int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
608 int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
609 int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
610 int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
611 int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
612 int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
613 int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
614 int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
615 int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700616 int SET_ACTIVITY_CONTROLLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800617 int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
618 int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
619 int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
620 int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
621 int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
622 int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
623 int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
624 int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
625 int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
626 int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
627 int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
628 int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
629 int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
630 int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
631 int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
632 int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
633 int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
634 int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
635 int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
636 int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
637 int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800638 int FORCE_STOP_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -0700639 int KILL_PIDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800640 int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700641 int GET_TASK_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+81;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800642 int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
643 int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
644 int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800645 int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
Dianne Hackborn55280a92009-05-07 15:53:46 -0700646 int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700647 int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
648 int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
Christopher Tate181fafa2009-05-14 11:12:14 -0700649 int START_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+89;
650 int BACKUP_AGENT_CREATED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+90;
651 int UNBIND_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+91;
Christopher Tatec4a07d12012-04-06 14:19:13 -0700652 int GET_UID_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+92;
Dianne Hackborn41203752012-08-31 14:05:51 -0700653 int HANDLE_INCOMING_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+93;
Dianne Hackbornfee756f2014-07-16 17:31:10 -0700654 int ADD_PACKAGE_DEPENDENCY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+94;
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700655 int KILL_APPLICATION_WITH_APPID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+95;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700656 int CLOSE_SYSTEM_DIALOGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+96;
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700657 int GET_PROCESS_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+97;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700658 int KILL_APPLICATION_PROCESS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+98;
Dianne Hackbornfa82f222009-09-17 15:14:12 -0700659 int START_ACTIVITY_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+99;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700660 int OVERRIDE_PENDING_TRANSITION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+100;
Dan Egnor60d87622009-12-16 16:32:58 -0800661 int HANDLE_APPLICATION_WTF_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+101;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800662 int KILL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+102;
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800663 int IS_USER_A_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+103;
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800664 int START_ACTIVITY_AND_WAIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+104;
Dianne Hackborn061d58a2010-03-12 15:07:06 -0800665 int WILL_ACTIVITY_BE_VISIBLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+105;
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700666 int START_ACTIVITY_WITH_CONFIG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+106;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700667 int GET_RUNNING_EXTERNAL_APPLICATIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+107;
Dianne Hackborn860755f2010-06-03 18:47:52 -0700668 int FINISH_HEAVY_WEIGHT_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+108;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700669 int HANDLE_APPLICATION_STRICT_MODE_VIOLATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+109;
Daniel Sandler69a48172010-06-23 16:29:36 -0400670 int IS_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+110;
671 int SET_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+111;
672 int IS_TOP_ACTIVITY_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+112;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700673 int CRASH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+113;
Dianne Hackborncca1f0e2010-09-26 18:34:53 -0700674 int GET_PROVIDER_MIME_TYPE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+114;
675 int NEW_URI_PERMISSION_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+115;
676 int GRANT_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+116;
677 int REVOKE_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+117;
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -0700678 int CHECK_GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+118;
679 int DUMP_HEAP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+119;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800680 int START_ACTIVITIES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+120;
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700681 int IS_USER_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+121;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800682 int ACTIVITY_SLEPT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+122;
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700683 int GET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+123;
684 int SET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+124;
685 int GET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+125;
686 int SET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+126;
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700687 int GET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+127;
688 int SET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+128;
Dianne Hackborn36f80f32011-05-31 18:26:45 -0700689 int SWITCH_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+129;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700690 int ___AVAILABLE_1___ = IBinder.FIRST_CALL_TRANSACTION+130;
Dianne Hackborn36f80f32011-05-31 18:26:45 -0700691 int REMOVE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+131;
692 int REGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+132;
693 int UNREGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+133;
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700694 int IS_INTENT_SENDER_TARGETED_TO_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+134;
Dianne Hackborn31ca8542011-07-19 14:58:28 -0700695 int UPDATE_PERSISTENT_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+135;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700696 int GET_PROCESS_PSS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+136;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700697 int SHOW_BOOT_MESSAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+137;
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -0800698 int KILL_ALL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+139;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800699 int GET_CONTENT_PROVIDER_EXTERNAL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+140;
700 int REMOVE_CONTENT_PROVIDER_EXTERNAL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+141;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800701 int GET_MY_MEMORY_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+142;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700702 int KILL_PROCESSES_BELOW_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+143;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700703 int GET_CURRENT_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+144;
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -0700704 int SHOULD_UP_RECREATE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+145;
Adam Powelldd8fab22012-03-22 17:47:27 -0700705 int NAVIGATE_UP_TO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+146;
Dianne Hackbornff5b1582012-04-12 17:24:07 -0700706 int SET_LOCK_SCREEN_SHOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+147;
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -0700707 int FINISH_ACTIVITY_AFFINITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+148;
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700708 int GET_LAUNCHED_FROM_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+149;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700709 int UNSTABLE_PROVIDER_DIED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+150;
Dianne Hackborn1927ae82012-06-22 15:21:36 -0700710 int IS_INTENT_SENDER_AN_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+151;
Amith Yamasani82644082012-08-03 13:09:11 -0700711 int START_ACTIVITY_AS_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+152;
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700712 int STOP_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+153;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700713 int REGISTER_USER_SWITCH_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+154;
714 int UNREGISTER_USER_SWITCH_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+155;
Dianne Hackbornc72fc672012-09-20 13:12:03 -0700715 int GET_RUNNING_USER_IDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+156;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700716 int REQUEST_BUG_REPORT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+157;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700717 int INPUT_DISPATCHING_TIMED_OUT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+158;
Christopher Tate346acb12012-10-15 19:20:25 -0700718 int CLEAR_PENDING_BACKUP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+159;
Dianne Hackborn81038902012-11-26 17:04:09 -0800719 int GET_INTENT_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+160;
Adam Skorydfc7fd72013-08-05 19:23:41 -0700720 int GET_ASSIST_CONTEXT_EXTRAS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+161;
721 int REPORT_ASSIST_CONTEXT_EXTRAS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+162;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800722 int GET_LAUNCHED_FROM_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+163;
Dianne Hackbornf1b78242013-04-08 22:28:59 -0700723 int KILL_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+164;
Adam Momtaz8f6f1f42013-04-10 12:42:58 -0700724 int SET_USER_IS_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+165;
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700725 int HANG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+166;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800726 int CREATE_ACTIVITY_CONTAINER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+167;
Kenny Root1d69bad2013-05-07 10:14:28 -0700727 int MOVE_TASK_TO_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+168;
728 int RESIZE_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+169;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800729 int GET_ALL_STACK_INFOS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+170;
Kenny Root1d69bad2013-05-07 10:14:28 -0700730 int SET_FOCUSED_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+171;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800731 int GET_STACK_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+172;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700732 int CONVERT_FROM_TRANSLUCENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+173;
733 int CONVERT_TO_TRANSLUCENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+174;
734 int NOTIFY_ACTIVITY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+175;
735 int REPORT_ACTIVITY_FULLY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+176;
Dianne Hackborn57a7f592013-07-22 18:21:32 -0700736 int RESTART_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+177;
Jeff Sharkeye66c1772013-09-20 14:30:59 -0700737 int PERFORM_IDLE_MAINTENANCE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+178;
738 int TAKE_PERSISTABLE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+179;
739 int RELEASE_PERSISTABLE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+180;
740 int GET_PERSISTED_URI_PERMISSIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+181;
Jeff Sharkey7aa76012013-09-30 14:26:27 -0700741 int APP_NOT_RESPONDING_VIA_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+182;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800742 int GET_HOME_ACTIVITY_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+183;
Craig Mautnere0a38842013-12-16 16:14:02 -0800743 int GET_ACTIVITY_CONTAINER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+184;
Craig Mautner95da1082014-02-24 17:54:35 -0800744 int DELETE_ACTIVITY_CONTAINER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+185;
Dianne Hackborna1f1a3c2014-02-24 18:12:28 -0800745
746
747 // Start of L transactions
748 int GET_TAG_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+210;
Kenny Guy08488bf2014-02-21 17:40:37 +0000749 int START_USER_IN_BACKGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+211;
Winson Chung303e1ff2014-03-07 15:06:19 -0800750 int IS_IN_HOME_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+212;
Craig Mautneraea74a52014-03-08 14:23:10 -0800751 int START_LOCK_TASK_BY_TASK_ID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+213;
752 int START_LOCK_TASK_BY_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+214;
753 int STOP_LOCK_TASK_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+215;
754 int IS_IN_LOCK_TASK_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+216;
Winson Chunga449dc02014-05-16 11:15:04 -0700755 int SET_TASK_DESCRIPTION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+217;
Dianne Hackborn91097de2014-04-04 18:02:06 -0700756 int START_VOICE_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+218;
Craig Mautner233ceee2014-05-09 17:05:11 -0700757 int GET_ACTIVITY_OPTIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+219;
Winson Chung1147c402014-05-14 11:05:00 -0700758 int GET_APP_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+220;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700759 int START_LOCK_TASK_BY_CURRENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+221;
760 int STOP_LOCK_TASK_BY_CURRENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+222;
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -0700761 int FINISH_VOICE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+223;
Craig Mautnerd61dc202014-07-07 11:09:11 -0700762 int IS_TOP_OF_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+224;
Jose Lima4b6c6692014-08-12 17:41:12 -0700763 int REQUEST_VISIBLE_BEHIND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+225;
764 int IS_BACKGROUND_VISIBLE_BEHIND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+226;
765 int BACKGROUND_RESOURCES_RELEASED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+227;
Craig Mautnerbb742462014-07-07 15:28:55 -0700766 int NOTIFY_LAUNCH_TASK_BEHIND_COMPLETE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+228;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700767 int START_ACTIVITY_FROM_RECENTS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION + 229;
Craig Mautner8746a472014-07-24 15:12:54 -0700768 int NOTIFY_ENTER_ANIMATION_COMPLETE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+230;
Jorim Jaggi8de4311c2014-08-11 22:36:20 +0200769 int KEYGUARD_WAITING_FOR_ACTIVITY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+231;
Dianne Hackborn028ceeb2014-08-17 17:45:48 -0700770 int START_ACTIVITY_AS_CALLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+232;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700771 int ADD_APP_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+233;
772 int GET_APP_TASK_THUMBNAIL_SIZE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+234;
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700773 int RELEASE_ACTIVITY_INSTANCE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+235;
774 int RELEASE_SOME_ACTIVITIES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+236;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800775}