blob: c948aec964e57ac63a3d3c92a9b79bde78fb8df3 [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;
Christopher Tate181fafa2009-05-14 11:12:14 -070024import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.content.pm.ConfigurationInfo;
26import android.content.pm.IPackageDataObserver;
27import android.content.pm.ProviderInfo;
28import android.content.res.Configuration;
29import android.graphics.Bitmap;
30import android.net.Uri;
31import android.os.RemoteException;
32import android.os.IBinder;
33import android.os.IInterface;
34import android.os.Parcel;
35import android.os.Parcelable;
36import android.os.ParcelFileDescriptor;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.os.Bundle;
38
39import java.util.List;
40
41/**
42 * System private API for talking with the activity manager service. This
43 * provides calls from the application back to the activity manager.
44 *
45 * {@hide}
46 */
47public interface IActivityManager extends IInterface {
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070048 /**
49 * Returned by startActivity() if the start request was canceled because
50 * app switches are temporarily canceled to ensure the user's last request
51 * (such as pressing home) is performed.
52 */
53 public static final int START_SWITCHES_CANCELED = 4;
54 /**
55 * Returned by startActivity() if an activity wasn't really started, but
56 * the given Intent was given to the existing top activity.
57 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058 public static final int START_DELIVERED_TO_TOP = 3;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070059 /**
60 * Returned by startActivity() if an activity wasn't really started, but
61 * a task was simply brought to the foreground.
62 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080063 public static final int START_TASK_TO_FRONT = 2;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070064 /**
65 * Returned by startActivity() if the caller asked that the Intent not
66 * be executed if it is the recipient, and that is indeed the case.
67 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068 public static final int START_RETURN_INTENT_TO_CALLER = 1;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -070069 /**
70 * Activity was started successfully as normal.
71 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072 public static final int START_SUCCESS = 0;
73 public static final int START_INTENT_NOT_RESOLVED = -1;
74 public static final int START_CLASS_NOT_FOUND = -2;
75 public static final int START_FORWARD_AND_REQUEST_CONFLICT = -3;
76 public static final int START_PERMISSION_DENIED = -4;
77 public int startActivity(IApplicationThread caller,
78 Intent intent, String resolvedType, Uri[] grantedUriPermissions,
79 int grantedMode, IBinder resultTo, String resultWho, int requestCode,
80 boolean onlyIfNeeded, boolean debug) throws RemoteException;
81 public boolean startNextMatchingActivity(IBinder callingActivity,
82 Intent intent) throws RemoteException;
83 public boolean finishActivity(IBinder token, int code, Intent data)
84 throws RemoteException;
85 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
86 public Intent registerReceiver(IApplicationThread caller,
87 IIntentReceiver receiver, IntentFilter filter,
88 String requiredPermission) throws RemoteException;
89 public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException;
90 public static final int BROADCAST_SUCCESS = 0;
91 public static final int BROADCAST_STICKY_CANT_HAVE_PERMISSION = -1;
92 public int broadcastIntent(IApplicationThread caller, Intent intent,
93 String resolvedType, IIntentReceiver resultTo, int resultCode,
94 String resultData, Bundle map, String requiredPermission,
95 boolean serialized, boolean sticky) throws RemoteException;
96 public void unbroadcastIntent(IApplicationThread caller, Intent intent) throws RemoteException;
97 /* oneway */
98 public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map, boolean abortBroadcast) throws RemoteException;
99 public void setPersistent(IBinder token, boolean isPersistent) throws RemoteException;
100 public void attachApplication(IApplicationThread app) throws RemoteException;
101 /* oneway */
102 public void activityIdle(IBinder token) throws RemoteException;
103 public void activityPaused(IBinder token, Bundle state) throws RemoteException;
104 /* oneway */
105 public void activityStopped(IBinder token,
106 Bitmap thumbnail, CharSequence description) throws RemoteException;
107 /* oneway */
108 public void activityDestroyed(IBinder token) throws RemoteException;
109 public String getCallingPackage(IBinder token) throws RemoteException;
110 public ComponentName getCallingActivity(IBinder token) throws RemoteException;
111 public List getTasks(int maxNum, int flags,
112 IThumbnailReceiver receiver) throws RemoteException;
113 public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
114 int flags) throws RemoteException;
115 public List getServices(int maxNum, int flags) throws RemoteException;
116 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
117 throws RemoteException;
118 public void moveTaskToFront(int task) throws RemoteException;
119 public void moveTaskToBack(int task) throws RemoteException;
120 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException;
121 public void moveTaskBackwards(int task) throws RemoteException;
122 public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException;
123 public void finishOtherInstances(IBinder token, ComponentName className) throws RemoteException;
124 /* oneway */
125 public void reportThumbnail(IBinder token,
126 Bitmap thumbnail, CharSequence description) throws RemoteException;
127 public ContentProviderHolder getContentProvider(IApplicationThread caller,
128 String name) throws RemoteException;
129 public void removeContentProvider(IApplicationThread caller,
130 String name) throws RemoteException;
131 public void publishContentProviders(IApplicationThread caller,
132 List<ContentProviderHolder> providers) throws RemoteException;
133 public ComponentName startService(IApplicationThread caller, Intent service,
134 String resolvedType) throws RemoteException;
135 public int stopService(IApplicationThread caller, Intent service,
136 String resolvedType) throws RemoteException;
137 public boolean stopServiceToken(ComponentName className, IBinder token,
138 int startId) throws RemoteException;
139 public void setServiceForeground(ComponentName className, IBinder token,
140 boolean isForeground) throws RemoteException;
141 public int bindService(IApplicationThread caller, IBinder token,
142 Intent service, String resolvedType,
143 IServiceConnection connection, int flags) throws RemoteException;
144 public boolean unbindService(IServiceConnection connection) throws RemoteException;
145 public void publishService(IBinder token,
146 Intent intent, IBinder service) throws RemoteException;
147 public void unbindFinished(IBinder token, Intent service,
148 boolean doRebind) throws RemoteException;
149 /* oneway */
150 public void serviceDoneExecuting(IBinder token) throws RemoteException;
151 public IBinder peekService(Intent service, String resolvedType) throws RemoteException;
152
Christopher Tate181fafa2009-05-14 11:12:14 -0700153 public boolean bindBackupAgent(ApplicationInfo appInfo, int backupRestoreMode)
154 throws RemoteException;
155 public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException;
156 public void unbindBackupAgent(ApplicationInfo appInfo) throws RemoteException;
157
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158 public boolean startInstrumentation(ComponentName className, String profileFile,
159 int flags, Bundle arguments, IInstrumentationWatcher watcher)
160 throws RemoteException;
161 public void finishInstrumentation(IApplicationThread target,
162 int resultCode, Bundle results) throws RemoteException;
163
164 public Configuration getConfiguration() throws RemoteException;
165 public void updateConfiguration(Configuration values) throws RemoteException;
166 public void setRequestedOrientation(IBinder token,
167 int requestedOrientation) throws RemoteException;
168 public int getRequestedOrientation(IBinder token) throws RemoteException;
169
170 public ComponentName getActivityClassForToken(IBinder token) throws RemoteException;
171 public String getPackageForToken(IBinder token) throws RemoteException;
172
173 public static final int INTENT_SENDER_BROADCAST = 1;
174 public static final int INTENT_SENDER_ACTIVITY = 2;
175 public static final int INTENT_SENDER_ACTIVITY_RESULT = 3;
176 public static final int INTENT_SENDER_SERVICE = 4;
177 public IIntentSender getIntentSender(int type,
178 String packageName, IBinder token, String resultWho,
179 int requestCode, Intent intent, String resolvedType, int flags) throws RemoteException;
180 public void cancelIntentSender(IIntentSender sender) throws RemoteException;
181 public boolean clearApplicationUserData(final String packageName,
182 final IPackageDataObserver observer) throws RemoteException;
183 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException;
184
185 public void setProcessLimit(int max) throws RemoteException;
186 public int getProcessLimit() throws RemoteException;
187
188 public void setProcessForeground(IBinder token, int pid, boolean isForeground) throws RemoteException;
189
190 public int checkPermission(String permission, int pid, int uid)
191 throws RemoteException;
192
193 public int checkUriPermission(Uri uri, int pid, int uid, int mode)
194 throws RemoteException;
195 public void grantUriPermission(IApplicationThread caller, String targetPkg,
196 Uri uri, int mode) throws RemoteException;
197 public void revokeUriPermission(IApplicationThread caller, Uri uri,
198 int mode) throws RemoteException;
199
200 public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
201 throws RemoteException;
202
203 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException;
204
205 public void restartPackage(final String packageName) throws RemoteException;
206
207 // Note: probably don't want to allow applications access to these.
208 public void goingToSleep() throws RemoteException;
209 public void wakingUp() throws RemoteException;
210
211 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;
217 public void setActivityWatcher(IActivityWatcher watcher)
218 throws RemoteException;
219
220 public void enterSafeMode() throws RemoteException;
221
222 public void noteWakeupAlarm(IIntentSender sender) throws RemoteException;
223
224 public boolean killPidsForMemory(int[] pids) throws RemoteException;
225
226 public void reportPss(IApplicationThread caller, int pss) throws RemoteException;
227
228 // Special low-level communication with activity manager.
229 public void startRunning(String pkg, String cls, String action,
230 String data) throws RemoteException;
231 public void systemReady() throws RemoteException;
232 // Returns 1 if the user wants to debug.
233 public int handleApplicationError(IBinder app,
234 int flags, /* 1 == can debug */
235 String tag, String shortMsg, String longMsg,
236 byte[] crashData) throws RemoteException;
237
238 /*
239 * This will deliver the specified signal to all the persistent processes. Currently only
240 * SIGUSR1 is delivered. All others are ignored.
241 */
242 public void signalPersistentProcesses(int signal) throws RemoteException;
243 // Retrieve running application processes in the system
244 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
245 throws RemoteException;
246 // Get device configuration
247 public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException;
248
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800249 // Turn on/off profiling in a particular process.
250 public boolean profileControl(String process, boolean start,
251 String path) throws RemoteException;
252
Dianne Hackborn55280a92009-05-07 15:53:46 -0700253 public boolean shutdown(int timeout) throws RemoteException;
254
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700255 public void stopAppSwitches() throws RemoteException;
256 public void resumeAppSwitches() throws RemoteException;
257
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800258 /*
259 * Private non-Binder interfaces
260 */
261 /* package */ boolean testIsSystemReady();
262
263 /** Information you can retrieve about a particular application. */
264 public static class ContentProviderHolder implements Parcelable {
265 public final ProviderInfo info;
266 public final String permissionFailure;
267 public IContentProvider provider;
268 public boolean noReleaseNeeded;
269
270 public ContentProviderHolder(ProviderInfo _info) {
271 info = _info;
272 permissionFailure = null;
273 }
274
275 public ContentProviderHolder(ProviderInfo _info,
276 String _permissionFailure) {
277 info = _info;
278 permissionFailure = _permissionFailure;
279 }
280
281 public int describeContents() {
282 return 0;
283 }
284
285 public void writeToParcel(Parcel dest, int flags) {
286 info.writeToParcel(dest, 0);
287 dest.writeString(permissionFailure);
288 if (provider != null) {
289 dest.writeStrongBinder(provider.asBinder());
290 } else {
291 dest.writeStrongBinder(null);
292 }
293 dest.writeInt(noReleaseNeeded ? 1:0);
294 }
295
296 public static final Parcelable.Creator<ContentProviderHolder> CREATOR
297 = new Parcelable.Creator<ContentProviderHolder>() {
298 public ContentProviderHolder createFromParcel(Parcel source) {
299 return new ContentProviderHolder(source);
300 }
301
302 public ContentProviderHolder[] newArray(int size) {
303 return new ContentProviderHolder[size];
304 }
305 };
306
307 private ContentProviderHolder(Parcel source) {
308 info = ProviderInfo.CREATOR.createFromParcel(source);
309 permissionFailure = source.readString();
310 provider = ContentProviderNative.asInterface(
311 source.readStrongBinder());
312 noReleaseNeeded = source.readInt() != 0;
313 }
314 };
315
316 String descriptor = "android.app.IActivityManager";
317
318 // Please keep these transaction codes the same -- they are also
319 // sent by C++ code.
320 int START_RUNNING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION;
321 int HANDLE_APPLICATION_ERROR_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+1;
322 int START_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+2;
323 int UNHANDLED_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+3;
324 int OPEN_CONTENT_URI_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+4;
325
326 // Remaining non-native transaction codes.
327 int FINISH_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+10;
328 int REGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+11;
329 int UNREGISTER_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+12;
330 int BROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+13;
331 int UNBROADCAST_INTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+14;
332 int FINISH_RECEIVER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+15;
333 int ATTACH_APPLICATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+16;
334 int ACTIVITY_IDLE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+17;
335 int ACTIVITY_PAUSED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+18;
336 int ACTIVITY_STOPPED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+19;
337 int GET_CALLING_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+20;
338 int GET_CALLING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+21;
339 int GET_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+22;
340 int MOVE_TASK_TO_FRONT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+23;
341 int MOVE_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+24;
342 int MOVE_TASK_BACKWARDS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+25;
343 int GET_TASK_FOR_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+26;
344 int REPORT_THUMBNAIL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+27;
345 int GET_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+28;
346 int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+29;
347 int SET_PERSISTENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+30;
348 int FINISH_SUB_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+31;
349 int SYSTEM_READY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+32;
350 int START_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+33;
351 int STOP_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+34;
352 int BIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+35;
353 int UNBIND_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+36;
354 int PUBLISH_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+37;
355 int FINISH_OTHER_INSTANCES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+38;
356 int GOING_TO_SLEEP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+39;
357 int WAKING_UP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+40;
358 int SET_DEBUG_APP_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+41;
359 int SET_ALWAYS_FINISH_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+42;
360 int START_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+43;
361 int FINISH_INSTRUMENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+44;
362 int GET_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+45;
363 int UPDATE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+46;
364 int STOP_SERVICE_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+47;
365 int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+48;
366 int GET_PACKAGE_FOR_TOKEN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+49;
367 int SET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+50;
368 int GET_PROCESS_LIMIT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+51;
369 int CHECK_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+52;
370 int CHECK_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+53;
371 int GRANT_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+54;
372 int REVOKE_URI_PERMISSION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+55;
373 int SET_ACTIVITY_WATCHER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+56;
374 int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+57;
375 int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+58;
376 int GET_RECENT_TASKS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+59;
377 int SERVICE_DONE_EXECUTING_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+60;
378 int ACTIVITY_DESTROYED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+61;
379 int GET_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+62;
380 int CANCEL_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+63;
381 int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+64;
382 int ENTER_SAFE_MODE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+65;
383 int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+66;
384 int NOTE_WAKEUP_ALARM_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+67;
385 int REMOVE_CONTENT_PROVIDER_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+68;
386 int SET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+69;
387 int GET_REQUESTED_ORIENTATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+70;
388 int UNBIND_FINISHED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+71;
389 int SET_PROCESS_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+72;
390 int SET_SERVICE_FOREGROUND_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+73;
391 int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+74;
392 int GET_MEMORY_INFO_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+75;
393 int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+76;
394 int CLEAR_APP_DATA_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+77;
395 int RESTART_PACKAGE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+78;
396 int KILL_PIDS_FOR_MEMORY_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+79;
397 int GET_SERVICES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+80;
398 int REPORT_PSS_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+81;
399 int GET_RUNNING_APP_PROCESSES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+82;
400 int GET_DEVICE_CONFIGURATION_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+83;
401 int PEEK_SERVICE_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+84;
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -0800402 int PROFILE_CONTROL_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+85;
Dianne Hackborn55280a92009-05-07 15:53:46 -0700403 int SHUTDOWN_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+86;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700404 int STOP_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+87;
405 int RESUME_APP_SWITCHES_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+88;
Christopher Tate181fafa2009-05-14 11:12:14 -0700406 int START_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+89;
407 int BACKUP_AGENT_CREATED_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+90;
408 int UNBIND_BACKUP_AGENT_TRANSACTION = IBinder.FIRST_CALL_TRANSACTION+91;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800409}