blob: a62f72401ae6ea4b3f501bee3ceb9f71a3c3fd29 [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;
31import android.content.res.Configuration;
32import android.graphics.Bitmap;
33import android.net.Uri;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070034import android.os.Bundle;
Dianne Hackborn3025ef32009-08-31 21:31:47 -070035import android.os.Debug;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036import android.os.IBinder;
37import android.os.IInterface;
38import android.os.Parcel;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080039import android.os.ParcelFileDescriptor;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070040import android.os.Parcelable;
41import android.os.RemoteException;
42import android.os.StrictMode;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043
44import java.util.List;
45
46/**
47 * System private API for talking with the activity manager service. This
48 * provides calls from the application back to the activity manager.
49 *
50 * {@hide}
51 */
52public interface IActivityManager extends IInterface {
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070053 /**
54 * Returned by startActivity() if the start request was canceled because
55 * app switches are temporarily canceled to ensure the user's last request
56 * (such as pressing home) is performed.
57 */
58 public static final int START_SWITCHES_CANCELED = 4;
59 /**
60 * Returned by startActivity() if an activity wasn't really started, but
61 * the given Intent was given to the existing top activity.
62 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063 public static final int START_DELIVERED_TO_TOP = 3;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070064 /**
65 * Returned by startActivity() if an activity wasn't really started, but
66 * a task was simply brought to the foreground.
67 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068 public static final int START_TASK_TO_FRONT = 2;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070069 /**
70 * Returned by startActivity() if the caller asked that the Intent not
71 * be executed if it is the recipient, and that is indeed the case.
72 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073 public static final int START_RETURN_INTENT_TO_CALLER = 1;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070074 /**
75 * Activity was started successfully as normal.
76 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 public static final int START_SUCCESS = 0;
78 public static final int START_INTENT_NOT_RESOLVED = -1;
79 public static final int START_CLASS_NOT_FOUND = -2;
80 public static final int START_FORWARD_AND_REQUEST_CONFLICT = -3;
81 public static final int START_PERMISSION_DENIED = -4;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070082 public static final int START_NOT_ACTIVITY = -5;
83 public static final int START_CANCELED = -6;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 public int startActivity(IApplicationThread caller,
85 Intent intent, String resolvedType, Uri[] grantedUriPermissions,
86 int grantedMode, IBinder resultTo, String resultWho, int requestCode,
Dianne Hackborn62f20ec2011-08-15 17:40:28 -070087 boolean onlyIfNeeded, boolean debug, String profileFile,
88 ParcelFileDescriptor profileFd, boolean autoStopProfiler) throws RemoteException;
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -080089 public WaitResult startActivityAndWait(IApplicationThread caller,
90 Intent intent, String resolvedType, Uri[] grantedUriPermissions,
91 int grantedMode, IBinder resultTo, String resultWho, int requestCode,
Dianne Hackborn62f20ec2011-08-15 17:40:28 -070092 boolean onlyIfNeeded, boolean debug, String profileFile,
93 ParcelFileDescriptor profileFd, boolean autoStopProfiler) throws RemoteException;
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -070094 public int startActivityWithConfig(IApplicationThread caller,
95 Intent intent, String resolvedType, Uri[] grantedUriPermissions,
96 int grantedMode, IBinder resultTo, String resultWho, int requestCode,
97 boolean onlyIfNeeded, boolean debug, Configuration newConfig) throws RemoteException;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070098 public int startActivityIntentSender(IApplicationThread caller,
99 IntentSender intent, Intent fillInIntent, String resolvedType,
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700100 IBinder resultTo, String resultWho, int requestCode,
101 int flagsMask, int flagsValues) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 public boolean startNextMatchingActivity(IBinder callingActivity,
103 Intent intent) throws RemoteException;
104 public boolean finishActivity(IBinder token, int code, Intent data)
105 throws RemoteException;
106 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
Dianne Hackborn061d58a2010-03-12 15:07:06 -0800107 public boolean willActivityBeVisible(IBinder token) throws RemoteException;
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700108 public Intent registerReceiver(IApplicationThread caller, String callerPackage,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 IIntentReceiver receiver, IntentFilter filter,
110 String requiredPermission) throws RemoteException;
111 public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
112 public static final int BROADCAST_SUCCESS = 0;
113 public static final int BROADCAST_STICKY_CANT_HAVE_PERMISSION = -1;
114 public int broadcastIntent(IApplicationThread caller, Intent intent,
115 String resolvedType, IIntentReceiver resultTo, int resultCode,
116 String resultData, Bundle map, String requiredPermission,
Amith Yamasani742a6712011-05-04 14:49:28 -0700117 boolean serialized, boolean sticky, int userId) throws RemoteException;
118 public void unbroadcastIntent(IApplicationThread caller, Intent intent, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800119 /* oneway */
120 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 -0800121 public void attachApplication(IApplicationThread app) throws RemoteException;
122 /* oneway */
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700123 public void activityIdle(IBinder token, Configuration config,
124 boolean stopProfiling) throws RemoteException;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800125 public void activityPaused(IBinder token) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126 /* oneway */
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800127 public void activityStopped(IBinder token, Bundle state,
128 Bitmap thumbnail, CharSequence description) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800129 /* oneway */
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800130 public void activitySlept(IBinder token) throws RemoteException;
131 /* oneway */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132 public void activityDestroyed(IBinder token) throws RemoteException;
133 public String getCallingPackage(IBinder token) throws RemoteException;
134 public ComponentName getCallingActivity(IBinder token) throws RemoteException;
135 public List getTasks(int maxNum, int flags,
136 IThumbnailReceiver receiver) throws RemoteException;
137 public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
138 int flags) throws RemoteException;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700139 public ActivityManager.TaskThumbnails getTaskThumbnails(int taskId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140 public List getServices(int maxNum, int flags) throws RemoteException;
141 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
142 throws RemoteException;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800143 public void moveTaskToFront(int task, int flags) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144 public void moveTaskToBack(int task) throws RemoteException;
145 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
146 public void moveTaskBackwards(int task) throws RemoteException;
147 public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148 /* oneway */
149 public void reportThumbnail(IBinder token,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700150 Bitmap thumbnail, CharSequence description) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800151 public ContentProviderHolder getContentProvider(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700152 String name) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800153 public void removeContentProvider(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700154 String name) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800155 public void publishContentProviders(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700156 List<ContentProviderHolder> providers) throws RemoteException;
157 public PendingIntent getRunningServiceControlPanel(ComponentName service)
158 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 public ComponentName startService(IApplicationThread caller, Intent service,
160 String resolvedType) throws RemoteException;
161 public int stopService(IApplicationThread caller, Intent service,
162 String resolvedType) throws RemoteException;
163 public boolean stopServiceToken(ComponentName className, IBinder token,
164 int startId) throws RemoteException;
165 public void setServiceForeground(ComponentName className, IBinder token,
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700166 int id, Notification notification, boolean keepNotification) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 public int bindService(IApplicationThread caller, IBinder token,
168 Intent service, String resolvedType,
169 IServiceConnection connection, int flags) throws RemoteException;
170 public boolean unbindService(IServiceConnection connection) throws RemoteException;
171 public void publishService(IBinder token,
172 Intent intent, IBinder service) throws RemoteException;
173 public void unbindFinished(IBinder token, Intent service,
174 boolean doRebind) throws RemoteException;
175 /* oneway */
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700176 public void serviceDoneExecuting(IBinder token, int type, int startId,
177 int res) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800178 public IBinder peekService(Intent service, String resolvedType) throws RemoteException;
179
Christopher Tate181fafa2009-05-14 11:12:14 -0700180 public boolean bindBackupAgent(ApplicationInfo appInfo, int backupRestoreMode)
181 throws RemoteException;
182 public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException;
183 public void unbindBackupAgent(ApplicationInfo appInfo) throws RemoteException;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700184 public void killApplicationProcess(String processName, int uid) throws RemoteException;
Christopher Tate181fafa2009-05-14 11:12:14 -0700185
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186 public boolean startInstrumentation(ComponentName className, String profileFile,
187 int flags, Bundle arguments, IInstrumentationWatcher watcher)
188 throws RemoteException;
189 public void finishInstrumentation(IApplicationThread target,
190 int resultCode, Bundle results) throws RemoteException;
191
192 public Configuration getConfiguration() throws RemoteException;
193 public void updateConfiguration(Configuration values) throws RemoteException;
194 public void setRequestedOrientation(IBinder token,
195 int requestedOrientation) throws RemoteException;
196 public int getRequestedOrientation(IBinder token) throws RemoteException;
197
198 public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
199 public String getPackageForToken(IBinder token) throws RemoteException;
200
201 public static final int INTENT_SENDER_BROADCAST = 1;
202 public static final int INTENT_SENDER_ACTIVITY = 2;
203 public static final int INTENT_SENDER_ACTIVITY_RESULT = 3;
204 public static final int INTENT_SENDER_SERVICE = 4;
205 public IIntentSender getIntentSender(int type,
206 String packageName, IBinder token, String resultWho,
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800207 int requestCode, Intent[] intents, String[] resolvedTypes,
208 int flags) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800209 public void cancelIntentSender(IIntentSender sender) throws RemoteException;
210 public boolean clearApplicationUserData(final String packageName,
Amith Yamasani742a6712011-05-04 14:49:28 -0700211 final IPackageDataObserver observer, int userId) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
213
214 public void setProcessLimit(int max) throws RemoteException;
215 public int getProcessLimit() throws RemoteException;
216
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800217 public void setProcessForeground(IBinder token, int pid,
218 boolean isForeground) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800219
220 public int checkPermission(String permission, int pid, int uid)
221 throws RemoteException;
222
223 public int checkUriPermission(Uri uri, int pid, int uid, int mode)
224 throws RemoteException;
225 public void grantUriPermission(IApplicationThread caller, String targetPkg,
226 Uri uri, int mode) throws RemoteException;
227 public void revokeUriPermission(IApplicationThread caller, Uri uri,
228 int mode) throws RemoteException;
229
230 public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
231 throws RemoteException;
232
233 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
234
Dianne Hackborn03abb812010-01-04 18:43:19 -0800235 public void killBackgroundProcesses(final String packageName) throws RemoteException;
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -0800236 public void killAllBackgroundProcesses() throws RemoteException;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800237 public void forceStopPackage(final String packageName) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800238
239 // Note: probably don't want to allow applications access to these.
240 public void goingToSleep() throws RemoteException;
241 public void wakingUp() throws RemoteException;
242
243 public void unhandledBack() throws RemoteException;
244 public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException;
245 public void setDebugApp(
246 String packageName, boolean waitForDebugger, boolean persistent)
247 throws RemoteException;
248 public void setAlwaysFinish(boolean enabled) throws RemoteException;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700249 public void setActivityController(IActivityController watcher)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800250 throws RemoteException;
251
252 public void enterSafeMode() throws RemoteException;
253
254 public void noteWakeupAlarm(IIntentSender sender) throws RemoteException;
255
Dianne Hackborn64825172011-03-02 21:32:58 -0800256 public boolean killPids(int[] pids, String reason, boolean secure) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800257
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 // Special low-level communication with activity manager.
259 public void startRunning(String pkg, String cls, String action,
260 String data) throws RemoteException;
Dan Egnor60d87622009-12-16 16:32:58 -0800261 public void handleApplicationCrash(IBinder app,
262 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
263 public boolean handleApplicationWtf(IBinder app, String tag,
Dan Egnorb7f03672009-12-09 16:22:32 -0800264 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException;
Brad Fitzpatrick46d42382010-06-11 13:57:58 -0700265
266 // A StrictMode violation to be handled. The violationMask is a
267 // subset of the original StrictMode policy bitmask, with only the
268 // bit violated and penalty bits to be executed by the
269 // ActivityManagerService remaining set.
270 public void handleApplicationStrictModeViolation(IBinder app, int violationMask,
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -0700271 StrictMode.ViolationInfo crashInfo) throws RemoteException;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700272
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800273 /*
274 * This will deliver the specified signal to all the persistent processes. Currently only
275 * SIGUSR1 is delivered. All others are ignored.
276 */
277 public void signalPersistentProcesses(int signal) throws RemoteException;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700278 // Retrieve info of applications installed on external media that are currently
279 // running.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800280 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
281 throws RemoteException;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700282 // Retrieve running application processes in the system
283 public List<ApplicationInfo> getRunningExternalApplications()
284 throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285 // Get device configuration
286 public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
287
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800288 // Turn on/off profiling in a particular process.
289 public boolean profileControl(String process, boolean start,
Romain Guy7eabe552011-07-21 14:56:34 -0700290 String path, ParcelFileDescriptor fd, int profileType) throws RemoteException;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800291
Dianne Hackborn55280a92009-05-07 15:53:46 -0700292 public boolean shutdown(int timeout) throws RemoteException;
293
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700294 public void stopAppSwitches() throws RemoteException;
295 public void resumeAppSwitches() throws RemoteException;
296
Dianne Hackborn2d91af02009-07-16 13:34:33 -0700297 public int startActivityInPackage(int uid,
298 Intent intent, String resolvedType, IBinder resultTo,
299 String resultWho, int requestCode, boolean onlyIfNeeded)
300 throws RemoteException;
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -0700301
302 public void killApplicationWithUid(String pkg, int uid) throws RemoteException;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700303
304 public void closeSystemDialogs(String reason) throws RemoteException;
305
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -0700306 public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids)
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700307 throws RemoteException;
308
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700309 public void overridePendingTransition(IBinder token, String packageName,
310 int enterAnim, int exitAnim) throws RemoteException;
311
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800312 public boolean isUserAMonkey() throws RemoteException;
313
Dianne Hackborn860755f2010-06-03 18:47:52 -0700314 public void finishHeavyWeightApp() throws RemoteException;
Daniel Sandler69a48172010-06-23 16:29:36 -0400315
316 public void setImmersive(IBinder token, boolean immersive) throws RemoteException;
317 public boolean isImmersive(IBinder token) throws RemoteException;
318 public boolean isTopActivityImmersive() throws RemoteException;
Dianne Hackborn860755f2010-06-03 18:47:52 -0700319
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700320 public void crashApplication(int uid, int initialPid, String packageName,
321 String message) throws RemoteException;
Dianne Hackborncca1f0e2010-09-26 18:34:53 -0700322
323 public String getProviderMimeType(Uri uri) throws RemoteException;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700324
Dianne Hackborn7e269642010-08-25 19:50:20 -0700325 public IBinder newUriPermissionOwner(String name) throws RemoteException;
326 public void grantUriPermissionFromOwner(IBinder owner, int fromUid, String targetPkg,
327 Uri uri, int mode) throws RemoteException;
328 public void revokeUriPermissionFromOwner(IBinder owner, Uri uri,
329 int mode) throws RemoteException;
Andy McFadden824c5102010-07-09 16:26:57 -0700330
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -0700331 public int checkGrantUriPermission(int callingUid, String targetPkg,
332 Uri uri, int modeFlags) throws RemoteException;
333
Andy McFadden824c5102010-07-09 16:26:57 -0700334 // Cause the specified process to dump the specified heap.
335 public boolean dumpHeap(String process, boolean managed, String path,
336 ParcelFileDescriptor fd) throws RemoteException;
337
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800338 public int startActivities(IApplicationThread caller,
339 Intent[] intents, String[] resolvedTypes, IBinder resultTo) throws RemoteException;
340 public int startActivitiesInPackage(int uid,
341 Intent[] intents, String[] resolvedTypes, IBinder resultTo) throws RemoteException;
342
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700343 public int getFrontActivityScreenCompatMode() throws RemoteException;
344 public void setFrontActivityScreenCompatMode(int mode) throws RemoteException;
345 public int getPackageScreenCompatMode(String packageName) throws RemoteException;
346 public void setPackageScreenCompatMode(String packageName, int mode)
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400347 throws RemoteException;
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700348 public boolean getPackageAskScreenCompat(String packageName) throws RemoteException;
349 public void setPackageAskScreenCompat(String packageName, boolean ask)
350 throws RemoteException;
Dianne Hackbornaa9d84c2011-05-09 19:00:59 -0700351
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700352 // Multi-user APIs
353 public boolean switchUser(int userid) throws RemoteException;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700354
355 public boolean removeSubTask(int taskId, int subTaskIndex) throws RemoteException;
356
357 public boolean removeTask(int taskId, int flags) throws RemoteException;
Amith Yamasani4b2e9342011-03-31 12:38:53 -0700358
Jeff Sharkeya4620792011-05-20 15:29:23 -0700359 public void registerProcessObserver(IProcessObserver observer) throws RemoteException;
360 public void unregisterProcessObserver(IProcessObserver observer) throws RemoteException;
361
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700362 public boolean isIntentSenderTargetedToPackage(IIntentSender sender) throws RemoteException;
363
Dianne Hackborn31ca8542011-07-19 14:58:28 -0700364 public void updatePersistentConfiguration(Configuration values) throws RemoteException;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700365
366 public long[] getProcessPss(int[] pids) throws RemoteException;
367
Dianne Hackborn661cd522011-08-22 00:26:20 -0700368 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException;
369
Dianne Hackborn90c52de2011-09-23 12:57:44 -0700370 public void dismissKeyguardOnNextActivity() throws RemoteException;
371
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800372 /*
373 * Private non-Binder interfaces
374 */
375 /* package */ boolean testIsSystemReady();
376
377 /** Information you can retrieve about a particular application. */
378 public static class ContentProviderHolder implements Parcelable {
379 public final ProviderInfo info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800380 public IContentProvider provider;
381 public boolean noReleaseNeeded;
382
383 public ContentProviderHolder(ProviderInfo _info) {
384 info = _info;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800385 }
386
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800387 public int describeContents() {
388 return 0;
389 }
390
391 public void writeToParcel(Parcel dest, int flags) {
392 info.writeToParcel(dest, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800393 if (provider != null) {
394 dest.writeStrongBinder(provider.asBinder());
395 } else {
396 dest.writeStrongBinder(null);
397 }
398 dest.writeInt(noReleaseNeeded ? 1:0);
399 }
400
401 public static final Parcelable.Creator<ContentProviderHolder> CREATOR
402 = new Parcelable.Creator<ContentProviderHolder>() {
403 public ContentProviderHolder createFromParcel(Parcel source) {
404 return new ContentProviderHolder(source);
405 }
406
407 public ContentProviderHolder[] newArray(int size) {
408 return new ContentProviderHolder[size];
409 }
410 };
411
412 private ContentProviderHolder(Parcel source) {
413 info = ProviderInfo.CREATOR.createFromParcel(source);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800414 provider = ContentProviderNative.asInterface(
415 source.readStrongBinder());
416 noReleaseNeeded = source.readInt() != 0;
417 }
418 };
419
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800420 /** Information returned after waiting for an activity start. */
421 public static class WaitResult implements Parcelable {
422 public int result;
423 public boolean timeout;
424 public ComponentName who;
425 public long thisTime;
426 public long totalTime;
427
428 public WaitResult() {
429 }
430
431 public int describeContents() {
432 return 0;
433 }
434
435 public void writeToParcel(Parcel dest, int flags) {
436 dest.writeInt(result);
437 dest.writeInt(timeout ? 1 : 0);
438 ComponentName.writeToParcel(who, dest);
439 dest.writeLong(thisTime);
440 dest.writeLong(totalTime);
441 }
442
443 public static final Parcelable.Creator<WaitResult> CREATOR
444 = new Parcelable.Creator<WaitResult>() {
445 public WaitResult createFromParcel(Parcel source) {
446 return new WaitResult(source);
447 }
448
449 public WaitResult[] newArray(int size) {
450 return new WaitResult[size];
451 }
452 };
453
454 private WaitResult(Parcel source) {
455 result = source.readInt();
456 timeout = source.readInt() != 0;
457 who = ComponentName.readFromParcel(source);
458 thisTime = source.readLong();
459 totalTime = source.readLong();
460 }
461 };
462
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800463 String descriptor = "android.app.IActivityManager";
464
465 // Please keep these transaction codes the same -- they are also
466 // sent by C++ code.
467 int START_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION;
Dan Egnor60d87622009-12-16 16:32:58 -0800468 int HANDLE_APPLICATION_CRASH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800469 int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
470 int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
471 int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
472
473 // Remaining non-native transaction codes.
474 int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
475 int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
476 int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
477 int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
478 int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
479 int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
480 int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
481 int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
482 int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
483 int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
484 int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
485 int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
486 int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
487 int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
488 int MOVE_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+24;
489 int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
490 int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
491 int REPORT_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+27;
492 int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
493 int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -0700494
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800495 int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700496 int GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800497 int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
498 int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
499 int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
500 int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
501 int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
Dianne Hackborn21fbd1f2012-02-10 10:38:10 -0800502
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800503 int GOING_TO_SLEEP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+39;
504 int WAKING_UP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+40;
505 int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
506 int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
507 int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
508 int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
509 int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
510 int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
511 int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
512 int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
513 int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
514 int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
515 int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
516 int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
517 int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
518 int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
519 int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700520 int SET_ACTIVITY_CONTROLLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800521 int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
522 int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
523 int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
524 int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
525 int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
526 int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
527 int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
528 int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
529 int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
530 int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
531 int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
532 int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
533 int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
534 int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
535 int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
536 int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
537 int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
538 int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
539 int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
540 int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
541 int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800542 int FORCE_STOP_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -0700543 int KILL_PIDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800544 int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700545 int GET_TASK_THUMBNAILS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+81;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800546 int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
547 int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
548 int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800549 int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
Dianne Hackborn55280a92009-05-07 15:53:46 -0700550 int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700551 int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
552 int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
Christopher Tate181fafa2009-05-14 11:12:14 -0700553 int START_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+89;
554 int BACKUP_AGENT_CREATED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+90;
555 int UNBIND_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+91;
Dianne Hackborn21fbd1f2012-02-10 10:38:10 -0800556
557
Dianne Hackborn2d91af02009-07-16 13:34:33 -0700558 int START_ACTIVITY_IN_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+94;
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -0700559 int KILL_APPLICATION_WITH_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+95;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700560 int CLOSE_SYSTEM_DIALOGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+96;
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700561 int GET_PROCESS_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+97;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700562 int KILL_APPLICATION_PROCESS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+98;
Dianne Hackbornfa82f222009-09-17 15:14:12 -0700563 int START_ACTIVITY_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+99;
Dianne Hackborn3b3e1452009-09-24 19:22:12 -0700564 int OVERRIDE_PENDING_TRANSITION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+100;
Dan Egnor60d87622009-12-16 16:32:58 -0800565 int HANDLE_APPLICATION_WTF_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+101;
Dianne Hackborn03abb812010-01-04 18:43:19 -0800566 int KILL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+102;
Dianne Hackborn9327f4f2010-01-29 10:38:29 -0800567 int IS_USER_A_MONKEY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+103;
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800568 int START_ACTIVITY_AND_WAIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+104;
Dianne Hackborn061d58a2010-03-12 15:07:06 -0800569 int WILL_ACTIVITY_BE_VISIBLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+105;
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700570 int START_ACTIVITY_WITH_CONFIG_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+106;
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700571 int GET_RUNNING_EXTERNAL_APPLICATIONS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+107;
Dianne Hackborn860755f2010-06-03 18:47:52 -0700572 int FINISH_HEAVY_WEIGHT_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+108;
Brad Fitzpatrick438d0592010-06-10 12:19:19 -0700573 int HANDLE_APPLICATION_STRICT_MODE_VIOLATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+109;
Daniel Sandler69a48172010-06-23 16:29:36 -0400574 int IS_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+110;
575 int SET_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+111;
576 int IS_TOP_ACTIVITY_IMMERSIVE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+112;
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -0700577 int CRASH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+113;
Dianne Hackborncca1f0e2010-09-26 18:34:53 -0700578 int GET_PROVIDER_MIME_TYPE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+114;
579 int NEW_URI_PERMISSION_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+115;
580 int GRANT_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+116;
581 int REVOKE_URI_PERMISSION_FROM_OWNER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+117;
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -0700582 int CHECK_GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+118;
583 int DUMP_HEAP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+119;
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800584 int START_ACTIVITIES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+120;
585 int START_ACTIVITIES_IN_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+121;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800586 int ACTIVITY_SLEPT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+122;
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -0700587 int GET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+123;
588 int SET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+124;
589 int GET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+125;
590 int SET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+126;
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700591 int GET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+127;
592 int SET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+128;
Dianne Hackborn36f80f32011-05-31 18:26:45 -0700593 int SWITCH_USER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+129;
594 int REMOVE_SUB_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+130;
595 int REMOVE_TASK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+131;
596 int REGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+132;
597 int UNREGISTER_PROCESS_OBSERVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+133;
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700598 int IS_INTENT_SENDER_TARGETED_TO_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+134;
Dianne Hackborn31ca8542011-07-19 14:58:28 -0700599 int UPDATE_PERSISTENT_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+135;
Dianne Hackbornb437e092011-08-05 17:50:29 -0700600 int GET_PROCESS_PSS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+136;
Dianne Hackborn661cd522011-08-22 00:26:20 -0700601 int SHOW_BOOT_MESSAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+137;
Dianne Hackborn90c52de2011-09-23 12:57:44 -0700602 int DISMISS_KEYGUARD_ON_NEXT_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+138;
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -0800603 int KILL_ALL_BACKGROUND_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+139;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800604}