blob: 8c7fe10c606526978a2aad62780e5762f924d494 [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;
Craig Mautnerbdc748af2013-12-02 14:08:25 -080039import android.graphics.Rect;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import android.net.Uri;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070041import android.os.Bundle;
Dianne Hackborn3025ef32009-08-31 21:31:47 -070042import android.os.Debug;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.os.IBinder;
44import android.os.IInterface;
45import android.os.Parcel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046import android.os.ParcelFileDescriptor;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070047import android.os.Parcelable;
48import android.os.RemoteException;
49import android.os.StrictMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080050
51import java.util.List;
52
53/**
54 * System private API for talking with the activity manager service. This
55 * provides calls from the application back to the activity manager.
56 *
57 * {@hide}
58 */
59public interface IActivityManager extends IInterface {
Dianne Hackbornf265ea92013-01-31 15:00:51 -080060 public int startActivity(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -070061 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
62 int requestCode, int flags, String profileFile,
63 ParcelFileDescriptor profileFd, Bundle options) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -080064 public int startActivityAsUser(IApplicationThread caller, String callingPackage,
Amith Yamasani82644082012-08-03 13:09:11 -070065 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
66 int requestCode, int flags, String profileFile,
67 ParcelFileDescriptor profileFd, Bundle options, int userId) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -080068 public WaitResult startActivityAndWait(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -070069 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
70 int requestCode, int flags, String profileFile,
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -070071 ParcelFileDescriptor profileFd, Bundle options, int userId) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -080072 public int startActivityWithConfig(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -070073 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
74 int requestCode, int startFlags, Configuration newConfig,
Dianne Hackborn41203752012-08-31 14:05:51 -070075 Bundle options, int userId) throws RemoteException;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070076 public int startActivityIntentSender(IApplicationThread caller,
77 IntentSender intent, Intent fillInIntent, String resolvedType,
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070078 IBinder resultTo, String resultWho, int requestCode,
Dianne Hackborna4972e92012-03-14 10:38:05 -070079 int flagsMask, int flagsValues, Bundle options) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 public boolean startNextMatchingActivity(IBinder callingActivity,
Dianne Hackborna4972e92012-03-14 10:38:05 -070081 Intent intent, Bundle options) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 public boolean finishActivity(IBinder token, int code, Intent data)
83 throws RemoteException;
84 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -070085 public boolean finishActivityAffinity(IBinder token) throws RemoteException;
Dianne Hackborn061d58a2010-03-12 15:07:06 -080086 public boolean willActivityBeVisible(IBinder token) throws RemoteException;
Dianne Hackborn6c418d52011-06-29 14:05:33 -070087 public Intent registerReceiver(IApplicationThread caller, String callerPackage,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 IIntentReceiver receiver, IntentFilter filter,
Dianne Hackborn20e80982012-08-31 19:00:44 -070089 String requiredPermission, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090 public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091 public int broadcastIntent(IApplicationThread caller, Intent intent,
92 String resolvedType, IIntentReceiver resultTo, int resultCode,
93 String resultData, Bundle map, String requiredPermission,
Dianne Hackbornf51f6122013-02-04 18:23:34 -080094 int appOp, boolean serialized, boolean sticky, int userId) throws RemoteException;
Amith Yamasani742a6712011-05-04 14:49:28 -070095 public void unbroadcastIntent(IApplicationThread caller, Intent intent, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 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 -080097 public void attachApplication(IApplicationThread app) throws RemoteException;
Dianne Hackbornad9b32112012-09-17 15:35:01 -070098 public void activityResumed(IBinder token) throws RemoteException;
Dianne Hackborn62f20ec2011-08-15 17:40:28 -070099 public void activityIdle(IBinder token, Configuration config,
100 boolean stopProfiling) throws RemoteException;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800101 public void activityPaused(IBinder token) throws RemoteException;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800102 public void activityStopped(IBinder token, Bundle state,
103 Bitmap thumbnail, CharSequence description) throws RemoteException;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800104 public void activitySlept(IBinder token) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105 public void activityDestroyed(IBinder token) throws RemoteException;
106 public String getCallingPackage(IBinder token) throws RemoteException;
107 public ComponentName getCallingActivity(IBinder token) throws RemoteException;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800108 public List<RunningTaskInfo> getTasks(int maxNum, int flags,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 IThumbnailReceiver receiver) throws RemoteException;
110 public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
Amith Yamasani82644082012-08-03 13:09:11 -0700111 int flags, int userId) throws RemoteException;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700112 public ActivityManager.TaskThumbnails getTaskThumbnails(int taskId) throws RemoteException;
Dianne Hackborn15491c62012-09-19 10:59:14 -0700113 public Bitmap getTaskTopThumbnail(int taskId) throws RemoteException;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800114 public List<RunningServiceInfo> getServices(int maxNum, int flags) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
116 throws RemoteException;
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700117 public void moveTaskToFront(int task, int flags, Bundle options) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 public void moveTaskToBack(int task) throws RemoteException;
119 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
120 public void moveTaskBackwards(int task) throws RemoteException;
Craig Mautnerc00204b2013-03-05 15:02:14 -0800121 public void moveTaskToStack(int taskId, int stackId, boolean toTop) throws RemoteException;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800122 public void resizeStack(int stackId, Rect bounds) throws RemoteException;
123 public List<StackInfo> getAllStackInfos() throws RemoteException;
124 public StackInfo getStackInfo(int stackId) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700125 public void setFocusedStack(int stackId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126 public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 /* oneway */
128 public void reportThumbnail(IBinder token,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700129 Bitmap thumbnail, CharSequence description) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 public ContentProviderHolder getContentProvider(IApplicationThread caller,
Jeff Sharkey6d515712012-09-20 16:06:08 -0700131 String name, int userId, boolean stable) throws RemoteException;
132 public ContentProviderHolder getContentProviderExternal(String name, int userId, IBinder token)
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800133 throws RemoteException;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700134 public void removeContentProvider(IBinder connection, boolean stable) throws RemoteException;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800135 public void removeContentProviderExternal(String name, IBinder token) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800136 public void publishContentProviders(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700137 List<ContentProviderHolder> providers) throws RemoteException;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700138 public boolean refContentProvider(IBinder connection, int stableDelta, int unstableDelta)
139 throws RemoteException;
140 public void unstableProviderDied(IBinder connection) throws RemoteException;
Jeff Sharkey7aa76012013-09-30 14:26:27 -0700141 public void appNotRespondingViaProvider(IBinder connection) throws RemoteException;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700142 public PendingIntent getRunningServiceControlPanel(ComponentName service)
143 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144 public ComponentName startService(IApplicationThread caller, Intent service,
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700145 String resolvedType, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800146 public int stopService(IApplicationThread caller, Intent service,
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700147 String resolvedType, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 public boolean stopServiceToken(ComponentName className, IBinder token,
149 int startId) throws RemoteException;
150 public void setServiceForeground(ComponentName className, IBinder token,
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700151 int id, Notification notification, boolean keepNotification) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 public int bindService(IApplicationThread caller, IBinder token,
153 Intent service, String resolvedType,
Amith Yamasani37ce3a82012-02-06 12:04:42 -0800154 IServiceConnection connection, int flags, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800155 public boolean unbindService(IServiceConnection connection) throws RemoteException;
156 public void publishService(IBinder token,
157 Intent intent, IBinder service) throws RemoteException;
158 public void unbindFinished(IBinder token, Intent service,
159 boolean doRebind) throws RemoteException;
160 /* oneway */
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700161 public void serviceDoneExecuting(IBinder token, int type, int startId,
162 int res) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800163 public IBinder peekService(Intent service, String resolvedType) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700164
Christopher Tate181fafa2009-05-14 11:12:14 -0700165 public boolean bindBackupAgent(ApplicationInfo appInfo, int backupRestoreMode)
166 throws RemoteException;
Christopher Tate346acb12012-10-15 19:20:25 -0700167 public void clearPendingBackup() throws RemoteException;
Christopher Tate181fafa2009-05-14 11:12:14 -0700168 public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException;
169 public void unbindBackupAgent(ApplicationInfo appInfo) throws RemoteException;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700170 public void killApplicationProcess(String processName, int uid) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700171
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800172 public boolean startInstrumentation(ComponentName className, String profileFile,
Svetoslav Ganov80943d82013-01-02 10:25:37 -0800173 int flags, Bundle arguments, IInstrumentationWatcher watcher,
174 IUiAutomationConnection connection, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175 public void finishInstrumentation(IApplicationThread target,
176 int resultCode, Bundle results) throws RemoteException;
177
178 public Configuration getConfiguration() throws RemoteException;
179 public void updateConfiguration(Configuration values) throws RemoteException;
180 public void setRequestedOrientation(IBinder token,
181 int requestedOrientation) throws RemoteException;
182 public int getRequestedOrientation(IBinder token) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700183
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
185 public String getPackageForToken(IBinder token) throws RemoteException;
186
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800187 public IIntentSender getIntentSender(int type,
188 String packageName, IBinder token, String resultWho,
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800189 int requestCode, Intent[] intents, String[] resolvedTypes,
Dianne Hackborn41203752012-08-31 14:05:51 -0700190 int flags, Bundle options, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800191 public void cancelIntentSender(IIntentSender sender) throws RemoteException;
192 public boolean clearApplicationUserData(final String packageName,
Amith Yamasani742a6712011-05-04 14:49:28 -0700193 final IPackageDataObserver observer, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800194 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
Christopher Tatec4a07d12012-04-06 14:19:13 -0700195 public int getUidForIntentSender(IIntentSender sender) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700196
Dianne Hackborn41203752012-08-31 14:05:51 -0700197 public int handleIncomingUser(int callingPid, int callingUid, int userId, boolean allowAll,
198 boolean requireFull, String name, String callerPackage) throws RemoteException;
199
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800200 public void setProcessLimit(int max) throws RemoteException;
201 public int getProcessLimit() throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700202
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800203 public void setProcessForeground(IBinder token, int pid,
204 boolean isForeground) throws RemoteException;
Craig Mautnercf910b02013-04-23 11:23:27 -0700205
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 public int checkPermission(String permission, int pid, int uid)
207 throws RemoteException;
208
209 public int checkUriPermission(Uri uri, int pid, int uid, int mode)
210 throws RemoteException;
211 public void grantUriPermission(IApplicationThread caller, String targetPkg,
212 Uri uri, int mode) throws RemoteException;
213 public void revokeUriPermission(IApplicationThread caller, Uri uri,
214 int mode) throws RemoteException;
Jeff Sharkeye66c1772013-09-20 14:30:59 -0700215 public void takePersistableUriPermission(Uri uri, int modeFlags) throws RemoteException;
216 public void releasePersistableUriPermission(Uri uri, int modeFlags) throws RemoteException;
Jeff Sharkeybcaac0a2013-10-09 14:21:08 -0700217 public ParceledListSlice<UriPermission> getPersistedUriPermissions(
218 String packageName, boolean incoming) throws RemoteException;
Jeff Sharkeye66c1772013-09-20 14:30:59 -0700219
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800220 public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
221 throws RemoteException;
222
223 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
224
Dianne Hackborn1676c852012-09-10 14:52:30 -0700225 public void killBackgroundProcesses(final String packageName, int userId)
226 throws RemoteException;
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -0800227 public void killAllBackgroundProcesses() throws RemoteException;
Dianne Hackborn1676c852012-09-10 14:52:30 -0700228 public void forceStopPackage(final String packageName, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229
230 // Note: probably don't want to allow applications access to these.
231 public void goingToSleep() throws RemoteException;
232 public void wakingUp() throws RemoteException;
Dianne Hackbornff5b1582012-04-12 17:24:07 -0700233 public void setLockScreenShown(boolean shown) throws RemoteException;
234
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800235 public void unhandledBack() throws RemoteException;
236 public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException;
237 public void setDebugApp(
238 String packageName, boolean waitForDebugger, boolean persistent)
239 throws RemoteException;
240 public void setAlwaysFinish(boolean enabled) throws RemoteException;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700241 public void setActivityController(IActivityController watcher)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800242 throws RemoteException;
243
244 public void enterSafeMode() throws RemoteException;
245
Dianne Hackborn099bc622014-01-22 13:39:16 -0800246 public void noteWakeupAlarm(IIntentSender sender, int sourceUid, String sourcePkg)
247 throws RemoteException;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700248
Dianne Hackborn64825172011-03-02 21:32:58 -0800249 public boolean killPids(int[] pids, String reason, boolean secure) throws RemoteException;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700250 public boolean killProcessesBelowForeground(String reason) throws RemoteException;
251
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 // Special low-level communication with activity manager.
253 public void startRunning(String pkg, String cls, String action,
254 String data) throws RemoteException;
Dan Egnor60d87622009-12-16 16:32:58 -0800255 public void handleApplicationCrash(IBinder app,
256 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
257 public boolean handleApplicationWtf(IBinder app, String tag,
Dan Egnorb7f03672009-12-09 16:22:32 -0800258 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
Brad Fitzpatrick46d42382010-06-11 13:57:58 -0700259
260 // A StrictMode violation to be handled. The violationMask is a
261 // subset of the original StrictMode policy bitmask, with only the
262 // bit violated and penalty bits to be executed by the
263 // ActivityManagerService remaining set.
264 public void handleApplicationStrictModeViolation(IBinder app, int violationMask,
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -0700265 StrictMode.ViolationInfo crashInfo) throws RemoteException;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700266
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800267 /*
Craig Mautner5eda9b32013-07-02 11:58:16 -0700268 * This will deliver the specified signal to all the persistent processes. Currently only
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800269 * SIGUSR1 is delivered. All others are ignored.
270 */
271 public void signalPersistentProcesses(int signal) throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800272 // Retrieve running application processes in the system
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800273 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
274 throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800275 // Retrieve info of applications installed on external media that are currently
276 // running.
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700277 public List<ApplicationInfo> getRunningExternalApplications()
278 throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800279 // Get memory information about the calling process.
280 public void getMyMemoryState(ActivityManager.RunningAppProcessInfo outInfo)
281 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 // Get device configuration
283 public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
284
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800285 // Turn on/off profiling in a particular process.
Dianne Hackborn1676c852012-09-10 14:52:30 -0700286 public boolean profileControl(String process, int userId, boolean start,
Romain Guy7eabe552011-07-21 14:56:34 -0700287 String path, ParcelFileDescriptor fd, int profileType) throws RemoteException;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800288
Dianne Hackborn55280a92009-05-07 15:53:46 -0700289 public boolean shutdown(int timeout) throws RemoteException;
290
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700291 public void stopAppSwitches() throws RemoteException;
292 public void resumeAppSwitches() throws RemoteException;
293
Dianne Hackborn21d9b562013-05-28 17:46:59 -0700294 public void killApplicationWithAppId(String pkg, int appid, String reason)
295 throws RemoteException;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700296
297 public void closeSystemDialogs(String reason) throws RemoteException;
298
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -0700299 public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids)
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700300 throws RemoteException;
301
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700302 public void overridePendingTransition(IBinder token, String packageName,
303 int enterAnim, int exitAnim) throws RemoteException;
304
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800305 public boolean isUserAMonkey() throws RemoteException;
Adam Momtaz8f6f1f42013-04-10 12:42:58 -0700306
307 public void setUserIsMonkey(boolean monkey) throws RemoteException;
308
Dianne Hackborn860755f2010-06-03 18:47:52 -0700309 public void finishHeavyWeightApp() throws RemoteException;
Daniel Sandler69a48172010-06-23 16:29:36 -0400310
Craig Mautnerbc57cd12013-08-19 15:47:42 -0700311 public boolean convertFromTranslucent(IBinder token) throws RemoteException;
312 public boolean convertToTranslucent(IBinder token) throws RemoteException;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700313 public void notifyActivityDrawn(IBinder token) throws RemoteException;
Craig Mautner4addfc52013-06-25 08:05:45 -0700314
Daniel Sandler69a48172010-06-23 16:29:36 -0400315 public void setImmersive(IBinder token, boolean immersive) throws RemoteException;
316 public boolean isImmersive(IBinder token) throws RemoteException;
317 public boolean isTopActivityImmersive() throws RemoteException;
Dianne Hackborn860755f2010-06-03 18:47:52 -0700318
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700319 public void crashApplication(int uid, int initialPid, String packageName,
320 String message) throws RemoteException;
Dianne Hackborncca1f0e2010-09-26 18:34:53 -0700321
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700322 public String getProviderMimeType(Uri uri, int userId) throws RemoteException;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700323
Dianne Hackborn7e269642010-08-25 19:50:20 -0700324 public IBinder newUriPermissionOwner(String name) throws RemoteException;
325 public void grantUriPermissionFromOwner(IBinder owner, int fromUid, String targetPkg,
326 Uri uri, int mode) throws RemoteException;
327 public void revokeUriPermissionFromOwner(IBinder owner, Uri uri,
328 int mode) throws RemoteException;
Andy McFadden824c5102010-07-09 16:26:57 -0700329
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -0700330 public int checkGrantUriPermission(int callingUid, String targetPkg,
331 Uri uri, int modeFlags) throws RemoteException;
332
Andy McFadden824c5102010-07-09 16:26:57 -0700333 // Cause the specified process to dump the specified heap.
Dianne Hackborn1676c852012-09-10 14:52:30 -0700334 public boolean dumpHeap(String process, int userId, boolean managed, String path,
Andy McFadden824c5102010-07-09 16:26:57 -0700335 ParcelFileDescriptor fd) throws RemoteException;
336
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800337 public int startActivities(IApplicationThread caller, String callingPackage,
Dianne Hackborna4972e92012-03-14 10:38:05 -0700338 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
Amith Yamasaniea7e9152012-09-24 16:11:18 -0700339 Bundle options, int userId) throws RemoteException;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800340
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700341 public int getFrontActivityScreenCompatMode() throws RemoteException;
342 public void setFrontActivityScreenCompatMode(int mode) throws RemoteException;
343 public int getPackageScreenCompatMode(String packageName) throws RemoteException;
344 public void setPackageScreenCompatMode(String packageName, int mode)
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400345 throws RemoteException;
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700346 public boolean getPackageAskScreenCompat(String packageName) throws RemoteException;
347 public void setPackageAskScreenCompat(String packageName, boolean ask)
348 throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700349
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700350 // Multi-user APIs
351 public boolean switchUser(int userid) throws RemoteException;
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700352 public int stopUser(int userid, IStopUserCallback callback) throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700353 public UserInfo getCurrentUser() throws RemoteException;
Dianne Hackborna8a9bd62012-10-09 15:36:59 -0700354 public boolean isUserRunning(int userid, boolean orStopping) throws RemoteException;
Dianne Hackbornc72fc672012-09-20 13:12:03 -0700355 public int[] getRunningUserIds() throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700356
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700357 public boolean removeSubTask(int taskId, int subTaskIndex) throws RemoteException;
358
359 public boolean removeTask(int taskId, int flags) throws RemoteException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700360
Jeff Sharkeya4620792011-05-20 15:29:23 -0700361 public void registerProcessObserver(IProcessObserver observer) throws RemoteException;
362 public void unregisterProcessObserver(IProcessObserver observer) throws RemoteException;
363
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700364 public boolean isIntentSenderTargetedToPackage(IIntentSender sender) throws RemoteException;
365
Dianne Hackborn1927ae82012-06-22 15:21:36 -0700366 public boolean isIntentSenderAnActivity(IIntentSender sender) throws RemoteException;
367
Dianne Hackborn81038902012-11-26 17:04:09 -0800368 public Intent getIntentForIntentSender(IIntentSender sender) throws RemoteException;
369
Dianne Hackborn31ca8542011-07-19 14:58:28 -0700370 public void updatePersistentConfiguration(Configuration values) throws RemoteException;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700371
372 public long[] getProcessPss(int[] pids) throws RemoteException;
373
Dianne Hackborn661cd522011-08-22 00:26:20 -0700374 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException;
375
Dianne Hackborn90c52de2011-09-23 12:57:44 -0700376 public void dismissKeyguardOnNextActivity() throws RemoteException;
377
Adam Powelldd8fab22012-03-22 17:47:27 -0700378 public boolean targetTaskAffinityMatchesActivity(IBinder token, String destAffinity)
379 throws RemoteException;
380
381 public boolean navigateUpTo(IBinder token, Intent target, int resultCode, Intent resultData)
382 throws RemoteException;
383
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800384 // These are not public because you need to be very careful in how you
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700385 // manage your activity to make sure it is always the uid you expect.
386 public int getLaunchedFromUid(IBinder activityToken) throws RemoteException;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800387 public String getLaunchedFromPackage(IBinder activityToken) throws RemoteException;
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700388
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700389 public void registerUserSwitchObserver(IUserSwitchObserver observer) throws RemoteException;
390 public void unregisterUserSwitchObserver(IUserSwitchObserver observer) throws RemoteException;
391
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700392 public void requestBugReport() throws RemoteException;
393
Jeff Brownbd181bb2013-09-10 16:44:24 -0700394 public long inputDispatchingTimedOut(int pid, boolean aboveSystem, String reason)
395 throws RemoteException;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700396
Adam Skorydfc7fd72013-08-05 19:23:41 -0700397 public Bundle getAssistContextExtras(int requestType) throws RemoteException;
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -0800398
Adam Skory7140a252013-09-11 12:04:58 +0100399 public void reportAssistContextExtras(IBinder token, Bundle extras) throws RemoteException;
Dianne Hackbornf9c5e0f2013-01-23 14:39:13 -0800400
Dianne Hackbornf1b78242013-04-08 22:28:59 -0700401 public void killUid(int uid, String reason) throws RemoteException;
402
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700403 public void hang(IBinder who, boolean allowRestart) throws RemoteException;
404
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700405 public void reportActivityFullyDrawn(IBinder token) throws RemoteException;
406
Dianne Hackborn57a7f592013-07-22 18:21:32 -0700407 public void restart() throws RemoteException;
408
Dianne Hackborn35f72be2013-09-16 10:57:39 -0700409 public void performIdleMaintenance() throws RemoteException;
410
Craig Mautner4a1cb222013-12-04 16:14:06 -0800411 public IActivityContainer createActivityContainer(IBinder parentActivityToken,
412 IActivityContainerCallback callback) throws RemoteException;
413
Craig Mautnere0a38842013-12-16 16:14:02 -0800414 public IActivityContainer getEnclosingActivityContainer(IBinder activityToken)
415 throws RemoteException;
416
Craig Mautner4a1cb222013-12-04 16:14:06 -0800417 public IBinder getHomeActivityToken() throws RemoteException;
418
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800419 /*
420 * Private non-Binder interfaces
421 */
422 /* package */ boolean testIsSystemReady();
423
424 /** Information you can retrieve about a particular application. */
425 public static class ContentProviderHolder implements Parcelable {
426 public final ProviderInfo info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800427 public IContentProvider provider;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700428 public IBinder connection;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800429 public boolean noReleaseNeeded;
430
431 public ContentProviderHolder(ProviderInfo _info) {
432 info = _info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800433 }
434
Craig Mautnercf910b02013-04-23 11:23:27 -0700435 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800436 public int describeContents() {
437 return 0;
438 }
439
Craig Mautnercf910b02013-04-23 11:23:27 -0700440 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800441 public void writeToParcel(Parcel dest, int flags) {
442 info.writeToParcel(dest, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800443 if (provider != null) {
444 dest.writeStrongBinder(provider.asBinder());
445 } else {
446 dest.writeStrongBinder(null);
447 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700448 dest.writeStrongBinder(connection);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800449 dest.writeInt(noReleaseNeeded ? 1:0);
450 }
451
452 public static final Parcelable.Creator<ContentProviderHolder> CREATOR
453 = new Parcelable.Creator<ContentProviderHolder>() {
Craig Mautnercf910b02013-04-23 11:23:27 -0700454 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800455 public ContentProviderHolder createFromParcel(Parcel source) {
456 return new ContentProviderHolder(source);
457 }
458
Craig Mautnercf910b02013-04-23 11:23:27 -0700459 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800460 public ContentProviderHolder[] newArray(int size) {
461 return new ContentProviderHolder[size];
462 }
463 };
464
465 private ContentProviderHolder(Parcel source) {
466 info = ProviderInfo.CREATOR.createFromParcel(source);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800467 provider = ContentProviderNative.asInterface(
468 source.readStrongBinder());
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700469 connection = source.readStrongBinder();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800470 noReleaseNeeded = source.readInt() != 0;
471 }
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800472 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800473
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800474 /** Information returned after waiting for an activity start. */
475 public static class WaitResult implements Parcelable {
476 public int result;
477 public boolean timeout;
478 public ComponentName who;
479 public long thisTime;
480 public long totalTime;
481
482 public WaitResult() {
483 }
484
Craig Mautnercf910b02013-04-23 11:23:27 -0700485 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800486 public int describeContents() {
487 return 0;
488 }
489
Craig Mautnercf910b02013-04-23 11:23:27 -0700490 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800491 public void writeToParcel(Parcel dest, int flags) {
492 dest.writeInt(result);
493 dest.writeInt(timeout ? 1 : 0);
494 ComponentName.writeToParcel(who, dest);
495 dest.writeLong(thisTime);
496 dest.writeLong(totalTime);
497 }
498
499 public static final Parcelable.Creator<WaitResult> CREATOR
500 = new Parcelable.Creator<WaitResult>() {
Craig Mautnercf910b02013-04-23 11:23:27 -0700501 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800502 public WaitResult createFromParcel(Parcel source) {
503 return new WaitResult(source);
504 }
505
Craig Mautnercf910b02013-04-23 11:23:27 -0700506 @Override
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800507 public WaitResult[] newArray(int size) {
508 return new WaitResult[size];
509 }
510 };
511
512 private WaitResult(Parcel source) {
513 result = source.readInt();
514 timeout = source.readInt() != 0;
515 who = ComponentName.readFromParcel(source);
516 thisTime = source.readLong();
517 totalTime = source.readLong();
518 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700519 }
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800520
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800521 String descriptor = "android.app.IActivityManager";
522
523 // Please keep these transaction codes the same -- they are also
524 // sent by C++ code.
525 int START_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION;
Dan Egnor60d87622009-12-16 16:32:58 -0800526 int HANDLE_APPLICATION_CRASH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800527 int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
528 int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
529 int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
530
531 // Remaining non-native transaction codes.
532 int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
533 int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
534 int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
535 int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
536 int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
537 int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
538 int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
539 int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
540 int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
541 int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
542 int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
543 int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
544 int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
545 int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
546 int MOVE_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+24;
547 int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
548 int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
549 int REPORT_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+27;
550 int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
551 int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700552 int REF_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+30;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800553 int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700554 int GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800555 int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
556 int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
557 int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
558 int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
559 int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700560 int ACTIVITY_RESUMED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+38;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800561 int GOING_TO_SLEEP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+39;
562 int WAKING_UP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+40;
563 int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
564 int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
565 int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
566 int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
567 int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
568 int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
569 int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
570 int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
571 int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
572 int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
573 int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
574 int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
575 int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
576 int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
577 int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700578 int SET_ACTIVITY_CONTROLLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800579 int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
580 int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
581 int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
582 int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
583 int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
584 int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
585 int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
586 int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
587 int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
588 int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
589 int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
590 int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
591 int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
592 int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
593 int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
594 int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
595 int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
596 int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
597 int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
598 int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
599 int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800600 int FORCE_STOP_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -0700601 int KILL_PIDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800602 int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700603 int GET_TASK_THUMBNAILS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+81;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800604 int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
605 int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
606 int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800607 int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
Dianne Hackborn55280a92009-05-07 15:53:46 -0700608 int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700609 int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
610 int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
Christopher Tate181fafa2009-05-14 11:12:14 -0700611 int START_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+89;
612 int BACKUP_AGENT_CREATED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+90;
613 int UNBIND_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+91;
Christopher Tatec4a07d12012-04-06 14:19:13 -0700614 int GET_UID_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+92;
Dianne Hackborn41203752012-08-31 14:05:51 -0700615 int HANDLE_INCOMING_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+93;
Dianne Hackborn15491c62012-09-19 10:59:14 -0700616 int GET_TASK_TOP_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+94;
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700617 int KILL_APPLICATION_WITH_APPID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+95;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700618 int CLOSE_SYSTEM_DIALOGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+96;
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700619 int GET_PROCESS_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+97;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700620 int KILL_APPLICATION_PROCESS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+98;
Dianne Hackbornfa82f222009-09-17 15:14:12 -0700621 int START_ACTIVITY_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+99;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700622 int OVERRIDE_PENDING_TRANSITION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+100;
Dan Egnor60d87622009-12-16 16:32:58 -0800623 int HANDLE_APPLICATION_WTF_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+101;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800624 int KILL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+102;
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800625 int IS_USER_A_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+103;
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800626 int START_ACTIVITY_AND_WAIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+104;
Dianne Hackborn061d58a2010-03-12 15:07:06 -0800627 int WILL_ACTIVITY_BE_VISIBLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+105;
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700628 int START_ACTIVITY_WITH_CONFIG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+106;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700629 int GET_RUNNING_EXTERNAL_APPLICATIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+107;
Dianne Hackborn860755f2010-06-03 18:47:52 -0700630 int FINISH_HEAVY_WEIGHT_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+108;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700631 int HANDLE_APPLICATION_STRICT_MODE_VIOLATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+109;
Daniel Sandler69a48172010-06-23 16:29:36 -0400632 int IS_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+110;
633 int SET_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+111;
634 int IS_TOP_ACTIVITY_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+112;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700635 int CRASH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+113;
Dianne Hackborncca1f0e2010-09-26 18:34:53 -0700636 int GET_PROVIDER_MIME_TYPE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+114;
637 int NEW_URI_PERMISSION_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+115;
638 int GRANT_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+116;
639 int REVOKE_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+117;
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -0700640 int CHECK_GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+118;
641 int DUMP_HEAP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+119;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800642 int START_ACTIVITIES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+120;
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700643 int IS_USER_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+121;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800644 int ACTIVITY_SLEPT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+122;
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700645 int GET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+123;
646 int SET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+124;
647 int GET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+125;
648 int SET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+126;
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700649 int GET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+127;
650 int SET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+128;
Dianne Hackborn36f80f32011-05-31 18:26:45 -0700651 int SWITCH_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+129;
652 int REMOVE_SUB_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+130;
653 int REMOVE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+131;
654 int REGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+132;
655 int UNREGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+133;
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700656 int IS_INTENT_SENDER_TARGETED_TO_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+134;
Dianne Hackborn31ca8542011-07-19 14:58:28 -0700657 int UPDATE_PERSISTENT_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+135;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700658 int GET_PROCESS_PSS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+136;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700659 int SHOW_BOOT_MESSAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+137;
Dianne Hackborn90c52de2011-09-23 12:57:44 -0700660 int DISMISS_KEYGUARD_ON_NEXT_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+138;
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -0800661 int KILL_ALL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+139;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800662 int GET_CONTENT_PROVIDER_EXTERNAL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+140;
663 int REMOVE_CONTENT_PROVIDER_EXTERNAL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+141;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800664 int GET_MY_MEMORY_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+142;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700665 int KILL_PROCESSES_BELOW_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+143;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700666 int GET_CURRENT_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+144;
Adam Powelldd8fab22012-03-22 17:47:27 -0700667 int TARGET_TASK_AFFINITY_MATCHES_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+145;
668 int NAVIGATE_UP_TO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+146;
Dianne Hackbornff5b1582012-04-12 17:24:07 -0700669 int SET_LOCK_SCREEN_SHOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+147;
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -0700670 int FINISH_ACTIVITY_AFFINITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+148;
Dianne Hackborn5320eb82012-05-18 12:05:04 -0700671 int GET_LAUNCHED_FROM_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+149;
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700672 int UNSTABLE_PROVIDER_DIED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+150;
Dianne Hackborn1927ae82012-06-22 15:21:36 -0700673 int IS_INTENT_SENDER_AN_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+151;
Amith Yamasani82644082012-08-03 13:09:11 -0700674 int START_ACTIVITY_AS_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+152;
Dianne Hackborn80a4af22012-08-27 19:18:31 -0700675 int STOP_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+153;
Dianne Hackborn5dc5a002012-09-15 19:33:48 -0700676 int REGISTER_USER_SWITCH_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+154;
677 int UNREGISTER_USER_SWITCH_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+155;
Dianne Hackbornc72fc672012-09-20 13:12:03 -0700678 int GET_RUNNING_USER_IDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+156;
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -0700679 int REQUEST_BUG_REPORT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+157;
Dianne Hackborn5fe7e2a2012-10-04 11:58:16 -0700680 int INPUT_DISPATCHING_TIMED_OUT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+158;
Christopher Tate346acb12012-10-15 19:20:25 -0700681 int CLEAR_PENDING_BACKUP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+159;
Dianne Hackborn81038902012-11-26 17:04:09 -0800682 int GET_INTENT_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+160;
Adam Skorydfc7fd72013-08-05 19:23:41 -0700683 int GET_ASSIST_CONTEXT_EXTRAS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+161;
684 int REPORT_ASSIST_CONTEXT_EXTRAS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+162;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800685 int GET_LAUNCHED_FROM_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+163;
Dianne Hackbornf1b78242013-04-08 22:28:59 -0700686 int KILL_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+164;
Adam Momtaz8f6f1f42013-04-10 12:42:58 -0700687 int SET_USER_IS_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+165;
Dianne Hackborn8bd64df2013-05-06 16:07:26 -0700688 int HANG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+166;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800689 int CREATE_ACTIVITY_CONTAINER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+167;
Kenny Root1d69bad2013-05-07 10:14:28 -0700690 int MOVE_TASK_TO_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+168;
691 int RESIZE_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+169;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800692 int GET_ALL_STACK_INFOS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+170;
Kenny Root1d69bad2013-05-07 10:14:28 -0700693 int SET_FOCUSED_STACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+171;
Craig Mautnerbdc748af2013-12-02 14:08:25 -0800694 int GET_STACK_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+172;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700695 int CONVERT_FROM_TRANSLUCENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+173;
696 int CONVERT_TO_TRANSLUCENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+174;
697 int NOTIFY_ACTIVITY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+175;
698 int REPORT_ACTIVITY_FULLY_DRAWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+176;
Dianne Hackborn57a7f592013-07-22 18:21:32 -0700699 int RESTART_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+177;
Jeff Sharkeye66c1772013-09-20 14:30:59 -0700700 int PERFORM_IDLE_MAINTENANCE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+178;
701 int TAKE_PERSISTABLE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+179;
702 int RELEASE_PERSISTABLE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+180;
703 int GET_PERSISTED_URI_PERMISSIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+181;
Jeff Sharkey7aa76012013-09-30 14:26:27 -0700704 int APP_NOT_RESPONDING_VIA_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+182;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800705 int GET_HOME_ACTIVITY_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+183;
Craig Mautnere0a38842013-12-16 16:14:02 -0800706 int GET_ACTIVITY_CONTAINER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+184;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800707}