blob: 82446455cddc1968f47c4612eb9efba096d9fc48 [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;
22import android.content.Intent;
23import android.content.IntentFilter;
Suchi Amalapurapu1ccac752009-06-12 10:09:58 -070024import android.content.IIntentSender;
25import android.content.IIntentReceiver;
Christopher Tate181fafa2009-05-14 11:12:14 -070026import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027import android.content.pm.ConfigurationInfo;
28import android.content.pm.IPackageDataObserver;
29import android.content.pm.ProviderInfo;
30import android.content.res.Configuration;
31import android.graphics.Bitmap;
32import android.net.Uri;
Dianne Hackborn3025ef32009-08-31 21:31:47 -070033import android.os.Debug;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034import android.os.RemoteException;
35import android.os.IBinder;
36import android.os.IInterface;
37import android.os.Parcel;
38import android.os.Parcelable;
39import android.os.ParcelFileDescriptor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import android.os.Bundle;
41
42import java.util.List;
43
44/**
45 * System private API for talking with the activity manager service. This
46 * provides calls from the application back to the activity manager.
47 *
48 * {@hide}
49 */
50public interface IActivityManager extends IInterface {
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070051 /**
52 * Returned by startActivity() if the start request was canceled because
53 * app switches are temporarily canceled to ensure the user's last request
54 * (such as pressing home) is performed.
55 */
56 public static final int START_SWITCHES_CANCELED = 4;
57 /**
58 * Returned by startActivity() if an activity wasn't really started, but
59 * the given Intent was given to the existing top activity.
60 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080061 public static final int START_DELIVERED_TO_TOP = 3;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070062 /**
63 * Returned by startActivity() if an activity wasn't really started, but
64 * a task was simply brought to the foreground.
65 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066 public static final int START_TASK_TO_FRONT = 2;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070067 /**
68 * Returned by startActivity() if the caller asked that the Intent not
69 * be executed if it is the recipient, and that is indeed the case.
70 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071 public static final int START_RETURN_INTENT_TO_CALLER = 1;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070072 /**
73 * Activity was started successfully as normal.
74 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075 public static final int START_SUCCESS = 0;
76 public static final int START_INTENT_NOT_RESOLVED = -1;
77 public static final int START_CLASS_NOT_FOUND = -2;
78 public static final int START_FORWARD_AND_REQUEST_CONFLICT = -3;
79 public static final int START_PERMISSION_DENIED = -4;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070080 public static final int START_NOT_ACTIVITY = -5;
81 public static final int START_CANCELED = -6;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 public int startActivity(IApplicationThread caller,
83 Intent intent, String resolvedType, Uri[] grantedUriPermissions,
84 int grantedMode, IBinder resultTo, String resultWho, int requestCode,
85 boolean onlyIfNeeded, boolean debug) throws RemoteException;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -070086 public int startActivityPendingIntent(IApplicationThread caller,
87 PendingIntent intent, Intent fillInIntent, String resolvedType,
88 IBinder resultTo, String resultWho, int requestCode,
89 int flagsMask, int flagsValues) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080090 public boolean startNextMatchingActivity(IBinder callingActivity,
91 Intent intent) throws RemoteException;
92 public boolean finishActivity(IBinder token, int code, Intent data)
93 throws RemoteException;
94 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
95 public Intent registerReceiver(IApplicationThread caller,
96 IIntentReceiver receiver, IntentFilter filter,
97 String requiredPermission) throws RemoteException;
98 public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
99 public static final int BROADCAST_SUCCESS = 0;
100 public static final int BROADCAST_STICKY_CANT_HAVE_PERMISSION = -1;
101 public int broadcastIntent(IApplicationThread caller, Intent intent,
102 String resolvedType, IIntentReceiver resultTo, int resultCode,
103 String resultData, Bundle map, String requiredPermission,
104 boolean serialized, boolean sticky) throws RemoteException;
105 public void unbroadcastIntent(IApplicationThread caller, Intent intent) throws RemoteException;
106 /* oneway */
107 public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map, boolean abortBroadcast) throws RemoteException;
108 public void setPersistent(IBinder token, boolean isPersistent) throws RemoteException;
109 public void attachApplication(IApplicationThread app) throws RemoteException;
110 /* oneway */
111 public void activityIdle(IBinder token) throws RemoteException;
112 public void activityPaused(IBinder token, Bundle state) throws RemoteException;
113 /* oneway */
114 public void activityStopped(IBinder token,
115 Bitmap thumbnail, CharSequence description) throws RemoteException;
116 /* oneway */
117 public void activityDestroyed(IBinder token) throws RemoteException;
118 public String getCallingPackage(IBinder token) throws RemoteException;
119 public ComponentName getCallingActivity(IBinder token) throws RemoteException;
120 public List getTasks(int maxNum, int flags,
121 IThumbnailReceiver receiver) throws RemoteException;
122 public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
123 int flags) throws RemoteException;
124 public List getServices(int maxNum, int flags) throws RemoteException;
125 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
126 throws RemoteException;
127 public void moveTaskToFront(int task) throws RemoteException;
128 public void moveTaskToBack(int task) throws RemoteException;
129 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
130 public void moveTaskBackwards(int task) throws RemoteException;
131 public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
132 public void finishOtherInstances(IBinder token, ComponentName className) throws RemoteException;
133 /* oneway */
134 public void reportThumbnail(IBinder token,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700135 Bitmap thumbnail, CharSequence description) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800136 public ContentProviderHolder getContentProvider(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700137 String name) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800138 public void removeContentProvider(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700139 String name) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140 public void publishContentProviders(IApplicationThread caller,
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700141 List<ContentProviderHolder> providers) throws RemoteException;
142 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,
145 String resolvedType) throws RemoteException;
146 public int stopService(IApplicationThread caller, Intent service,
147 String resolvedType) throws RemoteException;
148 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,
154 IServiceConnection connection, int flags) throws RemoteException;
155 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;
164
Christopher Tate181fafa2009-05-14 11:12:14 -0700165 public boolean bindBackupAgent(ApplicationInfo appInfo, int backupRestoreMode)
166 throws RemoteException;
167 public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException;
168 public void unbindBackupAgent(ApplicationInfo appInfo) throws RemoteException;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700169 public void killApplicationProcess(String processName, int uid) throws RemoteException;
Christopher Tate181fafa2009-05-14 11:12:14 -0700170
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800171 public boolean startInstrumentation(ComponentName className, String profileFile,
172 int flags, Bundle arguments, IInstrumentationWatcher watcher)
173 throws RemoteException;
174 public void finishInstrumentation(IApplicationThread target,
175 int resultCode, Bundle results) throws RemoteException;
176
177 public Configuration getConfiguration() throws RemoteException;
178 public void updateConfiguration(Configuration values) throws RemoteException;
179 public void setRequestedOrientation(IBinder token,
180 int requestedOrientation) throws RemoteException;
181 public int getRequestedOrientation(IBinder token) throws RemoteException;
182
183 public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
184 public String getPackageForToken(IBinder token) throws RemoteException;
185
186 public static final int INTENT_SENDER_BROADCAST = 1;
187 public static final int INTENT_SENDER_ACTIVITY = 2;
188 public static final int INTENT_SENDER_ACTIVITY_RESULT = 3;
189 public static final int INTENT_SENDER_SERVICE = 4;
190 public IIntentSender getIntentSender(int type,
191 String packageName, IBinder token, String resultWho,
192 int requestCode, Intent intent, String resolvedType, int flags) throws RemoteException;
193 public void cancelIntentSender(IIntentSender sender) throws RemoteException;
194 public boolean clearApplicationUserData(final String packageName,
195 final IPackageDataObserver observer) throws RemoteException;
196 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
197
198 public void setProcessLimit(int max) throws RemoteException;
199 public int getProcessLimit() throws RemoteException;
200
201 public void setProcessForeground(IBinder token, int pid, boolean isForeground) throws RemoteException;
202
203 public int checkPermission(String permission, int pid, int uid)
204 throws RemoteException;
205
206 public int checkUriPermission(Uri uri, int pid, int uid, int mode)
207 throws RemoteException;
208 public void grantUriPermission(IApplicationThread caller, String targetPkg,
209 Uri uri, int mode) throws RemoteException;
210 public void revokeUriPermission(IApplicationThread caller, Uri uri,
211 int mode) throws RemoteException;
212
213 public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
214 throws RemoteException;
215
216 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
217
218 public void restartPackage(final String packageName) throws RemoteException;
219
220 // Note: probably don't want to allow applications access to these.
221 public void goingToSleep() throws RemoteException;
222 public void wakingUp() throws RemoteException;
223
224 public void unhandledBack() throws RemoteException;
225 public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException;
226 public void setDebugApp(
227 String packageName, boolean waitForDebugger, boolean persistent)
228 throws RemoteException;
229 public void setAlwaysFinish(boolean enabled) throws RemoteException;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700230 public void setActivityController(IActivityController watcher)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800231 throws RemoteException;
232
233 public void enterSafeMode() throws RemoteException;
234
235 public void noteWakeupAlarm(IIntentSender sender) throws RemoteException;
236
237 public boolean killPidsForMemory(int[] pids) throws RemoteException;
238
239 public void reportPss(IApplicationThread caller, int pss) throws RemoteException;
240
241 // Special low-level communication with activity manager.
242 public void startRunning(String pkg, String cls, String action,
243 String data) throws RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244 // Returns 1 if the user wants to debug.
245 public int handleApplicationError(IBinder app,
246 int flags, /* 1 == can debug */
247 String tag, String shortMsg, String longMsg,
248 byte[] crashData) throws RemoteException;
249
250 /*
251 * This will deliver the specified signal to all the persistent processes. Currently only
252 * SIGUSR1 is delivered. All others are ignored.
253 */
254 public void signalPersistentProcesses(int signal) throws RemoteException;
255 // Retrieve running application processes in the system
256 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
257 throws RemoteException;
258 // Get device configuration
259 public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
260
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800261 // Turn on/off profiling in a particular process.
262 public boolean profileControl(String process, boolean start,
Dianne Hackborn9c8dd552009-06-23 19:22:52 -0700263 String path, ParcelFileDescriptor fd) throws RemoteException;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800264
Dianne Hackborn55280a92009-05-07 15:53:46 -0700265 public boolean shutdown(int timeout) throws RemoteException;
266
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700267 public void stopAppSwitches() throws RemoteException;
268 public void resumeAppSwitches() throws RemoteException;
269
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700270 public void registerActivityWatcher(IActivityWatcher watcher)
271 throws RemoteException;
272 public void unregisterActivityWatcher(IActivityWatcher watcher)
273 throws RemoteException;
274
Dianne Hackborn2d91af02009-07-16 13:34:33 -0700275 public int startActivityInPackage(int uid,
276 Intent intent, String resolvedType, IBinder resultTo,
277 String resultWho, int requestCode, boolean onlyIfNeeded)
278 throws RemoteException;
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -0700279
280 public void killApplicationWithUid(String pkg, int uid) throws RemoteException;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700281
282 public void closeSystemDialogs(String reason) throws RemoteException;
283
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700284 public void getProcessMemoryInfo(int pid, Debug.MemoryInfo outInfo)
285 throws RemoteException;
286
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800287 /*
288 * Private non-Binder interfaces
289 */
290 /* package */ boolean testIsSystemReady();
291
292 /** Information you can retrieve about a particular application. */
293 public static class ContentProviderHolder implements Parcelable {
294 public final ProviderInfo info;
295 public final String permissionFailure;
296 public IContentProvider provider;
297 public boolean noReleaseNeeded;
298
299 public ContentProviderHolder(ProviderInfo _info) {
300 info = _info;
301 permissionFailure = null;
302 }
303
304 public ContentProviderHolder(ProviderInfo _info,
305 String _permissionFailure) {
306 info = _info;
307 permissionFailure = _permissionFailure;
308 }
309
310 public int describeContents() {
311 return 0;
312 }
313
314 public void writeToParcel(Parcel dest, int flags) {
315 info.writeToParcel(dest, 0);
316 dest.writeString(permissionFailure);
317 if (provider != null) {
318 dest.writeStrongBinder(provider.asBinder());
319 } else {
320 dest.writeStrongBinder(null);
321 }
322 dest.writeInt(noReleaseNeeded ? 1:0);
323 }
324
325 public static final Parcelable.Creator<ContentProviderHolder> CREATOR
326 = new Parcelable.Creator<ContentProviderHolder>() {
327 public ContentProviderHolder createFromParcel(Parcel source) {
328 return new ContentProviderHolder(source);
329 }
330
331 public ContentProviderHolder[] newArray(int size) {
332 return new ContentProviderHolder[size];
333 }
334 };
335
336 private ContentProviderHolder(Parcel source) {
337 info = ProviderInfo.CREATOR.createFromParcel(source);
338 permissionFailure = source.readString();
339 provider = ContentProviderNative.asInterface(
340 source.readStrongBinder());
341 noReleaseNeeded = source.readInt() != 0;
342 }
343 };
344
345 String descriptor = "android.app.IActivityManager";
346
347 // Please keep these transaction codes the same -- they are also
348 // sent by C++ code.
349 int START_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION;
350 int HANDLE_APPLICATION_ERROR_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
351 int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
352 int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
353 int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
354
355 // Remaining non-native transaction codes.
356 int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
357 int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
358 int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
359 int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
360 int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
361 int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
362 int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
363 int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
364 int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
365 int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
366 int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
367 int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
368 int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
369 int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
370 int MOVE_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+24;
371 int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
372 int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
373 int REPORT_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+27;
374 int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
375 int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
376 int SET_PERSISTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+30;
377 int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700378 int GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800379 int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
380 int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
381 int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
382 int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
383 int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
384 int FINISH_OTHER_INSTANCES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+38;
385 int GOING_TO_SLEEP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+39;
386 int WAKING_UP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+40;
387 int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
388 int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
389 int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
390 int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
391 int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
392 int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
393 int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
394 int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
395 int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
396 int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
397 int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
398 int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
399 int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
400 int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
401 int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700402 int SET_ACTIVITY_CONTROLLER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800403 int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
404 int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
405 int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
406 int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
407 int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
408 int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
409 int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
410 int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
411 int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
412 int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
413 int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
414 int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
415 int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
416 int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
417 int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
418 int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
419 int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
420 int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
421 int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
422 int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
423 int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
424 int RESTART_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
425 int KILL_PIDS_FOR_MEMORY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
426 int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
427 int REPORT_PSS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+81;
428 int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
429 int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
430 int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800431 int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
Dianne Hackborn55280a92009-05-07 15:53:46 -0700432 int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700433 int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
434 int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
Christopher Tate181fafa2009-05-14 11:12:14 -0700435 int START_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+89;
436 int BACKUP_AGENT_CREATED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+90;
437 int UNBIND_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+91;
Dianne Hackbornb06ea702009-07-13 13:07:51 -0700438 int REGISTER_ACTIVITY_WATCHER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+92;
439 int UNREGISTER_ACTIVITY_WATCHER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+93;
Dianne Hackborn2d91af02009-07-16 13:34:33 -0700440 int START_ACTIVITY_IN_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+94;
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -0700441 int KILL_APPLICATION_WITH_UID_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+95;
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -0700442 int CLOSE_SYSTEM_DIALOGS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+96;
Dianne Hackborn3025ef32009-08-31 21:31:47 -0700443 int GET_PROCESS_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+97;
Christopher Tate5e1ab332009-09-01 20:32:49 -0700444 int KILL_APPLICATION_PROCESS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+98;
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700445 int START_ACTIVITY_PENDING_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+99;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800446}