blob: a2c7fa4423c7e289bdd6ac1feb7ac65c84ed4213 [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
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019import android.content.ComponentName;
20import android.content.ContentProviderNative;
21import android.content.IContentProvider;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070022import android.content.IIntentReceiver;
23import android.content.IIntentSender;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024import android.content.Intent;
25import android.content.IntentFilter;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070026import android.content.IntentSender;
Christopher Tate181fafa2009-05-14 11:12:14 -070027import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028import android.content.pm.ConfigurationInfo;
29import android.content.pm.IPackageDataObserver;
30import android.content.pm.ProviderInfo;
Amith Yamasani52f1d752012-03-28 18:19:29 -070031import android.content.pm.UserInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import android.content.res.Configuration;
33import android.graphics.Bitmap;
34import android.net.Uri;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070035import android.os.Bundle;
Dianne Hackborn3025ef32009-08-31 21:31:47 -070036import android.os.Debug;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.os.IBinder;
38import android.os.IInterface;
39import android.os.Parcel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import android.os.ParcelFileDescriptor;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070041import android.os.Parcelable;
42import android.os.RemoteException;
43import android.os.StrictMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044
45import java.util.List;
46
47/**
48 * System private API for talking with the activity manager service. This
49 * provides calls from the application back to the activity manager.
50 *
51 * {@hide}
52 */
53public interface IActivityManager extends IInterface {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054 public int startActivity(IApplicationThread caller,
Dianne Hackborna4972e92012-03-14 10:38:05 -070055 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
56 int requestCode, int flags, String profileFile,
57 ParcelFileDescriptor profileFd, Bundle options) throws RemoteException;
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -080058 public WaitResult startActivityAndWait(IApplicationThread caller,
Dianne Hackborna4972e92012-03-14 10:38:05 -070059 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
60 int requestCode, int flags, String profileFile,
61 ParcelFileDescriptor profileFd, Bundle options) throws RemoteException;
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -070062 public int startActivityWithConfig(IApplicationThread caller,
Dianne Hackborna4972e92012-03-14 10:38:05 -070063 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
64 int requestCode, int startFlags, Configuration newConfig,
65 Bundle options) throws RemoteException;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070066 public int startActivityIntentSender(IApplicationThread caller,
67 IntentSender intent, Intent fillInIntent, String resolvedType,
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070068 IBinder resultTo, String resultWho, int requestCode,
Dianne Hackborna4972e92012-03-14 10:38:05 -070069 int flagsMask, int flagsValues, Bundle options) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070 public boolean startNextMatchingActivity(IBinder callingActivity,
Dianne Hackborna4972e92012-03-14 10:38:05 -070071 Intent intent, Bundle options) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072 public boolean finishActivity(IBinder token, int code, Intent data)
73 throws RemoteException;
74 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -070075 public boolean finishActivityAffinity(IBinder token) throws RemoteException;
Dianne Hackborn061d58a2010-03-12 15:07:06 -080076 public boolean willActivityBeVisible(IBinder token) throws RemoteException;
Dianne Hackborn6c418d52011-06-29 14:05:33 -070077 public Intent registerReceiver(IApplicationThread caller, String callerPackage,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078 IIntentReceiver receiver, IntentFilter filter,
79 String requiredPermission) throws RemoteException;
80 public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081 public int broadcastIntent(IApplicationThread caller, Intent intent,
82 String resolvedType, IIntentReceiver resultTo, int resultCode,
83 String resultData, Bundle map, String requiredPermission,
Amith Yamasani742a6712011-05-04 14:49:28 -070084 boolean serialized, boolean sticky, int userId) throws RemoteException;
85 public void unbroadcastIntent(IApplicationThread caller, Intent intent, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 /* oneway */
87 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 -080088 public void attachApplication(IApplicationThread app) throws RemoteException;
89 /* oneway */
Dianne Hackborn62f20ec2011-08-15 17:40:28 -070090 public void activityIdle(IBinder token, Configuration config,
91 boolean stopProfiling) throws RemoteException;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080092 public void activityPaused(IBinder token) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 /* oneway */
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080094 public void activityStopped(IBinder token, Bundle state,
95 Bitmap thumbnail, CharSequence description) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080096 /* oneway */
Dianne Hackborn4eba96b2011-01-21 13:34:36 -080097 public void activitySlept(IBinder token) throws RemoteException;
98 /* oneway */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099 public void activityDestroyed(IBinder token) throws RemoteException;
100 public String getCallingPackage(IBinder token) throws RemoteException;
101 public ComponentName getCallingActivity(IBinder token) throws RemoteException;
102 public List getTasks(int maxNum, int flags,
103 IThumbnailReceiver receiver) throws RemoteException;
104 public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
105 int flags) throws RemoteException;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700106 public ActivityManager.TaskThumbnails getTaskThumbnails(int taskId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107 public List getServices(int maxNum, int flags) throws RemoteException;
108 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
109 throws RemoteException;
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700110 public void moveTaskToFront(int task, int flags, Bundle options) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111 public void moveTaskToBack(int task) throws RemoteException;
112 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
113 public void moveTaskBackwards(int task) throws RemoteException;
114 public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 /* oneway */
116 public void reportThumbnail(IBinder token,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700117 Bitmap thumbnail, CharSequence description) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800118 public ContentProviderHolder getContentProvider(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700119 String name) throws RemoteException;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800120 public ContentProviderHolder getContentProviderExternal(String name, IBinder token)
121 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122 public void removeContentProvider(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700123 String name) throws RemoteException;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800124 public void removeContentProviderExternal(String name, IBinder token) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800125 public void publishContentProviders(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700126 List<ContentProviderHolder> providers) throws RemoteException;
127 public PendingIntent getRunningServiceControlPanel(ComponentName service)
128 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800129 public ComponentName startService(IApplicationThread caller, Intent service,
130 String resolvedType) throws RemoteException;
131 public int stopService(IApplicationThread caller, Intent service,
132 String resolvedType) throws RemoteException;
133 public boolean stopServiceToken(ComponentName className, IBinder token,
134 int startId) throws RemoteException;
135 public void setServiceForeground(ComponentName className, IBinder token,
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700136 int id, Notification notification, boolean keepNotification) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 public int bindService(IApplicationThread caller, IBinder token,
138 Intent service, String resolvedType,
Amith Yamasani37ce3a82012-02-06 12:04:42 -0800139 IServiceConnection connection, int flags, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140 public boolean unbindService(IServiceConnection connection) throws RemoteException;
141 public void publishService(IBinder token,
142 Intent intent, IBinder service) throws RemoteException;
143 public void unbindFinished(IBinder token, Intent service,
144 boolean doRebind) throws RemoteException;
145 /* oneway */
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700146 public void serviceDoneExecuting(IBinder token, int type, int startId,
147 int res) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 public IBinder peekService(Intent service, String resolvedType) throws RemoteException;
149
Christopher Tate181fafa2009-05-14 11:12:14 -0700150 public boolean bindBackupAgent(ApplicationInfo appInfo, int backupRestoreMode)
151 throws RemoteException;
152 public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException;
153 public void unbindBackupAgent(ApplicationInfo appInfo) throws RemoteException;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700154 public void killApplicationProcess(String processName, int uid) throws RemoteException;
Christopher Tate181fafa2009-05-14 11:12:14 -0700155
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800156 public boolean startInstrumentation(ComponentName className, String profileFile,
157 int flags, Bundle arguments, IInstrumentationWatcher watcher)
158 throws RemoteException;
159 public void finishInstrumentation(IApplicationThread target,
160 int resultCode, Bundle results) throws RemoteException;
161
162 public Configuration getConfiguration() throws RemoteException;
163 public void updateConfiguration(Configuration values) throws RemoteException;
164 public void setRequestedOrientation(IBinder token,
165 int requestedOrientation) throws RemoteException;
166 public int getRequestedOrientation(IBinder token) throws RemoteException;
167
168 public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
169 public String getPackageForToken(IBinder token) throws RemoteException;
170
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171 public IIntentSender getIntentSender(int type,
172 String packageName, IBinder token, String resultWho,
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800173 int requestCode, Intent[] intents, String[] resolvedTypes,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700174 int flags, Bundle options) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175 public void cancelIntentSender(IIntentSender sender) throws RemoteException;
176 public boolean clearApplicationUserData(final String packageName,
Amith Yamasani742a6712011-05-04 14:49:28 -0700177 final IPackageDataObserver observer, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800178 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
Christopher Tatec4a07d12012-04-06 14:19:13 -0700179 public int getUidForIntentSender(IIntentSender sender) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800180
181 public void setProcessLimit(int max) throws RemoteException;
182 public int getProcessLimit() throws RemoteException;
183
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800184 public void setProcessForeground(IBinder token, int pid,
185 boolean isForeground) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186
187 public int checkPermission(String permission, int pid, int uid)
188 throws RemoteException;
189
190 public int checkUriPermission(Uri uri, int pid, int uid, int mode)
191 throws RemoteException;
192 public void grantUriPermission(IApplicationThread caller, String targetPkg,
193 Uri uri, int mode) throws RemoteException;
194 public void revokeUriPermission(IApplicationThread caller, Uri uri,
195 int mode) throws RemoteException;
196
197 public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
198 throws RemoteException;
199
200 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
201
Dianne Hackborn03abb812010-01-04 18:43:19 -0800202 public void killBackgroundProcesses(final String packageName) throws RemoteException;
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -0800203 public void killAllBackgroundProcesses() throws RemoteException;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800204 public void forceStopPackage(final String packageName) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800205
206 // Note: probably don't want to allow applications access to these.
207 public void goingToSleep() throws RemoteException;
208 public void wakingUp() throws RemoteException;
Dianne Hackbornff5b1582012-04-12 17:24:07 -0700209 public void setLockScreenShown(boolean shown) throws RemoteException;
210
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211 public void unhandledBack() throws RemoteException;
212 public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException;
213 public void setDebugApp(
214 String packageName, boolean waitForDebugger, boolean persistent)
215 throws RemoteException;
216 public void setAlwaysFinish(boolean enabled) throws RemoteException;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700217 public void setActivityController(IActivityController watcher)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800218 throws RemoteException;
219
220 public void enterSafeMode() throws RemoteException;
221
222 public void noteWakeupAlarm(IIntentSender sender) throws RemoteException;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700223
Dianne Hackborn64825172011-03-02 21:32:58 -0800224 public boolean killPids(int[] pids, String reason, boolean secure) throws RemoteException;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700225 public boolean killProcessesBelowForeground(String reason) throws RemoteException;
226
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800227 // Special low-level communication with activity manager.
228 public void startRunning(String pkg, String cls, String action,
229 String data) throws RemoteException;
Dan Egnor60d87622009-12-16 16:32:58 -0800230 public void handleApplicationCrash(IBinder app,
231 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
232 public boolean handleApplicationWtf(IBinder app, String tag,
Dan Egnorb7f03672009-12-09 16:22:32 -0800233 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
Brad Fitzpatrick46d42382010-06-11 13:57:58 -0700234
235 // A StrictMode violation to be handled. The violationMask is a
236 // subset of the original StrictMode policy bitmask, with only the
237 // bit violated and penalty bits to be executed by the
238 // ActivityManagerService remaining set.
239 public void handleApplicationStrictModeViolation(IBinder app, int violationMask,
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -0700240 StrictMode.ViolationInfo crashInfo) throws RemoteException;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700241
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800242 /*
243 * This will deliver the specified signal to all the persistent processes. Currently only
244 * SIGUSR1 is delivered. All others are ignored.
245 */
246 public void signalPersistentProcesses(int signal) throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800247 // Retrieve running application processes in the system
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
249 throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800250 // Retrieve info of applications installed on external media that are currently
251 // running.
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700252 public List<ApplicationInfo> getRunningExternalApplications()
253 throws RemoteException;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800254 // Get memory information about the calling process.
255 public void getMyMemoryState(ActivityManager.RunningAppProcessInfo outInfo)
256 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800257 // Get device configuration
258 public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
259
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800260 // Turn on/off profiling in a particular process.
261 public boolean profileControl(String process, boolean start,
Romain Guy7eabe552011-07-21 14:56:34 -0700262 String path, ParcelFileDescriptor fd, int profileType) throws RemoteException;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800263
Dianne Hackborn55280a92009-05-07 15:53:46 -0700264 public boolean shutdown(int timeout) throws RemoteException;
265
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700266 public void stopAppSwitches() throws RemoteException;
267 public void resumeAppSwitches() throws RemoteException;
268
Dianne Hackborn2d91af02009-07-16 13:34:33 -0700269 public int startActivityInPackage(int uid,
270 Intent intent, String resolvedType, IBinder resultTo,
Dianne Hackborna4972e92012-03-14 10:38:05 -0700271 String resultWho, int requestCode, int startFlags, Bundle options)
Dianne Hackborn2d91af02009-07-16 13:34:33 -0700272 throws RemoteException;
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -0700273
274 public void killApplicationWithUid(String pkg, int uid) throws RemoteException;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700275
276 public void closeSystemDialogs(String reason) throws RemoteException;
277
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -0700278 public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids)
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700279 throws RemoteException;
280
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700281 public void overridePendingTransition(IBinder token, String packageName,
282 int enterAnim, int exitAnim) throws RemoteException;
283
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800284 public boolean isUserAMonkey() throws RemoteException;
285
Dianne Hackborn860755f2010-06-03 18:47:52 -0700286 public void finishHeavyWeightApp() throws RemoteException;
Daniel Sandler69a48172010-06-23 16:29:36 -0400287
288 public void setImmersive(IBinder token, boolean immersive) throws RemoteException;
289 public boolean isImmersive(IBinder token) throws RemoteException;
290 public boolean isTopActivityImmersive() throws RemoteException;
Dianne Hackborn860755f2010-06-03 18:47:52 -0700291
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700292 public void crashApplication(int uid, int initialPid, String packageName,
293 String message) throws RemoteException;
Dianne Hackborncca1f0e2010-09-26 18:34:53 -0700294
295 public String getProviderMimeType(Uri uri) throws RemoteException;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700296
Dianne Hackborn7e269642010-08-25 19:50:20 -0700297 public IBinder newUriPermissionOwner(String name) throws RemoteException;
298 public void grantUriPermissionFromOwner(IBinder owner, int fromUid, String targetPkg,
299 Uri uri, int mode) throws RemoteException;
300 public void revokeUriPermissionFromOwner(IBinder owner, Uri uri,
301 int mode) throws RemoteException;
Andy McFadden824c5102010-07-09 16:26:57 -0700302
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -0700303 public int checkGrantUriPermission(int callingUid, String targetPkg,
304 Uri uri, int modeFlags) throws RemoteException;
305
Andy McFadden824c5102010-07-09 16:26:57 -0700306 // Cause the specified process to dump the specified heap.
307 public boolean dumpHeap(String process, boolean managed, String path,
308 ParcelFileDescriptor fd) throws RemoteException;
309
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800310 public int startActivities(IApplicationThread caller,
Dianne Hackborna4972e92012-03-14 10:38:05 -0700311 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
312 Bundle options) throws RemoteException;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800313 public int startActivitiesInPackage(int uid,
Dianne Hackborna4972e92012-03-14 10:38:05 -0700314 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
315 Bundle options) throws RemoteException;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800316
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700317 public int getFrontActivityScreenCompatMode() throws RemoteException;
318 public void setFrontActivityScreenCompatMode(int mode) throws RemoteException;
319 public int getPackageScreenCompatMode(String packageName) throws RemoteException;
320 public void setPackageScreenCompatMode(String packageName, int mode)
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400321 throws RemoteException;
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700322 public boolean getPackageAskScreenCompat(String packageName) throws RemoteException;
323 public void setPackageAskScreenCompat(String packageName, boolean ask)
324 throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700325
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700326 // Multi-user APIs
327 public boolean switchUser(int userid) throws RemoteException;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700328 public UserInfo getCurrentUser() throws RemoteException;
329
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700330 public boolean removeSubTask(int taskId, int subTaskIndex) throws RemoteException;
331
332 public boolean removeTask(int taskId, int flags) throws RemoteException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700333
Jeff Sharkeya4620792011-05-20 15:29:23 -0700334 public void registerProcessObserver(IProcessObserver observer) throws RemoteException;
335 public void unregisterProcessObserver(IProcessObserver observer) throws RemoteException;
336
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700337 public boolean isIntentSenderTargetedToPackage(IIntentSender sender) throws RemoteException;
338
Dianne Hackborn31ca8542011-07-19 14:58:28 -0700339 public void updatePersistentConfiguration(Configuration values) throws RemoteException;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700340
341 public long[] getProcessPss(int[] pids) throws RemoteException;
342
Dianne Hackborn661cd522011-08-22 00:26:20 -0700343 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException;
344
Dianne Hackborn90c52de2011-09-23 12:57:44 -0700345 public void dismissKeyguardOnNextActivity() throws RemoteException;
346
Adam Powelldd8fab22012-03-22 17:47:27 -0700347 public boolean targetTaskAffinityMatchesActivity(IBinder token, String destAffinity)
348 throws RemoteException;
349
350 public boolean navigateUpTo(IBinder token, Intent target, int resultCode, Intent resultData)
351 throws RemoteException;
352
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800353 /*
354 * Private non-Binder interfaces
355 */
356 /* package */ boolean testIsSystemReady();
357
358 /** Information you can retrieve about a particular application. */
359 public static class ContentProviderHolder implements Parcelable {
360 public final ProviderInfo info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800361 public IContentProvider provider;
362 public boolean noReleaseNeeded;
363
364 public ContentProviderHolder(ProviderInfo _info) {
365 info = _info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800366 }
367
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368 public int describeContents() {
369 return 0;
370 }
371
372 public void writeToParcel(Parcel dest, int flags) {
373 info.writeToParcel(dest, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800374 if (provider != null) {
375 dest.writeStrongBinder(provider.asBinder());
376 } else {
377 dest.writeStrongBinder(null);
378 }
379 dest.writeInt(noReleaseNeeded ? 1:0);
380 }
381
382 public static final Parcelable.Creator<ContentProviderHolder> CREATOR
383 = new Parcelable.Creator<ContentProviderHolder>() {
384 public ContentProviderHolder createFromParcel(Parcel source) {
385 return new ContentProviderHolder(source);
386 }
387
388 public ContentProviderHolder[] newArray(int size) {
389 return new ContentProviderHolder[size];
390 }
391 };
392
393 private ContentProviderHolder(Parcel source) {
394 info = ProviderInfo.CREATOR.createFromParcel(source);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800395 provider = ContentProviderNative.asInterface(
396 source.readStrongBinder());
397 noReleaseNeeded = source.readInt() != 0;
398 }
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800399 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800400
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800401 /** Information returned after waiting for an activity start. */
402 public static class WaitResult implements Parcelable {
403 public int result;
404 public boolean timeout;
405 public ComponentName who;
406 public long thisTime;
407 public long totalTime;
408
409 public WaitResult() {
410 }
411
412 public int describeContents() {
413 return 0;
414 }
415
416 public void writeToParcel(Parcel dest, int flags) {
417 dest.writeInt(result);
418 dest.writeInt(timeout ? 1 : 0);
419 ComponentName.writeToParcel(who, dest);
420 dest.writeLong(thisTime);
421 dest.writeLong(totalTime);
422 }
423
424 public static final Parcelable.Creator<WaitResult> CREATOR
425 = new Parcelable.Creator<WaitResult>() {
426 public WaitResult createFromParcel(Parcel source) {
427 return new WaitResult(source);
428 }
429
430 public WaitResult[] newArray(int size) {
431 return new WaitResult[size];
432 }
433 };
434
435 private WaitResult(Parcel source) {
436 result = source.readInt();
437 timeout = source.readInt() != 0;
438 who = ComponentName.readFromParcel(source);
439 thisTime = source.readLong();
440 totalTime = source.readLong();
441 }
442 };
443
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444 String descriptor = "android.app.IActivityManager";
445
446 // Please keep these transaction codes the same -- they are also
447 // sent by C++ code.
448 int START_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION;
Dan Egnor60d87622009-12-16 16:32:58 -0800449 int HANDLE_APPLICATION_CRASH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800450 int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
451 int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
452 int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
453
454 // Remaining non-native transaction codes.
455 int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
456 int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
457 int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
458 int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
459 int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
460 int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
461 int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
462 int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
463 int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
464 int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
465 int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
466 int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
467 int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
468 int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
469 int MOVE_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+24;
470 int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
471 int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
472 int REPORT_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+27;
473 int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
474 int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -0700475
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800476 int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700477 int GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800478 int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
479 int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
480 int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
481 int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
482 int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
Dianne Hackborn21fbd1f2012-02-10 10:38:10 -0800483
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800484 int GOING_TO_SLEEP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+39;
485 int WAKING_UP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+40;
486 int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
487 int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
488 int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
489 int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
490 int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
491 int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
492 int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
493 int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
494 int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
495 int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
496 int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
497 int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
498 int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
499 int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
500 int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700501 int SET_ACTIVITY_CONTROLLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800502 int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
503 int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
504 int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
505 int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
506 int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
507 int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
508 int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
509 int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
510 int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
511 int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
512 int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
513 int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
514 int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
515 int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
516 int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
517 int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
518 int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
519 int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
520 int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
521 int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
522 int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800523 int FORCE_STOP_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -0700524 int KILL_PIDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800525 int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700526 int GET_TASK_THUMBNAILS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+81;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800527 int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
528 int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
529 int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800530 int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
Dianne Hackborn55280a92009-05-07 15:53:46 -0700531 int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700532 int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
533 int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
Christopher Tate181fafa2009-05-14 11:12:14 -0700534 int START_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+89;
535 int BACKUP_AGENT_CREATED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+90;
536 int UNBIND_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+91;
Christopher Tatec4a07d12012-04-06 14:19:13 -0700537 int GET_UID_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+92;
Dianne Hackborn21fbd1f2012-02-10 10:38:10 -0800538
539
Dianne Hackborn2d91af02009-07-16 13:34:33 -0700540 int START_ACTIVITY_IN_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+94;
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -0700541 int KILL_APPLICATION_WITH_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+95;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700542 int CLOSE_SYSTEM_DIALOGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+96;
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700543 int GET_PROCESS_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+97;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700544 int KILL_APPLICATION_PROCESS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+98;
Dianne Hackbornfa82f222009-09-17 15:14:12 -0700545 int START_ACTIVITY_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+99;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700546 int OVERRIDE_PENDING_TRANSITION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+100;
Dan Egnor60d87622009-12-16 16:32:58 -0800547 int HANDLE_APPLICATION_WTF_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+101;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800548 int KILL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+102;
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800549 int IS_USER_A_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+103;
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800550 int START_ACTIVITY_AND_WAIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+104;
Dianne Hackborn061d58a2010-03-12 15:07:06 -0800551 int WILL_ACTIVITY_BE_VISIBLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+105;
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700552 int START_ACTIVITY_WITH_CONFIG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+106;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700553 int GET_RUNNING_EXTERNAL_APPLICATIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+107;
Dianne Hackborn860755f2010-06-03 18:47:52 -0700554 int FINISH_HEAVY_WEIGHT_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+108;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700555 int HANDLE_APPLICATION_STRICT_MODE_VIOLATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+109;
Daniel Sandler69a48172010-06-23 16:29:36 -0400556 int IS_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+110;
557 int SET_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+111;
558 int IS_TOP_ACTIVITY_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+112;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700559 int CRASH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+113;
Dianne Hackborncca1f0e2010-09-26 18:34:53 -0700560 int GET_PROVIDER_MIME_TYPE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+114;
561 int NEW_URI_PERMISSION_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+115;
562 int GRANT_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+116;
563 int REVOKE_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+117;
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -0700564 int CHECK_GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+118;
565 int DUMP_HEAP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+119;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800566 int START_ACTIVITIES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+120;
567 int START_ACTIVITIES_IN_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+121;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800568 int ACTIVITY_SLEPT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+122;
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700569 int GET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+123;
570 int SET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+124;
571 int GET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+125;
572 int SET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+126;
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700573 int GET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+127;
574 int SET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+128;
Dianne Hackborn36f80f32011-05-31 18:26:45 -0700575 int SWITCH_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+129;
576 int REMOVE_SUB_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+130;
577 int REMOVE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+131;
578 int REGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+132;
579 int UNREGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+133;
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700580 int IS_INTENT_SENDER_TARGETED_TO_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+134;
Dianne Hackborn31ca8542011-07-19 14:58:28 -0700581 int UPDATE_PERSISTENT_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+135;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700582 int GET_PROCESS_PSS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+136;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700583 int SHOW_BOOT_MESSAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+137;
Dianne Hackborn90c52de2011-09-23 12:57:44 -0700584 int DISMISS_KEYGUARD_ON_NEXT_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+138;
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -0800585 int KILL_ALL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+139;
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800586 int GET_CONTENT_PROVIDER_EXTERNAL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+140;
587 int REMOVE_CONTENT_PROVIDER_EXTERNAL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+141;
Dianne Hackborn27ff9132012-03-06 14:57:58 -0800588 int GET_MY_MEMORY_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+142;
Jeff Sharkeyb9a07012012-03-22 17:00:04 -0700589 int KILL_PROCESSES_BELOW_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+143;
Amith Yamasani52f1d752012-03-28 18:19:29 -0700590 int GET_CURRENT_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+144;
Adam Powelldd8fab22012-03-22 17:47:27 -0700591 int TARGET_TASK_AFFINITY_MATCHES_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+145;
592 int NAVIGATE_UP_TO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+146;
Dianne Hackbornff5b1582012-04-12 17:24:07 -0700593 int SET_LOCK_SCREEN_SHOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+147;
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -0700594 int FINISH_ACTIVITY_AFFINITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+148;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800595}