blob: 83acb4dc816e6b193904b31b737d311c2947e3b8 [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
19import android.content.ComponentName;
Adam Powelldd8fab22012-03-22 17:47:27 -070020import android.content.IIntentReceiver;
21import android.content.IIntentSender;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080022import android.content.Intent;
23import android.content.IntentFilter;
Dianne Hackbornfa82f222009-09-17 15:14:12 -070024import android.content.IntentSender;
Christopher Tate181fafa2009-05-14 11:12:14 -070025import android.content.pm.ApplicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import android.content.pm.ConfigurationInfo;
27import android.content.pm.IPackageDataObserver;
Amith Yamasani52f1d752012-03-28 18:19:29 -070028import android.content.pm.UserInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import android.content.res.Configuration;
30import android.graphics.Bitmap;
31import android.net.Uri;
32import android.os.Binder;
33import android.os.Bundle;
Dianne Hackborn3025ef32009-08-31 21:31:47 -070034import android.os.Debug;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035import android.os.IBinder;
36import android.os.Parcel;
Adam Powelldd8fab22012-03-22 17:47:27 -070037import android.os.ParcelFileDescriptor;
38import android.os.Parcelable;
39import android.os.RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import android.os.ServiceManager;
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -070041import android.os.StrictMode;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070042import android.os.UserHandle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080044import android.util.Log;
Brad Fitzpatrick663f4f32010-11-23 19:15:24 -080045import android.util.Singleton;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047import java.util.ArrayList;
48import java.util.List;
49
50/** {@hide} */
51public abstract class ActivityManagerNative extends Binder implements IActivityManager
52{
53 /**
54 * Cast a Binder object into an activity manager interface, generating
55 * a proxy if needed.
56 */
Brad Fitzpatrick663f4f32010-11-23 19:15:24 -080057 static public IActivityManager asInterface(IBinder obj) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058 if (obj == null) {
59 return null;
60 }
61 IActivityManager in =
62 (IActivityManager)obj.queryLocalInterface(descriptor);
63 if (in != null) {
64 return in;
65 }
Brad Fitzpatrick663f4f32010-11-23 19:15:24 -080066
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067 return new ActivityManagerProxy(obj);
68 }
Brad Fitzpatrick663f4f32010-11-23 19:15:24 -080069
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080070 /**
71 * Retrieve the system's default/global activity manager.
72 */
Brad Fitzpatrick663f4f32010-11-23 19:15:24 -080073 static public IActivityManager getDefault() {
74 return gDefault.get();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080075 }
76
77 /**
78 * Convenience for checking whether the system is ready. For internal use only.
79 */
80 static public boolean isSystemReady() {
81 if (!sSystemReady) {
82 sSystemReady = getDefault().testIsSystemReady();
83 }
84 return sSystemReady;
85 }
86 static boolean sSystemReady = false;
Brad Fitzpatrick663f4f32010-11-23 19:15:24 -080087
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 /**
89 * Convenience for sending a sticky broadcast. For internal use only.
90 * If you don't care about permission, use null.
91 */
Dianne Hackborn5ac72a22012-08-29 18:32:08 -070092 static public void broadcastStickyIntent(Intent intent, String permission, int userId) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080093 try {
94 getDefault().broadcastIntent(
95 null, intent, null, null, Activity.RESULT_OK, null, null,
Dianne Hackborn5ac72a22012-08-29 18:32:08 -070096 null /*permission*/, false, true, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080097 } catch (RemoteException ex) {
98 }
99 }
100
101 static public void noteWakeupAlarm(PendingIntent ps) {
102 try {
103 getDefault().noteWakeupAlarm(ps.getTarget());
104 } catch (RemoteException ex) {
105 }
106 }
107
Brad Fitzpatrick663f4f32010-11-23 19:15:24 -0800108 public ActivityManagerNative() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 attachInterface(this, descriptor);
110 }
111
112 public boolean onTransact(int code, Parcel data, Parcel reply, int flags)
113 throws RemoteException {
114 switch (code) {
115 case START_ACTIVITY_TRANSACTION:
116 {
117 data.enforceInterface(IActivityManager.descriptor);
118 IBinder b = data.readStrongBinder();
119 IApplicationThread app = ApplicationThreadNative.asInterface(b);
120 Intent intent = Intent.CREATOR.createFromParcel(data);
121 String resolvedType = data.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800122 IBinder resultTo = data.readStrongBinder();
Siva Velusamy92a8b222012-03-09 16:24:04 -0800123 String resultWho = data.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124 int requestCode = data.readInt();
Dianne Hackborna4972e92012-03-14 10:38:05 -0700125 int startFlags = data.readInt();
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700126 String profileFile = data.readString();
127 ParcelFileDescriptor profileFd = data.readInt() != 0
128 ? data.readFileDescriptor() : null;
Dianne Hackborna4972e92012-03-14 10:38:05 -0700129 Bundle options = data.readInt() != 0
130 ? Bundle.CREATOR.createFromParcel(data) : null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131 int result = startActivity(app, intent, resolvedType,
Dianne Hackborna4972e92012-03-14 10:38:05 -0700132 resultTo, resultWho, requestCode, startFlags,
133 profileFile, profileFd, options);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134 reply.writeNoException();
135 reply.writeInt(result);
136 return true;
137 }
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700138
Amith Yamasani82644082012-08-03 13:09:11 -0700139 case START_ACTIVITY_AS_USER_TRANSACTION:
140 {
141 data.enforceInterface(IActivityManager.descriptor);
142 IBinder b = data.readStrongBinder();
143 IApplicationThread app = ApplicationThreadNative.asInterface(b);
144 Intent intent = Intent.CREATOR.createFromParcel(data);
145 String resolvedType = data.readString();
146 IBinder resultTo = data.readStrongBinder();
147 String resultWho = data.readString();
148 int requestCode = data.readInt();
149 int startFlags = data.readInt();
150 String profileFile = data.readString();
151 ParcelFileDescriptor profileFd = data.readInt() != 0
152 ? data.readFileDescriptor() : null;
153 Bundle options = data.readInt() != 0
154 ? Bundle.CREATOR.createFromParcel(data) : null;
155 int userId = data.readInt();
156 int result = startActivityAsUser(app, intent, resolvedType,
157 resultTo, resultWho, requestCode, startFlags,
158 profileFile, profileFd, options, userId);
159 reply.writeNoException();
160 reply.writeInt(result);
161 return true;
162 }
163
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800164 case START_ACTIVITY_AND_WAIT_TRANSACTION:
165 {
166 data.enforceInterface(IActivityManager.descriptor);
167 IBinder b = data.readStrongBinder();
168 IApplicationThread app = ApplicationThreadNative.asInterface(b);
169 Intent intent = Intent.CREATOR.createFromParcel(data);
170 String resolvedType = data.readString();
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800171 IBinder resultTo = data.readStrongBinder();
Siva Velusamy92a8b222012-03-09 16:24:04 -0800172 String resultWho = data.readString();
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800173 int requestCode = data.readInt();
Dianne Hackborna4972e92012-03-14 10:38:05 -0700174 int startFlags = data.readInt();
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700175 String profileFile = data.readString();
176 ParcelFileDescriptor profileFd = data.readInt() != 0
177 ? data.readFileDescriptor() : null;
Dianne Hackborna4972e92012-03-14 10:38:05 -0700178 Bundle options = data.readInt() != 0
179 ? Bundle.CREATOR.createFromParcel(data) : null;
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700180 int userId = data.readInt();
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800181 WaitResult result = startActivityAndWait(app, intent, resolvedType,
Dianne Hackborna4972e92012-03-14 10:38:05 -0700182 resultTo, resultWho, requestCode, startFlags,
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700183 profileFile, profileFd, options, userId);
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -0800184 reply.writeNoException();
185 result.writeToParcel(reply, 0);
186 return true;
187 }
188
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700189 case START_ACTIVITY_WITH_CONFIG_TRANSACTION:
190 {
191 data.enforceInterface(IActivityManager.descriptor);
192 IBinder b = data.readStrongBinder();
193 IApplicationThread app = ApplicationThreadNative.asInterface(b);
194 Intent intent = Intent.CREATOR.createFromParcel(data);
195 String resolvedType = data.readString();
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700196 IBinder resultTo = data.readStrongBinder();
197 String resultWho = data.readString();
198 int requestCode = data.readInt();
Dianne Hackborna4972e92012-03-14 10:38:05 -0700199 int startFlags = data.readInt();
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700200 Configuration config = Configuration.CREATOR.createFromParcel(data);
Dianne Hackborna4972e92012-03-14 10:38:05 -0700201 Bundle options = data.readInt() != 0
202 ? Bundle.CREATOR.createFromParcel(data) : null;
Dianne Hackborn41203752012-08-31 14:05:51 -0700203 int userId = data.readInt();
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700204 int result = startActivityWithConfig(app, intent, resolvedType,
Dianne Hackborn41203752012-08-31 14:05:51 -0700205 resultTo, resultWho, requestCode, startFlags, config, options, userId);
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -0700206 reply.writeNoException();
207 reply.writeInt(result);
208 return true;
209 }
210
Dianne Hackbornfa82f222009-09-17 15:14:12 -0700211 case START_ACTIVITY_INTENT_SENDER_TRANSACTION:
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700212 {
213 data.enforceInterface(IActivityManager.descriptor);
214 IBinder b = data.readStrongBinder();
215 IApplicationThread app = ApplicationThreadNative.asInterface(b);
Dianne Hackbornfa82f222009-09-17 15:14:12 -0700216 IntentSender intent = IntentSender.CREATOR.createFromParcel(data);
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700217 Intent fillInIntent = null;
218 if (data.readInt() != 0) {
219 fillInIntent = Intent.CREATOR.createFromParcel(data);
220 }
221 String resolvedType = data.readString();
222 IBinder resultTo = data.readStrongBinder();
223 String resultWho = data.readString();
224 int requestCode = data.readInt();
225 int flagsMask = data.readInt();
226 int flagsValues = data.readInt();
Dianne Hackborna4972e92012-03-14 10:38:05 -0700227 Bundle options = data.readInt() != 0
228 ? Bundle.CREATOR.createFromParcel(data) : null;
Dianne Hackbornfa82f222009-09-17 15:14:12 -0700229 int result = startActivityIntentSender(app, intent,
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700230 fillInIntent, resolvedType, resultTo, resultWho,
Dianne Hackborna4972e92012-03-14 10:38:05 -0700231 requestCode, flagsMask, flagsValues, options);
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -0700232 reply.writeNoException();
233 reply.writeInt(result);
234 return true;
235 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800236
237 case START_NEXT_MATCHING_ACTIVITY_TRANSACTION:
238 {
239 data.enforceInterface(IActivityManager.descriptor);
240 IBinder callingActivity = data.readStrongBinder();
241 Intent intent = Intent.CREATOR.createFromParcel(data);
Dianne Hackborna4972e92012-03-14 10:38:05 -0700242 Bundle options = data.readInt() != 0
243 ? Bundle.CREATOR.createFromParcel(data) : null;
244 boolean result = startNextMatchingActivity(callingActivity, intent, options);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800245 reply.writeNoException();
246 reply.writeInt(result ? 1 : 0);
247 return true;
248 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -0700249
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800250 case FINISH_ACTIVITY_TRANSACTION: {
251 data.enforceInterface(IActivityManager.descriptor);
252 IBinder token = data.readStrongBinder();
253 Intent resultData = null;
254 int resultCode = data.readInt();
255 if (data.readInt() != 0) {
256 resultData = Intent.CREATOR.createFromParcel(data);
257 }
258 boolean res = finishActivity(token, resultCode, resultData);
259 reply.writeNoException();
260 reply.writeInt(res ? 1 : 0);
261 return true;
262 }
263
264 case FINISH_SUB_ACTIVITY_TRANSACTION: {
265 data.enforceInterface(IActivityManager.descriptor);
266 IBinder token = data.readStrongBinder();
267 String resultWho = data.readString();
268 int requestCode = data.readInt();
269 finishSubActivity(token, resultWho, requestCode);
270 reply.writeNoException();
271 return true;
272 }
273
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -0700274 case FINISH_ACTIVITY_AFFINITY_TRANSACTION: {
275 data.enforceInterface(IActivityManager.descriptor);
276 IBinder token = data.readStrongBinder();
277 boolean res = finishActivityAffinity(token);
278 reply.writeNoException();
279 reply.writeInt(res ? 1 : 0);
280 return true;
281 }
282
Dianne Hackborn061d58a2010-03-12 15:07:06 -0800283 case WILL_ACTIVITY_BE_VISIBLE_TRANSACTION: {
284 data.enforceInterface(IActivityManager.descriptor);
285 IBinder token = data.readStrongBinder();
286 boolean res = willActivityBeVisible(token);
287 reply.writeNoException();
288 reply.writeInt(res ? 1 : 0);
289 return true;
290 }
291
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800292 case REGISTER_RECEIVER_TRANSACTION:
293 {
294 data.enforceInterface(IActivityManager.descriptor);
295 IBinder b = data.readStrongBinder();
296 IApplicationThread app =
297 b != null ? ApplicationThreadNative.asInterface(b) : null;
Dianne Hackborn6c418d52011-06-29 14:05:33 -0700298 String packageName = data.readString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800299 b = data.readStrongBinder();
300 IIntentReceiver rec
301 = b != null ? IIntentReceiver.Stub.asInterface(b) : null;
302 IntentFilter filter = IntentFilter.CREATOR.createFromParcel(data);
303 String perm = data.readString();
Dianne Hackborn20e80982012-08-31 19:00:44 -0700304 int userId = data.readInt();
305 Intent intent = registerReceiver(app, packageName, rec, filter, perm, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800306 reply.writeNoException();
307 if (intent != null) {
308 reply.writeInt(1);
309 intent.writeToParcel(reply, 0);
310 } else {
311 reply.writeInt(0);
312 }
313 return true;
314 }
315
316 case UNREGISTER_RECEIVER_TRANSACTION:
317 {
318 data.enforceInterface(IActivityManager.descriptor);
319 IBinder b = data.readStrongBinder();
320 if (b == null) {
321 return true;
322 }
323 IIntentReceiver rec = IIntentReceiver.Stub.asInterface(b);
324 unregisterReceiver(rec);
325 reply.writeNoException();
326 return true;
327 }
328
329 case BROADCAST_INTENT_TRANSACTION:
330 {
331 data.enforceInterface(IActivityManager.descriptor);
332 IBinder b = data.readStrongBinder();
333 IApplicationThread app =
334 b != null ? ApplicationThreadNative.asInterface(b) : null;
335 Intent intent = Intent.CREATOR.createFromParcel(data);
336 String resolvedType = data.readString();
337 b = data.readStrongBinder();
338 IIntentReceiver resultTo =
339 b != null ? IIntentReceiver.Stub.asInterface(b) : null;
340 int resultCode = data.readInt();
341 String resultData = data.readString();
342 Bundle resultExtras = data.readBundle();
343 String perm = data.readString();
344 boolean serialized = data.readInt() != 0;
345 boolean sticky = data.readInt() != 0;
Amith Yamasani742a6712011-05-04 14:49:28 -0700346 int userId = data.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800347 int res = broadcastIntent(app, intent, resolvedType, resultTo,
348 resultCode, resultData, resultExtras, perm,
Amith Yamasani742a6712011-05-04 14:49:28 -0700349 serialized, sticky, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800350 reply.writeNoException();
351 reply.writeInt(res);
352 return true;
353 }
354
355 case UNBROADCAST_INTENT_TRANSACTION:
356 {
357 data.enforceInterface(IActivityManager.descriptor);
358 IBinder b = data.readStrongBinder();
359 IApplicationThread app = b != null ? ApplicationThreadNative.asInterface(b) : null;
360 Intent intent = Intent.CREATOR.createFromParcel(data);
Amith Yamasani742a6712011-05-04 14:49:28 -0700361 int userId = data.readInt();
362 unbroadcastIntent(app, intent, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363 reply.writeNoException();
364 return true;
365 }
366
367 case FINISH_RECEIVER_TRANSACTION: {
368 data.enforceInterface(IActivityManager.descriptor);
369 IBinder who = data.readStrongBinder();
370 int resultCode = data.readInt();
371 String resultData = data.readString();
372 Bundle resultExtras = data.readBundle();
373 boolean resultAbort = data.readInt() != 0;
374 if (who != null) {
375 finishReceiver(who, resultCode, resultData, resultExtras, resultAbort);
376 }
377 reply.writeNoException();
378 return true;
379 }
380
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800381 case ATTACH_APPLICATION_TRANSACTION: {
382 data.enforceInterface(IActivityManager.descriptor);
383 IApplicationThread app = ApplicationThreadNative.asInterface(
384 data.readStrongBinder());
385 if (app != null) {
386 attachApplication(app);
387 }
388 reply.writeNoException();
389 return true;
390 }
391
392 case ACTIVITY_IDLE_TRANSACTION: {
393 data.enforceInterface(IActivityManager.descriptor);
394 IBinder token = data.readStrongBinder();
Dianne Hackborne88846e2009-09-30 21:34:25 -0700395 Configuration config = null;
396 if (data.readInt() != 0) {
397 config = Configuration.CREATOR.createFromParcel(data);
398 }
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700399 boolean stopProfiling = data.readInt() != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800400 if (token != null) {
Dianne Hackborn62f20ec2011-08-15 17:40:28 -0700401 activityIdle(token, config, stopProfiling);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800402 }
403 reply.writeNoException();
404 return true;
405 }
406
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700407 case ACTIVITY_RESUMED_TRANSACTION: {
408 data.enforceInterface(IActivityManager.descriptor);
409 IBinder token = data.readStrongBinder();
410 activityResumed(token);
411 reply.writeNoException();
412 return true;
413 }
414
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415 case ACTIVITY_PAUSED_TRANSACTION: {
416 data.enforceInterface(IActivityManager.descriptor);
417 IBinder token = data.readStrongBinder();
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800418 activityPaused(token);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800419 reply.writeNoException();
420 return true;
421 }
422
423 case ACTIVITY_STOPPED_TRANSACTION: {
424 data.enforceInterface(IActivityManager.descriptor);
425 IBinder token = data.readStrongBinder();
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800426 Bundle map = data.readBundle();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800427 Bitmap thumbnail = data.readInt() != 0
428 ? Bitmap.CREATOR.createFromParcel(data) : null;
429 CharSequence description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(data);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800430 activityStopped(token, map, thumbnail, description);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800431 reply.writeNoException();
432 return true;
433 }
434
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800435 case ACTIVITY_SLEPT_TRANSACTION: {
436 data.enforceInterface(IActivityManager.descriptor);
437 IBinder token = data.readStrongBinder();
438 activitySlept(token);
439 reply.writeNoException();
440 return true;
441 }
442
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800443 case ACTIVITY_DESTROYED_TRANSACTION: {
444 data.enforceInterface(IActivityManager.descriptor);
445 IBinder token = data.readStrongBinder();
446 activityDestroyed(token);
447 reply.writeNoException();
448 return true;
449 }
450
451 case GET_CALLING_PACKAGE_TRANSACTION: {
452 data.enforceInterface(IActivityManager.descriptor);
453 IBinder token = data.readStrongBinder();
454 String res = token != null ? getCallingPackage(token) : null;
455 reply.writeNoException();
456 reply.writeString(res);
457 return true;
458 }
459
460 case GET_CALLING_ACTIVITY_TRANSACTION: {
461 data.enforceInterface(IActivityManager.descriptor);
462 IBinder token = data.readStrongBinder();
463 ComponentName cn = getCallingActivity(token);
464 reply.writeNoException();
465 ComponentName.writeToParcel(cn, reply);
466 return true;
467 }
468
469 case GET_TASKS_TRANSACTION: {
470 data.enforceInterface(IActivityManager.descriptor);
471 int maxNum = data.readInt();
472 int fl = data.readInt();
473 IBinder receiverBinder = data.readStrongBinder();
474 IThumbnailReceiver receiver = receiverBinder != null
475 ? IThumbnailReceiver.Stub.asInterface(receiverBinder)
476 : null;
477 List list = getTasks(maxNum, fl, receiver);
478 reply.writeNoException();
479 int N = list != null ? list.size() : -1;
480 reply.writeInt(N);
481 int i;
482 for (i=0; i<N; i++) {
483 ActivityManager.RunningTaskInfo info =
484 (ActivityManager.RunningTaskInfo)list.get(i);
485 info.writeToParcel(reply, 0);
486 }
487 return true;
488 }
489
490 case GET_RECENT_TASKS_TRANSACTION: {
491 data.enforceInterface(IActivityManager.descriptor);
492 int maxNum = data.readInt();
493 int fl = data.readInt();
Amith Yamasani82644082012-08-03 13:09:11 -0700494 int userId = data.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800495 List<ActivityManager.RecentTaskInfo> list = getRecentTasks(maxNum,
Amith Yamasani82644082012-08-03 13:09:11 -0700496 fl, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800497 reply.writeNoException();
498 reply.writeTypedList(list);
499 return true;
500 }
Dianne Hackborn15491c62012-09-19 10:59:14 -0700501
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700502 case GET_TASK_THUMBNAILS_TRANSACTION: {
Dianne Hackbornd94df452011-02-16 18:53:31 -0800503 data.enforceInterface(IActivityManager.descriptor);
504 int id = data.readInt();
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700505 ActivityManager.TaskThumbnails bm = getTaskThumbnails(id);
Dianne Hackbornd94df452011-02-16 18:53:31 -0800506 reply.writeNoException();
507 if (bm != null) {
508 reply.writeInt(1);
509 bm.writeToParcel(reply, 0);
510 } else {
511 reply.writeInt(0);
512 }
513 return true;
514 }
Dianne Hackborn15491c62012-09-19 10:59:14 -0700515
516 case GET_TASK_TOP_THUMBNAIL_TRANSACTION: {
517 data.enforceInterface(IActivityManager.descriptor);
518 int id = data.readInt();
519 Bitmap bm = getTaskTopThumbnail(id);
520 reply.writeNoException();
521 if (bm != null) {
522 reply.writeInt(1);
523 bm.writeToParcel(reply, 0);
524 } else {
525 reply.writeInt(0);
526 }
527 return true;
528 }
529
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800530 case GET_SERVICES_TRANSACTION: {
531 data.enforceInterface(IActivityManager.descriptor);
532 int maxNum = data.readInt();
533 int fl = data.readInt();
534 List list = getServices(maxNum, fl);
535 reply.writeNoException();
536 int N = list != null ? list.size() : -1;
537 reply.writeInt(N);
538 int i;
539 for (i=0; i<N; i++) {
540 ActivityManager.RunningServiceInfo info =
541 (ActivityManager.RunningServiceInfo)list.get(i);
542 info.writeToParcel(reply, 0);
543 }
544 return true;
545 }
546
547 case GET_PROCESSES_IN_ERROR_STATE_TRANSACTION: {
548 data.enforceInterface(IActivityManager.descriptor);
549 List<ActivityManager.ProcessErrorStateInfo> list = getProcessesInErrorState();
550 reply.writeNoException();
551 reply.writeTypedList(list);
552 return true;
553 }
554
555 case GET_RUNNING_APP_PROCESSES_TRANSACTION: {
556 data.enforceInterface(IActivityManager.descriptor);
557 List<ActivityManager.RunningAppProcessInfo> list = getRunningAppProcesses();
558 reply.writeNoException();
559 reply.writeTypedList(list);
560 return true;
561 }
562
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -0700563 case GET_RUNNING_EXTERNAL_APPLICATIONS_TRANSACTION: {
564 data.enforceInterface(IActivityManager.descriptor);
565 List<ApplicationInfo> list = getRunningExternalApplications();
566 reply.writeNoException();
567 reply.writeTypedList(list);
568 return true;
569 }
570
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800571 case MOVE_TASK_TO_FRONT_TRANSACTION: {
572 data.enforceInterface(IActivityManager.descriptor);
573 int task = data.readInt();
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800574 int fl = data.readInt();
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700575 Bundle options = data.readInt() != 0
576 ? Bundle.CREATOR.createFromParcel(data) : null;
577 moveTaskToFront(task, fl, options);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800578 reply.writeNoException();
579 return true;
580 }
581
582 case MOVE_TASK_TO_BACK_TRANSACTION: {
583 data.enforceInterface(IActivityManager.descriptor);
584 int task = data.readInt();
585 moveTaskToBack(task);
586 reply.writeNoException();
587 return true;
588 }
589
590 case MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION: {
591 data.enforceInterface(IActivityManager.descriptor);
592 IBinder token = data.readStrongBinder();
593 boolean nonRoot = data.readInt() != 0;
594 boolean res = moveActivityTaskToBack(token, nonRoot);
595 reply.writeNoException();
596 reply.writeInt(res ? 1 : 0);
597 return true;
598 }
599
600 case MOVE_TASK_BACKWARDS_TRANSACTION: {
601 data.enforceInterface(IActivityManager.descriptor);
602 int task = data.readInt();
603 moveTaskBackwards(task);
604 reply.writeNoException();
605 return true;
606 }
607
608 case GET_TASK_FOR_ACTIVITY_TRANSACTION: {
609 data.enforceInterface(IActivityManager.descriptor);
610 IBinder token = data.readStrongBinder();
611 boolean onlyRoot = data.readInt() != 0;
612 int res = token != null
613 ? getTaskForActivity(token, onlyRoot) : -1;
614 reply.writeNoException();
615 reply.writeInt(res);
616 return true;
617 }
618
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800619 case REPORT_THUMBNAIL_TRANSACTION: {
620 data.enforceInterface(IActivityManager.descriptor);
621 IBinder token = data.readStrongBinder();
622 Bitmap thumbnail = data.readInt() != 0
623 ? Bitmap.CREATOR.createFromParcel(data) : null;
624 CharSequence description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(data);
625 reportThumbnail(token, thumbnail, description);
626 reply.writeNoException();
627 return true;
628 }
629
630 case GET_CONTENT_PROVIDER_TRANSACTION: {
631 data.enforceInterface(IActivityManager.descriptor);
632 IBinder b = data.readStrongBinder();
633 IApplicationThread app = ApplicationThreadNative.asInterface(b);
634 String name = data.readString();
Jeff Sharkey6d515712012-09-20 16:06:08 -0700635 int userId = data.readInt();
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700636 boolean stable = data.readInt() != 0;
Jeff Sharkey6d515712012-09-20 16:06:08 -0700637 ContentProviderHolder cph = getContentProvider(app, name, userId, stable);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800638 reply.writeNoException();
639 if (cph != null) {
640 reply.writeInt(1);
641 cph.writeToParcel(reply, 0);
642 } else {
643 reply.writeInt(0);
644 }
645 return true;
646 }
647
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800648 case GET_CONTENT_PROVIDER_EXTERNAL_TRANSACTION: {
649 data.enforceInterface(IActivityManager.descriptor);
650 String name = data.readString();
Jeff Sharkey6d515712012-09-20 16:06:08 -0700651 int userId = data.readInt();
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800652 IBinder token = data.readStrongBinder();
Jeff Sharkey6d515712012-09-20 16:06:08 -0700653 ContentProviderHolder cph = getContentProviderExternal(name, userId, token);
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800654 reply.writeNoException();
655 if (cph != null) {
656 reply.writeInt(1);
657 cph.writeToParcel(reply, 0);
658 } else {
659 reply.writeInt(0);
660 }
661 return true;
662 }
663
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800664 case PUBLISH_CONTENT_PROVIDERS_TRANSACTION: {
665 data.enforceInterface(IActivityManager.descriptor);
666 IBinder b = data.readStrongBinder();
667 IApplicationThread app = ApplicationThreadNative.asInterface(b);
668 ArrayList<ContentProviderHolder> providers =
669 data.createTypedArrayList(ContentProviderHolder.CREATOR);
670 publishContentProviders(app, providers);
671 reply.writeNoException();
672 return true;
673 }
674
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700675 case REF_CONTENT_PROVIDER_TRANSACTION: {
676 data.enforceInterface(IActivityManager.descriptor);
677 IBinder b = data.readStrongBinder();
678 int stable = data.readInt();
679 int unstable = data.readInt();
680 boolean res = refContentProvider(b, stable, unstable);
681 reply.writeNoException();
682 reply.writeInt(res ? 1 : 0);
683 return true;
684 }
685
686 case UNSTABLE_PROVIDER_DIED_TRANSACTION: {
687 data.enforceInterface(IActivityManager.descriptor);
688 IBinder b = data.readStrongBinder();
689 unstableProviderDied(b);
690 reply.writeNoException();
691 return true;
692 }
693
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800694 case REMOVE_CONTENT_PROVIDER_TRANSACTION: {
695 data.enforceInterface(IActivityManager.descriptor);
696 IBinder b = data.readStrongBinder();
Dianne Hackborn6ae8d182012-05-23 13:12:42 -0700697 boolean stable = data.readInt() != 0;
698 removeContentProvider(b, stable);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800699 reply.writeNoException();
700 return true;
701 }
Svetoslav Ganov25872aa2012-02-03 19:19:09 -0800702
703 case REMOVE_CONTENT_PROVIDER_EXTERNAL_TRANSACTION: {
704 data.enforceInterface(IActivityManager.descriptor);
705 String name = data.readString();
706 IBinder token = data.readStrongBinder();
707 removeContentProviderExternal(name, token);
708 reply.writeNoException();
709 return true;
710 }
711
Dianne Hackborndd9b82c2009-09-03 00:18:47 -0700712 case GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION: {
713 data.enforceInterface(IActivityManager.descriptor);
714 ComponentName comp = ComponentName.CREATOR.createFromParcel(data);
715 PendingIntent pi = getRunningServiceControlPanel(comp);
716 reply.writeNoException();
717 PendingIntent.writePendingIntentOrNullToParcel(pi, reply);
718 return true;
719 }
720
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800721 case START_SERVICE_TRANSACTION: {
722 data.enforceInterface(IActivityManager.descriptor);
723 IBinder b = data.readStrongBinder();
724 IApplicationThread app = ApplicationThreadNative.asInterface(b);
725 Intent service = Intent.CREATOR.createFromParcel(data);
726 String resolvedType = data.readString();
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700727 int userId = data.readInt();
728 ComponentName cn = startService(app, service, resolvedType, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800729 reply.writeNoException();
730 ComponentName.writeToParcel(cn, reply);
731 return true;
732 }
733
734 case STOP_SERVICE_TRANSACTION: {
735 data.enforceInterface(IActivityManager.descriptor);
736 IBinder b = data.readStrongBinder();
737 IApplicationThread app = ApplicationThreadNative.asInterface(b);
738 Intent service = Intent.CREATOR.createFromParcel(data);
739 String resolvedType = data.readString();
Dianne Hackborn7767eac2012-08-23 18:25:40 -0700740 int userId = data.readInt();
741 int res = stopService(app, service, resolvedType, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800742 reply.writeNoException();
743 reply.writeInt(res);
744 return true;
745 }
746
747 case STOP_SERVICE_TOKEN_TRANSACTION: {
748 data.enforceInterface(IActivityManager.descriptor);
749 ComponentName className = ComponentName.readFromParcel(data);
750 IBinder token = data.readStrongBinder();
751 int startId = data.readInt();
752 boolean res = stopServiceToken(className, token, startId);
753 reply.writeNoException();
754 reply.writeInt(res ? 1 : 0);
755 return true;
756 }
757
758 case SET_SERVICE_FOREGROUND_TRANSACTION: {
759 data.enforceInterface(IActivityManager.descriptor);
760 ComponentName className = ComponentName.readFromParcel(data);
761 IBinder token = data.readStrongBinder();
Dianne Hackbornd8a43f62009-08-17 23:33:56 -0700762 int id = data.readInt();
763 Notification notification = null;
764 if (data.readInt() != 0) {
765 notification = Notification.CREATOR.createFromParcel(data);
766 }
767 boolean removeNotification = data.readInt() != 0;
768 setServiceForeground(className, token, id, notification, removeNotification);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800769 reply.writeNoException();
770 return true;
771 }
772
773 case BIND_SERVICE_TRANSACTION: {
774 data.enforceInterface(IActivityManager.descriptor);
775 IBinder b = data.readStrongBinder();
776 IApplicationThread app = ApplicationThreadNative.asInterface(b);
777 IBinder token = data.readStrongBinder();
778 Intent service = Intent.CREATOR.createFromParcel(data);
779 String resolvedType = data.readString();
780 b = data.readStrongBinder();
781 int fl = data.readInt();
Amith Yamasani37ce3a82012-02-06 12:04:42 -0800782 int userId = data.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800783 IServiceConnection conn = IServiceConnection.Stub.asInterface(b);
Amith Yamasani37ce3a82012-02-06 12:04:42 -0800784 int res = bindService(app, token, service, resolvedType, conn, fl, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800785 reply.writeNoException();
786 reply.writeInt(res);
787 return true;
788 }
789
790 case UNBIND_SERVICE_TRANSACTION: {
791 data.enforceInterface(IActivityManager.descriptor);
792 IBinder b = data.readStrongBinder();
793 IServiceConnection conn = IServiceConnection.Stub.asInterface(b);
794 boolean res = unbindService(conn);
795 reply.writeNoException();
796 reply.writeInt(res ? 1 : 0);
797 return true;
798 }
799
800 case PUBLISH_SERVICE_TRANSACTION: {
801 data.enforceInterface(IActivityManager.descriptor);
802 IBinder token = data.readStrongBinder();
803 Intent intent = Intent.CREATOR.createFromParcel(data);
804 IBinder service = data.readStrongBinder();
805 publishService(token, intent, service);
806 reply.writeNoException();
807 return true;
808 }
809
810 case UNBIND_FINISHED_TRANSACTION: {
811 data.enforceInterface(IActivityManager.descriptor);
812 IBinder token = data.readStrongBinder();
813 Intent intent = Intent.CREATOR.createFromParcel(data);
814 boolean doRebind = data.readInt() != 0;
815 unbindFinished(token, intent, doRebind);
816 reply.writeNoException();
817 return true;
818 }
819
820 case SERVICE_DONE_EXECUTING_TRANSACTION: {
821 data.enforceInterface(IActivityManager.descriptor);
822 IBinder token = data.readStrongBinder();
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -0700823 int type = data.readInt();
824 int startId = data.readInt();
825 int res = data.readInt();
826 serviceDoneExecuting(token, type, startId, res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800827 reply.writeNoException();
828 return true;
829 }
830
831 case START_INSTRUMENTATION_TRANSACTION: {
832 data.enforceInterface(IActivityManager.descriptor);
833 ComponentName className = ComponentName.readFromParcel(data);
834 String profileFile = data.readString();
835 int fl = data.readInt();
836 Bundle arguments = data.readBundle();
837 IBinder b = data.readStrongBinder();
838 IInstrumentationWatcher w = IInstrumentationWatcher.Stub.asInterface(b);
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -0700839 int userId = data.readInt();
840 boolean res = startInstrumentation(className, profileFile, fl, arguments, w, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800841 reply.writeNoException();
842 reply.writeInt(res ? 1 : 0);
843 return true;
844 }
845
846
847 case FINISH_INSTRUMENTATION_TRANSACTION: {
848 data.enforceInterface(IActivityManager.descriptor);
849 IBinder b = data.readStrongBinder();
850 IApplicationThread app = ApplicationThreadNative.asInterface(b);
851 int resultCode = data.readInt();
852 Bundle results = data.readBundle();
853 finishInstrumentation(app, resultCode, results);
854 reply.writeNoException();
855 return true;
856 }
857
858 case GET_CONFIGURATION_TRANSACTION: {
859 data.enforceInterface(IActivityManager.descriptor);
860 Configuration config = getConfiguration();
861 reply.writeNoException();
862 config.writeToParcel(reply, 0);
863 return true;
864 }
865
866 case UPDATE_CONFIGURATION_TRANSACTION: {
867 data.enforceInterface(IActivityManager.descriptor);
868 Configuration config = Configuration.CREATOR.createFromParcel(data);
869 updateConfiguration(config);
870 reply.writeNoException();
871 return true;
872 }
873
874 case SET_REQUESTED_ORIENTATION_TRANSACTION: {
875 data.enforceInterface(IActivityManager.descriptor);
876 IBinder token = data.readStrongBinder();
877 int requestedOrientation = data.readInt();
878 setRequestedOrientation(token, requestedOrientation);
879 reply.writeNoException();
880 return true;
881 }
882
883 case GET_REQUESTED_ORIENTATION_TRANSACTION: {
884 data.enforceInterface(IActivityManager.descriptor);
885 IBinder token = data.readStrongBinder();
886 int req = getRequestedOrientation(token);
887 reply.writeNoException();
888 reply.writeInt(req);
889 return true;
890 }
891
892 case GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION: {
893 data.enforceInterface(IActivityManager.descriptor);
894 IBinder token = data.readStrongBinder();
895 ComponentName cn = getActivityClassForToken(token);
896 reply.writeNoException();
897 ComponentName.writeToParcel(cn, reply);
898 return true;
899 }
900
901 case GET_PACKAGE_FOR_TOKEN_TRANSACTION: {
902 data.enforceInterface(IActivityManager.descriptor);
903 IBinder token = data.readStrongBinder();
904 reply.writeNoException();
905 reply.writeString(getPackageForToken(token));
906 return true;
907 }
908
909 case GET_INTENT_SENDER_TRANSACTION: {
910 data.enforceInterface(IActivityManager.descriptor);
911 int type = data.readInt();
912 String packageName = data.readString();
913 IBinder token = data.readStrongBinder();
914 String resultWho = data.readString();
915 int requestCode = data.readInt();
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800916 Intent[] requestIntents;
917 String[] requestResolvedTypes;
918 if (data.readInt() != 0) {
919 requestIntents = data.createTypedArray(Intent.CREATOR);
920 requestResolvedTypes = data.createStringArray();
921 } else {
922 requestIntents = null;
923 requestResolvedTypes = null;
924 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800925 int fl = data.readInt();
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700926 Bundle options = data.readInt() != 0
927 ? Bundle.CREATOR.createFromParcel(data) : null;
Dianne Hackborn41203752012-08-31 14:05:51 -0700928 int userId = data.readInt();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800929 IIntentSender res = getIntentSender(type, packageName, token,
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800930 resultWho, requestCode, requestIntents,
Dianne Hackborn41203752012-08-31 14:05:51 -0700931 requestResolvedTypes, fl, options, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800932 reply.writeNoException();
933 reply.writeStrongBinder(res != null ? res.asBinder() : null);
934 return true;
935 }
936
937 case CANCEL_INTENT_SENDER_TRANSACTION: {
938 data.enforceInterface(IActivityManager.descriptor);
939 IIntentSender r = IIntentSender.Stub.asInterface(
940 data.readStrongBinder());
941 cancelIntentSender(r);
942 reply.writeNoException();
943 return true;
944 }
945
946 case GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION: {
947 data.enforceInterface(IActivityManager.descriptor);
948 IIntentSender r = IIntentSender.Stub.asInterface(
949 data.readStrongBinder());
950 String res = getPackageForIntentSender(r);
951 reply.writeNoException();
952 reply.writeString(res);
953 return true;
954 }
955
Christopher Tatec4a07d12012-04-06 14:19:13 -0700956 case GET_UID_FOR_INTENT_SENDER_TRANSACTION: {
957 data.enforceInterface(IActivityManager.descriptor);
958 IIntentSender r = IIntentSender.Stub.asInterface(
959 data.readStrongBinder());
960 int res = getUidForIntentSender(r);
961 reply.writeNoException();
962 reply.writeInt(res);
963 return true;
964 }
965
Dianne Hackborn41203752012-08-31 14:05:51 -0700966 case HANDLE_INCOMING_USER_TRANSACTION: {
967 data.enforceInterface(IActivityManager.descriptor);
968 int callingPid = data.readInt();
969 int callingUid = data.readInt();
970 int userId = data.readInt();
971 boolean allowAll = data.readInt() != 0 ;
972 boolean requireFull = data.readInt() != 0;
973 String name = data.readString();
974 String callerPackage = data.readString();
975 int res = handleIncomingUser(callingPid, callingUid, userId, allowAll,
976 requireFull, name, callerPackage);
977 reply.writeNoException();
978 reply.writeInt(res);
979 return true;
980 }
981
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800982 case SET_PROCESS_LIMIT_TRANSACTION: {
983 data.enforceInterface(IActivityManager.descriptor);
984 int max = data.readInt();
985 setProcessLimit(max);
986 reply.writeNoException();
987 return true;
988 }
989
990 case GET_PROCESS_LIMIT_TRANSACTION: {
991 data.enforceInterface(IActivityManager.descriptor);
992 int limit = getProcessLimit();
993 reply.writeNoException();
994 reply.writeInt(limit);
995 return true;
996 }
997
998 case SET_PROCESS_FOREGROUND_TRANSACTION: {
999 data.enforceInterface(IActivityManager.descriptor);
1000 IBinder token = data.readStrongBinder();
1001 int pid = data.readInt();
1002 boolean isForeground = data.readInt() != 0;
1003 setProcessForeground(token, pid, isForeground);
1004 reply.writeNoException();
1005 return true;
1006 }
1007
1008 case CHECK_PERMISSION_TRANSACTION: {
1009 data.enforceInterface(IActivityManager.descriptor);
1010 String perm = data.readString();
1011 int pid = data.readInt();
1012 int uid = data.readInt();
1013 int res = checkPermission(perm, pid, uid);
1014 reply.writeNoException();
1015 reply.writeInt(res);
1016 return true;
1017 }
1018
1019 case CHECK_URI_PERMISSION_TRANSACTION: {
1020 data.enforceInterface(IActivityManager.descriptor);
1021 Uri uri = Uri.CREATOR.createFromParcel(data);
1022 int pid = data.readInt();
1023 int uid = data.readInt();
1024 int mode = data.readInt();
1025 int res = checkUriPermission(uri, pid, uid, mode);
1026 reply.writeNoException();
1027 reply.writeInt(res);
1028 return true;
1029 }
1030
1031 case CLEAR_APP_DATA_TRANSACTION: {
1032 data.enforceInterface(IActivityManager.descriptor);
1033 String packageName = data.readString();
1034 IPackageDataObserver observer = IPackageDataObserver.Stub.asInterface(
1035 data.readStrongBinder());
Amith Yamasani742a6712011-05-04 14:49:28 -07001036 int userId = data.readInt();
1037 boolean res = clearApplicationUserData(packageName, observer, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001038 reply.writeNoException();
1039 reply.writeInt(res ? 1 : 0);
1040 return true;
1041 }
1042
1043 case GRANT_URI_PERMISSION_TRANSACTION: {
1044 data.enforceInterface(IActivityManager.descriptor);
1045 IBinder b = data.readStrongBinder();
1046 IApplicationThread app = ApplicationThreadNative.asInterface(b);
1047 String targetPkg = data.readString();
1048 Uri uri = Uri.CREATOR.createFromParcel(data);
1049 int mode = data.readInt();
1050 grantUriPermission(app, targetPkg, uri, mode);
1051 reply.writeNoException();
1052 return true;
1053 }
1054
1055 case REVOKE_URI_PERMISSION_TRANSACTION: {
1056 data.enforceInterface(IActivityManager.descriptor);
1057 IBinder b = data.readStrongBinder();
1058 IApplicationThread app = ApplicationThreadNative.asInterface(b);
1059 Uri uri = Uri.CREATOR.createFromParcel(data);
1060 int mode = data.readInt();
1061 revokeUriPermission(app, uri, mode);
1062 reply.writeNoException();
1063 return true;
1064 }
1065
1066 case SHOW_WAITING_FOR_DEBUGGER_TRANSACTION: {
1067 data.enforceInterface(IActivityManager.descriptor);
1068 IBinder b = data.readStrongBinder();
1069 IApplicationThread app = ApplicationThreadNative.asInterface(b);
1070 boolean waiting = data.readInt() != 0;
1071 showWaitingForDebugger(app, waiting);
1072 reply.writeNoException();
1073 return true;
1074 }
1075
1076 case GET_MEMORY_INFO_TRANSACTION: {
1077 data.enforceInterface(IActivityManager.descriptor);
1078 ActivityManager.MemoryInfo mi = new ActivityManager.MemoryInfo();
1079 getMemoryInfo(mi);
1080 reply.writeNoException();
1081 mi.writeToParcel(reply, 0);
1082 return true;
1083 }
1084
1085 case UNHANDLED_BACK_TRANSACTION: {
1086 data.enforceInterface(IActivityManager.descriptor);
1087 unhandledBack();
1088 reply.writeNoException();
1089 return true;
1090 }
1091
1092 case OPEN_CONTENT_URI_TRANSACTION: {
1093 data.enforceInterface(IActivityManager.descriptor);
1094 Uri uri = Uri.parse(data.readString());
1095 ParcelFileDescriptor pfd = openContentUri(uri);
1096 reply.writeNoException();
1097 if (pfd != null) {
1098 reply.writeInt(1);
1099 pfd.writeToParcel(reply, Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
1100 } else {
1101 reply.writeInt(0);
1102 }
1103 return true;
1104 }
Dianne Hackbornff5b1582012-04-12 17:24:07 -07001105
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001106 case GOING_TO_SLEEP_TRANSACTION: {
1107 data.enforceInterface(IActivityManager.descriptor);
1108 goingToSleep();
1109 reply.writeNoException();
1110 return true;
1111 }
1112
1113 case WAKING_UP_TRANSACTION: {
1114 data.enforceInterface(IActivityManager.descriptor);
1115 wakingUp();
1116 reply.writeNoException();
1117 return true;
1118 }
1119
Dianne Hackbornff5b1582012-04-12 17:24:07 -07001120 case SET_LOCK_SCREEN_SHOWN_TRANSACTION: {
1121 data.enforceInterface(IActivityManager.descriptor);
1122 setLockScreenShown(data.readInt() != 0);
1123 reply.writeNoException();
1124 return true;
1125 }
1126
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001127 case SET_DEBUG_APP_TRANSACTION: {
1128 data.enforceInterface(IActivityManager.descriptor);
1129 String pn = data.readString();
1130 boolean wfd = data.readInt() != 0;
1131 boolean per = data.readInt() != 0;
1132 setDebugApp(pn, wfd, per);
1133 reply.writeNoException();
1134 return true;
1135 }
1136
1137 case SET_ALWAYS_FINISH_TRANSACTION: {
1138 data.enforceInterface(IActivityManager.descriptor);
1139 boolean enabled = data.readInt() != 0;
1140 setAlwaysFinish(enabled);
1141 reply.writeNoException();
1142 return true;
1143 }
1144
Dianne Hackbornb06ea702009-07-13 13:07:51 -07001145 case SET_ACTIVITY_CONTROLLER_TRANSACTION: {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001146 data.enforceInterface(IActivityManager.descriptor);
Dianne Hackbornb06ea702009-07-13 13:07:51 -07001147 IActivityController watcher = IActivityController.Stub.asInterface(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001148 data.readStrongBinder());
Dianne Hackbornb06ea702009-07-13 13:07:51 -07001149 setActivityController(watcher);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001150 return true;
1151 }
1152
1153 case ENTER_SAFE_MODE_TRANSACTION: {
1154 data.enforceInterface(IActivityManager.descriptor);
1155 enterSafeMode();
1156 reply.writeNoException();
1157 return true;
1158 }
1159
1160 case NOTE_WAKEUP_ALARM_TRANSACTION: {
1161 data.enforceInterface(IActivityManager.descriptor);
1162 IIntentSender is = IIntentSender.Stub.asInterface(
1163 data.readStrongBinder());
1164 noteWakeupAlarm(is);
1165 reply.writeNoException();
1166 return true;
1167 }
1168
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -07001169 case KILL_PIDS_TRANSACTION: {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001170 data.enforceInterface(IActivityManager.descriptor);
1171 int[] pids = data.createIntArray();
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -07001172 String reason = data.readString();
Dianne Hackborn64825172011-03-02 21:32:58 -08001173 boolean secure = data.readInt() != 0;
1174 boolean res = killPids(pids, reason, secure);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001175 reply.writeNoException();
1176 reply.writeInt(res ? 1 : 0);
1177 return true;
1178 }
1179
Jeff Sharkeyb9a07012012-03-22 17:00:04 -07001180 case KILL_PROCESSES_BELOW_FOREGROUND_TRANSACTION: {
1181 data.enforceInterface(IActivityManager.descriptor);
1182 String reason = data.readString();
1183 boolean res = killProcessesBelowForeground(reason);
1184 reply.writeNoException();
1185 reply.writeInt(res ? 1 : 0);
1186 return true;
1187 }
1188
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001189 case START_RUNNING_TRANSACTION: {
1190 data.enforceInterface(IActivityManager.descriptor);
1191 String pkg = data.readString();
1192 String cls = data.readString();
1193 String action = data.readString();
1194 String indata = data.readString();
1195 startRunning(pkg, cls, action, indata);
1196 reply.writeNoException();
1197 return true;
1198 }
1199
Dan Egnor60d87622009-12-16 16:32:58 -08001200 case HANDLE_APPLICATION_CRASH_TRANSACTION: {
1201 data.enforceInterface(IActivityManager.descriptor);
1202 IBinder app = data.readStrongBinder();
1203 ApplicationErrorReport.CrashInfo ci = new ApplicationErrorReport.CrashInfo(data);
1204 handleApplicationCrash(app, ci);
1205 reply.writeNoException();
1206 return true;
1207 }
1208
1209 case HANDLE_APPLICATION_WTF_TRANSACTION: {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001210 data.enforceInterface(IActivityManager.descriptor);
1211 IBinder app = data.readStrongBinder();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001212 String tag = data.readString();
Dan Egnorb7f03672009-12-09 16:22:32 -08001213 ApplicationErrorReport.CrashInfo ci = new ApplicationErrorReport.CrashInfo(data);
Dan Egnor60d87622009-12-16 16:32:58 -08001214 boolean res = handleApplicationWtf(app, tag, ci);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001215 reply.writeNoException();
Dan Egnor60d87622009-12-16 16:32:58 -08001216 reply.writeInt(res ? 1 : 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001217 return true;
1218 }
Dan Egnorb7f03672009-12-09 16:22:32 -08001219
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07001220 case HANDLE_APPLICATION_STRICT_MODE_VIOLATION_TRANSACTION: {
1221 data.enforceInterface(IActivityManager.descriptor);
1222 IBinder app = data.readStrongBinder();
Brad Fitzpatrick46d42382010-06-11 13:57:58 -07001223 int violationMask = data.readInt();
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -07001224 StrictMode.ViolationInfo info = new StrictMode.ViolationInfo(data);
1225 handleApplicationStrictModeViolation(app, violationMask, info);
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07001226 reply.writeNoException();
1227 return true;
1228 }
1229
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001230 case SIGNAL_PERSISTENT_PROCESSES_TRANSACTION: {
1231 data.enforceInterface(IActivityManager.descriptor);
1232 int sig = data.readInt();
1233 signalPersistentProcesses(sig);
1234 reply.writeNoException();
1235 return true;
1236 }
1237
Dianne Hackborn03abb812010-01-04 18:43:19 -08001238 case KILL_BACKGROUND_PROCESSES_TRANSACTION: {
1239 data.enforceInterface(IActivityManager.descriptor);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001240 String packageName = data.readString();
Dianne Hackborn1676c852012-09-10 14:52:30 -07001241 int userId = data.readInt();
1242 killBackgroundProcesses(packageName, userId);
Dianne Hackborn03abb812010-01-04 18:43:19 -08001243 reply.writeNoException();
1244 return true;
1245 }
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -08001246
1247 case KILL_ALL_BACKGROUND_PROCESSES_TRANSACTION: {
1248 data.enforceInterface(IActivityManager.descriptor);
1249 killAllBackgroundProcesses();
1250 reply.writeNoException();
1251 return true;
1252 }
Dianne Hackborn03abb812010-01-04 18:43:19 -08001253
1254 case FORCE_STOP_PACKAGE_TRANSACTION: {
1255 data.enforceInterface(IActivityManager.descriptor);
1256 String packageName = data.readString();
Dianne Hackborn1676c852012-09-10 14:52:30 -07001257 int userId = data.readInt();
1258 forceStopPackage(packageName, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001259 reply.writeNoException();
1260 return true;
1261 }
Dianne Hackborn27ff9132012-03-06 14:57:58 -08001262
1263 case GET_MY_MEMORY_STATE_TRANSACTION: {
1264 data.enforceInterface(IActivityManager.descriptor);
1265 ActivityManager.RunningAppProcessInfo info =
1266 new ActivityManager.RunningAppProcessInfo();
1267 getMyMemoryState(info);
1268 reply.writeNoException();
1269 info.writeToParcel(reply, 0);
1270 return true;
1271 }
1272
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001273 case GET_DEVICE_CONFIGURATION_TRANSACTION: {
1274 data.enforceInterface(IActivityManager.descriptor);
1275 ConfigurationInfo config = getDeviceConfigurationInfo();
1276 reply.writeNoException();
1277 config.writeToParcel(reply, 0);
1278 return true;
1279 }
1280
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08001281 case PROFILE_CONTROL_TRANSACTION: {
1282 data.enforceInterface(IActivityManager.descriptor);
1283 String process = data.readString();
Dianne Hackborn1676c852012-09-10 14:52:30 -07001284 int userId = data.readInt();
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08001285 boolean start = data.readInt() != 0;
Romain Guy9a8c5ce2011-07-21 18:04:29 -07001286 int profileType = data.readInt();
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08001287 String path = data.readString();
Dianne Hackborn9c8dd552009-06-23 19:22:52 -07001288 ParcelFileDescriptor fd = data.readInt() != 0
1289 ? data.readFileDescriptor() : null;
Dianne Hackborn1676c852012-09-10 14:52:30 -07001290 boolean res = profileControl(process, userId, start, path, fd, profileType);
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08001291 reply.writeNoException();
1292 reply.writeInt(res ? 1 : 0);
1293 return true;
1294 }
1295
Dianne Hackborn55280a92009-05-07 15:53:46 -07001296 case SHUTDOWN_TRANSACTION: {
1297 data.enforceInterface(IActivityManager.descriptor);
1298 boolean res = shutdown(data.readInt());
1299 reply.writeNoException();
1300 reply.writeInt(res ? 1 : 0);
1301 return true;
1302 }
1303
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07001304 case STOP_APP_SWITCHES_TRANSACTION: {
1305 data.enforceInterface(IActivityManager.descriptor);
1306 stopAppSwitches();
1307 reply.writeNoException();
1308 return true;
1309 }
1310
1311 case RESUME_APP_SWITCHES_TRANSACTION: {
1312 data.enforceInterface(IActivityManager.descriptor);
1313 resumeAppSwitches();
1314 reply.writeNoException();
1315 return true;
1316 }
1317
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001318 case PEEK_SERVICE_TRANSACTION: {
1319 data.enforceInterface(IActivityManager.descriptor);
1320 Intent service = Intent.CREATOR.createFromParcel(data);
1321 String resolvedType = data.readString();
1322 IBinder binder = peekService(service, resolvedType);
1323 reply.writeNoException();
1324 reply.writeStrongBinder(binder);
1325 return true;
1326 }
Christopher Tate181fafa2009-05-14 11:12:14 -07001327
1328 case START_BACKUP_AGENT_TRANSACTION: {
1329 data.enforceInterface(IActivityManager.descriptor);
1330 ApplicationInfo info = ApplicationInfo.CREATOR.createFromParcel(data);
1331 int backupRestoreMode = data.readInt();
1332 boolean success = bindBackupAgent(info, backupRestoreMode);
1333 reply.writeNoException();
1334 reply.writeInt(success ? 1 : 0);
1335 return true;
1336 }
1337
1338 case BACKUP_AGENT_CREATED_TRANSACTION: {
1339 data.enforceInterface(IActivityManager.descriptor);
1340 String packageName = data.readString();
1341 IBinder agent = data.readStrongBinder();
1342 backupAgentCreated(packageName, agent);
1343 reply.writeNoException();
1344 return true;
1345 }
1346
1347 case UNBIND_BACKUP_AGENT_TRANSACTION: {
1348 data.enforceInterface(IActivityManager.descriptor);
1349 ApplicationInfo info = ApplicationInfo.CREATOR.createFromParcel(data);
1350 unbindBackupAgent(info);
1351 reply.writeNoException();
1352 return true;
1353 }
Dianne Hackbornb06ea702009-07-13 13:07:51 -07001354
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07001355 case KILL_APPLICATION_WITH_APPID_TRANSACTION: {
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -07001356 data.enforceInterface(IActivityManager.descriptor);
1357 String pkg = data.readString();
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07001358 int appid = data.readInt();
1359 killApplicationWithAppId(pkg, appid);
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -07001360 reply.writeNoException();
1361 return true;
1362 }
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -07001363
1364 case CLOSE_SYSTEM_DIALOGS_TRANSACTION: {
1365 data.enforceInterface(IActivityManager.descriptor);
1366 String reason = data.readString();
1367 closeSystemDialogs(reason);
1368 reply.writeNoException();
1369 return true;
1370 }
Dianne Hackborn3025ef32009-08-31 21:31:47 -07001371
1372 case GET_PROCESS_MEMORY_INFO_TRANSACTION: {
1373 data.enforceInterface(IActivityManager.descriptor);
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07001374 int[] pids = data.createIntArray();
1375 Debug.MemoryInfo[] res = getProcessMemoryInfo(pids);
Dianne Hackborn3025ef32009-08-31 21:31:47 -07001376 reply.writeNoException();
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07001377 reply.writeTypedArray(res, Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
Dianne Hackborn3025ef32009-08-31 21:31:47 -07001378 return true;
1379 }
Christopher Tate5e1ab332009-09-01 20:32:49 -07001380
1381 case KILL_APPLICATION_PROCESS_TRANSACTION: {
1382 data.enforceInterface(IActivityManager.descriptor);
1383 String processName = data.readString();
1384 int uid = data.readInt();
1385 killApplicationProcess(processName, uid);
1386 reply.writeNoException();
1387 return true;
1388 }
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07001389
1390 case OVERRIDE_PENDING_TRANSITION_TRANSACTION: {
1391 data.enforceInterface(IActivityManager.descriptor);
1392 IBinder token = data.readStrongBinder();
1393 String packageName = data.readString();
1394 int enterAnim = data.readInt();
1395 int exitAnim = data.readInt();
1396 overridePendingTransition(token, packageName, enterAnim, exitAnim);
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001397 reply.writeNoException();
1398 return true;
1399 }
1400
1401 case IS_USER_A_MONKEY_TRANSACTION: {
1402 data.enforceInterface(IActivityManager.descriptor);
Dianne Hackborn7e269642010-08-25 19:50:20 -07001403 boolean areThey = isUserAMonkey();
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08001404 reply.writeNoException();
Dianne Hackborn7e269642010-08-25 19:50:20 -07001405 reply.writeInt(areThey ? 1 : 0);
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07001406 return true;
1407 }
Dianne Hackborn860755f2010-06-03 18:47:52 -07001408
1409 case FINISH_HEAVY_WEIGHT_APP_TRANSACTION: {
1410 data.enforceInterface(IActivityManager.descriptor);
1411 finishHeavyWeightApp();
1412 reply.writeNoException();
1413 return true;
1414 }
Daniel Sandler69a48172010-06-23 16:29:36 -04001415
1416 case IS_IMMERSIVE_TRANSACTION: {
1417 data.enforceInterface(IActivityManager.descriptor);
1418 IBinder token = data.readStrongBinder();
Dianne Hackborn7e269642010-08-25 19:50:20 -07001419 boolean isit = isImmersive(token);
Daniel Sandler69a48172010-06-23 16:29:36 -04001420 reply.writeNoException();
Dianne Hackborn7e269642010-08-25 19:50:20 -07001421 reply.writeInt(isit ? 1 : 0);
Daniel Sandler69a48172010-06-23 16:29:36 -04001422 return true;
1423 }
1424
1425 case SET_IMMERSIVE_TRANSACTION: {
1426 data.enforceInterface(IActivityManager.descriptor);
1427 IBinder token = data.readStrongBinder();
1428 boolean imm = data.readInt() == 1;
1429 setImmersive(token, imm);
1430 reply.writeNoException();
1431 return true;
1432 }
1433
1434 case IS_TOP_ACTIVITY_IMMERSIVE_TRANSACTION: {
1435 data.enforceInterface(IActivityManager.descriptor);
Dianne Hackborn7e269642010-08-25 19:50:20 -07001436 boolean isit = isTopActivityImmersive();
Daniel Sandler69a48172010-06-23 16:29:36 -04001437 reply.writeNoException();
Dianne Hackborn7e269642010-08-25 19:50:20 -07001438 reply.writeInt(isit ? 1 : 0);
Daniel Sandler69a48172010-06-23 16:29:36 -04001439 return true;
1440 }
1441
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -07001442 case CRASH_APPLICATION_TRANSACTION: {
1443 data.enforceInterface(IActivityManager.descriptor);
1444 int uid = data.readInt();
1445 int initialPid = data.readInt();
1446 String packageName = data.readString();
1447 String message = data.readString();
1448 crashApplication(uid, initialPid, packageName, message);
1449 reply.writeNoException();
1450 return true;
1451 }
Dianne Hackborncca1f0e2010-09-26 18:34:53 -07001452
1453 case GET_PROVIDER_MIME_TYPE_TRANSACTION: {
1454 data.enforceInterface(IActivityManager.descriptor);
1455 Uri uri = Uri.CREATOR.createFromParcel(data);
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07001456 int userId = data.readInt();
1457 String type = getProviderMimeType(uri, userId);
Dianne Hackborncca1f0e2010-09-26 18:34:53 -07001458 reply.writeNoException();
1459 reply.writeString(type);
1460 return true;
1461 }
1462
Dianne Hackborn7e269642010-08-25 19:50:20 -07001463 case NEW_URI_PERMISSION_OWNER_TRANSACTION: {
1464 data.enforceInterface(IActivityManager.descriptor);
1465 String name = data.readString();
1466 IBinder perm = newUriPermissionOwner(name);
1467 reply.writeNoException();
1468 reply.writeStrongBinder(perm);
1469 return true;
1470 }
1471
1472 case GRANT_URI_PERMISSION_FROM_OWNER_TRANSACTION: {
1473 data.enforceInterface(IActivityManager.descriptor);
1474 IBinder owner = data.readStrongBinder();
1475 int fromUid = data.readInt();
1476 String targetPkg = data.readString();
1477 Uri uri = Uri.CREATOR.createFromParcel(data);
1478 int mode = data.readInt();
1479 grantUriPermissionFromOwner(owner, fromUid, targetPkg, uri, mode);
1480 reply.writeNoException();
1481 return true;
1482 }
1483
1484 case REVOKE_URI_PERMISSION_FROM_OWNER_TRANSACTION: {
1485 data.enforceInterface(IActivityManager.descriptor);
1486 IBinder owner = data.readStrongBinder();
1487 Uri uri = null;
1488 if (data.readInt() != 0) {
1489 Uri.CREATOR.createFromParcel(data);
1490 }
1491 int mode = data.readInt();
1492 revokeUriPermissionFromOwner(owner, uri, mode);
1493 reply.writeNoException();
1494 return true;
1495 }
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -07001496
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -07001497 case CHECK_GRANT_URI_PERMISSION_TRANSACTION: {
1498 data.enforceInterface(IActivityManager.descriptor);
1499 int callingUid = data.readInt();
1500 String targetPkg = data.readString();
1501 Uri uri = Uri.CREATOR.createFromParcel(data);
1502 int modeFlags = data.readInt();
1503 int res = checkGrantUriPermission(callingUid, targetPkg, uri, modeFlags);
1504 reply.writeNoException();
1505 reply.writeInt(res);
1506 return true;
1507 }
1508
Andy McFadden824c5102010-07-09 16:26:57 -07001509 case DUMP_HEAP_TRANSACTION: {
1510 data.enforceInterface(IActivityManager.descriptor);
1511 String process = data.readString();
Dianne Hackbornb12e1352012-09-26 11:39:20 -07001512 int userId = data.readInt();
Andy McFadden824c5102010-07-09 16:26:57 -07001513 boolean managed = data.readInt() != 0;
1514 String path = data.readString();
1515 ParcelFileDescriptor fd = data.readInt() != 0
1516 ? data.readFileDescriptor() : null;
Dianne Hackborn1676c852012-09-10 14:52:30 -07001517 boolean res = dumpHeap(process, userId, managed, path, fd);
Andy McFadden824c5102010-07-09 16:26:57 -07001518 reply.writeNoException();
1519 reply.writeInt(res ? 1 : 0);
1520 return true;
1521 }
1522
Dianne Hackborn621e17d2010-11-22 15:59:56 -08001523 case START_ACTIVITIES_TRANSACTION:
1524 {
1525 data.enforceInterface(IActivityManager.descriptor);
1526 IBinder b = data.readStrongBinder();
1527 IApplicationThread app = ApplicationThreadNative.asInterface(b);
1528 Intent[] intents = data.createTypedArray(Intent.CREATOR);
1529 String[] resolvedTypes = data.createStringArray();
1530 IBinder resultTo = data.readStrongBinder();
Dianne Hackborna4972e92012-03-14 10:38:05 -07001531 Bundle options = data.readInt() != 0
1532 ? Bundle.CREATOR.createFromParcel(data) : null;
Amith Yamasaniea7e9152012-09-24 16:11:18 -07001533 int userId = data.readInt();
Dianne Hackborna4972e92012-03-14 10:38:05 -07001534 int result = startActivities(app, intents, resolvedTypes, resultTo,
Amith Yamasaniea7e9152012-09-24 16:11:18 -07001535 options, userId);
Dianne Hackborn621e17d2010-11-22 15:59:56 -08001536 reply.writeNoException();
1537 reply.writeInt(result);
1538 return true;
1539 }
1540
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -07001541 case GET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION:
1542 {
1543 data.enforceInterface(IActivityManager.descriptor);
1544 int mode = getFrontActivityScreenCompatMode();
1545 reply.writeNoException();
1546 reply.writeInt(mode);
1547 return true;
1548 }
1549
1550 case SET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION:
1551 {
1552 data.enforceInterface(IActivityManager.descriptor);
1553 int mode = data.readInt();
1554 setFrontActivityScreenCompatMode(mode);
1555 reply.writeNoException();
1556 reply.writeInt(mode);
1557 return true;
1558 }
1559
1560 case GET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION:
1561 {
1562 data.enforceInterface(IActivityManager.descriptor);
1563 String pkg = data.readString();
1564 int mode = getPackageScreenCompatMode(pkg);
1565 reply.writeNoException();
1566 reply.writeInt(mode);
1567 return true;
1568 }
1569
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001570 case SET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION:
1571 {
1572 data.enforceInterface(IActivityManager.descriptor);
1573 String pkg = data.readString();
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -07001574 int mode = data.readInt();
1575 setPackageScreenCompatMode(pkg, mode);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04001576 reply.writeNoException();
1577 return true;
1578 }
Dianne Hackbornaa9d84c2011-05-09 19:00:59 -07001579
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001580 case SWITCH_USER_TRANSACTION: {
1581 data.enforceInterface(IActivityManager.descriptor);
1582 int userid = data.readInt();
1583 boolean result = switchUser(userid);
1584 reply.writeNoException();
1585 reply.writeInt(result ? 1 : 0);
1586 return true;
1587 }
Amith Yamasani52f1d752012-03-28 18:19:29 -07001588
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001589 case STOP_USER_TRANSACTION: {
1590 data.enforceInterface(IActivityManager.descriptor);
1591 int userid = data.readInt();
1592 IStopUserCallback callback = IStopUserCallback.Stub.asInterface(
1593 data.readStrongBinder());
1594 int result = stopUser(userid, callback);
1595 reply.writeNoException();
1596 reply.writeInt(result);
1597 return true;
1598 }
1599
Amith Yamasani52f1d752012-03-28 18:19:29 -07001600 case GET_CURRENT_USER_TRANSACTION: {
1601 data.enforceInterface(IActivityManager.descriptor);
1602 UserInfo userInfo = getCurrentUser();
1603 reply.writeNoException();
1604 userInfo.writeToParcel(reply, 0);
1605 return true;
1606 }
1607
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07001608 case IS_USER_RUNNING_TRANSACTION: {
1609 data.enforceInterface(IActivityManager.descriptor);
1610 int userid = data.readInt();
1611 boolean result = isUserRunning(userid);
1612 reply.writeNoException();
1613 reply.writeInt(result ? 1 : 0);
1614 return true;
1615 }
1616
Dianne Hackbornc72fc672012-09-20 13:12:03 -07001617 case GET_RUNNING_USER_IDS_TRANSACTION: {
1618 data.enforceInterface(IActivityManager.descriptor);
1619 int[] result = getRunningUserIds();
1620 reply.writeNoException();
1621 reply.writeIntArray(result);
1622 return true;
1623 }
1624
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07001625 case REMOVE_SUB_TASK_TRANSACTION:
1626 {
1627 data.enforceInterface(IActivityManager.descriptor);
1628 int taskId = data.readInt();
1629 int subTaskIndex = data.readInt();
1630 boolean result = removeSubTask(taskId, subTaskIndex);
1631 reply.writeNoException();
1632 reply.writeInt(result ? 1 : 0);
1633 return true;
1634 }
1635
1636 case REMOVE_TASK_TRANSACTION:
1637 {
1638 data.enforceInterface(IActivityManager.descriptor);
1639 int taskId = data.readInt();
1640 int fl = data.readInt();
1641 boolean result = removeTask(taskId, fl);
1642 reply.writeNoException();
1643 reply.writeInt(result ? 1 : 0);
1644 return true;
1645 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07001646
Jeff Sharkeya4620792011-05-20 15:29:23 -07001647 case REGISTER_PROCESS_OBSERVER_TRANSACTION: {
1648 data.enforceInterface(IActivityManager.descriptor);
1649 IProcessObserver observer = IProcessObserver.Stub.asInterface(
1650 data.readStrongBinder());
1651 registerProcessObserver(observer);
1652 return true;
1653 }
1654
1655 case UNREGISTER_PROCESS_OBSERVER_TRANSACTION: {
1656 data.enforceInterface(IActivityManager.descriptor);
1657 IProcessObserver observer = IProcessObserver.Stub.asInterface(
1658 data.readStrongBinder());
1659 unregisterProcessObserver(observer);
1660 return true;
1661 }
1662
Dianne Hackborn36cd41f2011-05-25 21:00:46 -07001663 case GET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION:
1664 {
1665 data.enforceInterface(IActivityManager.descriptor);
1666 String pkg = data.readString();
1667 boolean ask = getPackageAskScreenCompat(pkg);
1668 reply.writeNoException();
1669 reply.writeInt(ask ? 1 : 0);
1670 return true;
1671 }
1672
1673 case SET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION:
1674 {
1675 data.enforceInterface(IActivityManager.descriptor);
1676 String pkg = data.readString();
1677 boolean ask = data.readInt() != 0;
1678 setPackageAskScreenCompat(pkg, ask);
1679 reply.writeNoException();
1680 return true;
1681 }
1682
Dianne Hackborn6c418d52011-06-29 14:05:33 -07001683 case IS_INTENT_SENDER_TARGETED_TO_PACKAGE_TRANSACTION: {
1684 data.enforceInterface(IActivityManager.descriptor);
1685 IIntentSender r = IIntentSender.Stub.asInterface(
1686 data.readStrongBinder());
1687 boolean res = isIntentSenderTargetedToPackage(r);
1688 reply.writeNoException();
1689 reply.writeInt(res ? 1 : 0);
1690 return true;
1691 }
1692
Dianne Hackborn1927ae82012-06-22 15:21:36 -07001693 case IS_INTENT_SENDER_AN_ACTIVITY_TRANSACTION: {
1694 data.enforceInterface(IActivityManager.descriptor);
1695 IIntentSender r = IIntentSender.Stub.asInterface(
1696 data.readStrongBinder());
1697 boolean res = isIntentSenderAnActivity(r);
1698 reply.writeNoException();
1699 reply.writeInt(res ? 1 : 0);
1700 return true;
1701 }
1702
Dianne Hackborn31ca8542011-07-19 14:58:28 -07001703 case UPDATE_PERSISTENT_CONFIGURATION_TRANSACTION: {
1704 data.enforceInterface(IActivityManager.descriptor);
1705 Configuration config = Configuration.CREATOR.createFromParcel(data);
1706 updatePersistentConfiguration(config);
1707 reply.writeNoException();
1708 return true;
1709 }
1710
Dianne Hackbornb437e092011-08-05 17:50:29 -07001711 case GET_PROCESS_PSS_TRANSACTION: {
1712 data.enforceInterface(IActivityManager.descriptor);
1713 int[] pids = data.createIntArray();
1714 long[] pss = getProcessPss(pids);
1715 reply.writeNoException();
1716 reply.writeLongArray(pss);
1717 return true;
1718 }
1719
Dianne Hackborn661cd522011-08-22 00:26:20 -07001720 case SHOW_BOOT_MESSAGE_TRANSACTION: {
1721 data.enforceInterface(IActivityManager.descriptor);
1722 CharSequence msg = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(data);
1723 boolean always = data.readInt() != 0;
1724 showBootMessage(msg, always);
1725 reply.writeNoException();
1726 return true;
1727 }
1728
Dianne Hackborn90c52de2011-09-23 12:57:44 -07001729 case DISMISS_KEYGUARD_ON_NEXT_ACTIVITY_TRANSACTION: {
1730 data.enforceInterface(IActivityManager.descriptor);
1731 dismissKeyguardOnNextActivity();
1732 reply.writeNoException();
1733 return true;
1734 }
1735
Adam Powelldd8fab22012-03-22 17:47:27 -07001736 case TARGET_TASK_AFFINITY_MATCHES_ACTIVITY_TRANSACTION: {
1737 data.enforceInterface(IActivityManager.descriptor);
1738 IBinder token = data.readStrongBinder();
1739 String destAffinity = data.readString();
1740 boolean res = targetTaskAffinityMatchesActivity(token, destAffinity);
1741 reply.writeNoException();
1742 reply.writeInt(res ? 1 : 0);
1743 return true;
1744 }
1745
1746 case NAVIGATE_UP_TO_TRANSACTION: {
1747 data.enforceInterface(IActivityManager.descriptor);
1748 IBinder token = data.readStrongBinder();
1749 Intent target = Intent.CREATOR.createFromParcel(data);
1750 int resultCode = data.readInt();
1751 Intent resultData = null;
1752 if (data.readInt() != 0) {
1753 resultData = Intent.CREATOR.createFromParcel(data);
1754 }
1755 boolean res = navigateUpTo(token, target, resultCode, resultData);
1756 reply.writeNoException();
1757 reply.writeInt(res ? 1 : 0);
1758 return true;
1759 }
1760
Dianne Hackborn5320eb82012-05-18 12:05:04 -07001761 case GET_LAUNCHED_FROM_UID_TRANSACTION: {
1762 data.enforceInterface(IActivityManager.descriptor);
1763 IBinder token = data.readStrongBinder();
1764 int res = getLaunchedFromUid(token);
1765 reply.writeNoException();
1766 reply.writeInt(res);
1767 return true;
1768 }
1769
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07001770 case REGISTER_USER_SWITCH_OBSERVER_TRANSACTION: {
1771 data.enforceInterface(IActivityManager.descriptor);
1772 IUserSwitchObserver observer = IUserSwitchObserver.Stub.asInterface(
1773 data.readStrongBinder());
1774 registerUserSwitchObserver(observer);
1775 return true;
1776 }
1777
1778 case UNREGISTER_USER_SWITCH_OBSERVER_TRANSACTION: {
1779 data.enforceInterface(IActivityManager.descriptor);
1780 IUserSwitchObserver observer = IUserSwitchObserver.Stub.asInterface(
1781 data.readStrongBinder());
1782 unregisterUserSwitchObserver(observer);
1783 return true;
1784 }
1785
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07001786 case REQUEST_BUG_REPORT_TRANSACTION: {
1787 data.enforceInterface(IActivityManager.descriptor);
1788 requestBugReport();
1789 return true;
1790 }
1791
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001792 }
Brad Fitzpatrick663f4f32010-11-23 19:15:24 -08001793
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001794 return super.onTransact(code, data, reply, flags);
1795 }
1796
Brad Fitzpatrick663f4f32010-11-23 19:15:24 -08001797 public IBinder asBinder() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001798 return this;
1799 }
1800
Brad Fitzpatrick663f4f32010-11-23 19:15:24 -08001801 private static final Singleton<IActivityManager> gDefault = new Singleton<IActivityManager>() {
1802 protected IActivityManager create() {
1803 IBinder b = ServiceManager.getService("activity");
Joe Onorato43a17652011-04-06 19:22:23 -07001804 if (false) {
Brad Fitzpatrick663f4f32010-11-23 19:15:24 -08001805 Log.v("ActivityManager", "default service binder = " + b);
1806 }
1807 IActivityManager am = asInterface(b);
Joe Onorato43a17652011-04-06 19:22:23 -07001808 if (false) {
Brad Fitzpatrick663f4f32010-11-23 19:15:24 -08001809 Log.v("ActivityManager", "default service = " + am);
1810 }
1811 return am;
1812 }
1813 };
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001814}
1815
1816class ActivityManagerProxy implements IActivityManager
1817{
1818 public ActivityManagerProxy(IBinder remote)
1819 {
1820 mRemote = remote;
1821 }
Siva Velusamy92a8b222012-03-09 16:24:04 -08001822
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001823 public IBinder asBinder()
1824 {
1825 return mRemote;
1826 }
Siva Velusamy92a8b222012-03-09 16:24:04 -08001827
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001828 public int startActivity(IApplicationThread caller, Intent intent,
Dianne Hackborna4972e92012-03-14 10:38:05 -07001829 String resolvedType, IBinder resultTo, String resultWho, int requestCode,
1830 int startFlags, String profileFile,
1831 ParcelFileDescriptor profileFd, Bundle options) throws RemoteException {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001832 Parcel data = Parcel.obtain();
1833 Parcel reply = Parcel.obtain();
1834 data.writeInterfaceToken(IActivityManager.descriptor);
1835 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
1836 intent.writeToParcel(data, 0);
1837 data.writeString(resolvedType);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001838 data.writeStrongBinder(resultTo);
1839 data.writeString(resultWho);
1840 data.writeInt(requestCode);
Dianne Hackborna4972e92012-03-14 10:38:05 -07001841 data.writeInt(startFlags);
Dianne Hackborn62f20ec2011-08-15 17:40:28 -07001842 data.writeString(profileFile);
1843 if (profileFd != null) {
1844 data.writeInt(1);
1845 profileFd.writeToParcel(data, Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
1846 } else {
1847 data.writeInt(0);
1848 }
Dianne Hackborna4972e92012-03-14 10:38:05 -07001849 if (options != null) {
1850 data.writeInt(1);
1851 options.writeToParcel(data, 0);
1852 } else {
1853 data.writeInt(0);
1854 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001855 mRemote.transact(START_ACTIVITY_TRANSACTION, data, reply, 0);
1856 reply.readException();
1857 int result = reply.readInt();
1858 reply.recycle();
1859 data.recycle();
1860 return result;
1861 }
Amith Yamasani82644082012-08-03 13:09:11 -07001862
1863 public int startActivityAsUser(IApplicationThread caller, Intent intent,
1864 String resolvedType, IBinder resultTo, String resultWho, int requestCode,
1865 int startFlags, String profileFile,
1866 ParcelFileDescriptor profileFd, Bundle options, int userId) throws RemoteException {
1867 Parcel data = Parcel.obtain();
1868 Parcel reply = Parcel.obtain();
1869 data.writeInterfaceToken(IActivityManager.descriptor);
1870 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
1871 intent.writeToParcel(data, 0);
1872 data.writeString(resolvedType);
1873 data.writeStrongBinder(resultTo);
1874 data.writeString(resultWho);
1875 data.writeInt(requestCode);
1876 data.writeInt(startFlags);
1877 data.writeString(profileFile);
1878 if (profileFd != null) {
1879 data.writeInt(1);
1880 profileFd.writeToParcel(data, Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
1881 } else {
1882 data.writeInt(0);
1883 }
1884 if (options != null) {
1885 data.writeInt(1);
1886 options.writeToParcel(data, 0);
1887 } else {
1888 data.writeInt(0);
1889 }
1890 data.writeInt(userId);
1891 mRemote.transact(START_ACTIVITY_AS_USER_TRANSACTION, data, reply, 0);
1892 reply.readException();
1893 int result = reply.readInt();
1894 reply.recycle();
1895 data.recycle();
1896 return result;
1897 }
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -08001898 public WaitResult startActivityAndWait(IApplicationThread caller, Intent intent,
Dianne Hackborna4972e92012-03-14 10:38:05 -07001899 String resolvedType, IBinder resultTo, String resultWho,
1900 int requestCode, int startFlags, String profileFile,
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07001901 ParcelFileDescriptor profileFd, Bundle options, int userId) throws RemoteException {
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -08001902 Parcel data = Parcel.obtain();
1903 Parcel reply = Parcel.obtain();
1904 data.writeInterfaceToken(IActivityManager.descriptor);
1905 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
1906 intent.writeToParcel(data, 0);
1907 data.writeString(resolvedType);
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -08001908 data.writeStrongBinder(resultTo);
1909 data.writeString(resultWho);
1910 data.writeInt(requestCode);
Dianne Hackborna4972e92012-03-14 10:38:05 -07001911 data.writeInt(startFlags);
Dianne Hackborn62f20ec2011-08-15 17:40:28 -07001912 data.writeString(profileFile);
1913 if (profileFd != null) {
1914 data.writeInt(1);
1915 profileFd.writeToParcel(data, Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
1916 } else {
1917 data.writeInt(0);
1918 }
Dianne Hackborna4972e92012-03-14 10:38:05 -07001919 if (options != null) {
1920 data.writeInt(1);
1921 options.writeToParcel(data, 0);
1922 } else {
1923 data.writeInt(0);
1924 }
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07001925 data.writeInt(userId);
Dianne Hackborn8f7f35e2010-02-25 18:48:12 -08001926 mRemote.transact(START_ACTIVITY_AND_WAIT_TRANSACTION, data, reply, 0);
1927 reply.readException();
1928 WaitResult result = WaitResult.CREATOR.createFromParcel(reply);
1929 reply.recycle();
1930 data.recycle();
1931 return result;
1932 }
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -07001933 public int startActivityWithConfig(IApplicationThread caller, Intent intent,
Dianne Hackborna4972e92012-03-14 10:38:05 -07001934 String resolvedType, IBinder resultTo, String resultWho,
1935 int requestCode, int startFlags, Configuration config,
Dianne Hackborn41203752012-08-31 14:05:51 -07001936 Bundle options, int userId) throws RemoteException {
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -07001937 Parcel data = Parcel.obtain();
1938 Parcel reply = Parcel.obtain();
1939 data.writeInterfaceToken(IActivityManager.descriptor);
1940 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
1941 intent.writeToParcel(data, 0);
1942 data.writeString(resolvedType);
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -07001943 data.writeStrongBinder(resultTo);
1944 data.writeString(resultWho);
1945 data.writeInt(requestCode);
Dianne Hackborna4972e92012-03-14 10:38:05 -07001946 data.writeInt(startFlags);
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -07001947 config.writeToParcel(data, 0);
Dianne Hackborna4972e92012-03-14 10:38:05 -07001948 if (options != null) {
1949 data.writeInt(1);
1950 options.writeToParcel(data, 0);
1951 } else {
1952 data.writeInt(0);
1953 }
Dianne Hackborn41203752012-08-31 14:05:51 -07001954 data.writeInt(userId);
Dianne Hackborn2ccda4d2010-03-22 21:49:15 -07001955 mRemote.transact(START_ACTIVITY_TRANSACTION, data, reply, 0);
1956 reply.readException();
1957 int result = reply.readInt();
1958 reply.recycle();
1959 data.recycle();
1960 return result;
1961 }
Dianne Hackbornfa82f222009-09-17 15:14:12 -07001962 public int startActivityIntentSender(IApplicationThread caller,
1963 IntentSender intent, Intent fillInIntent, String resolvedType,
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07001964 IBinder resultTo, String resultWho, int requestCode,
Dianne Hackborna4972e92012-03-14 10:38:05 -07001965 int flagsMask, int flagsValues, Bundle options) throws RemoteException {
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07001966 Parcel data = Parcel.obtain();
1967 Parcel reply = Parcel.obtain();
1968 data.writeInterfaceToken(IActivityManager.descriptor);
1969 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
1970 intent.writeToParcel(data, 0);
1971 if (fillInIntent != null) {
1972 data.writeInt(1);
1973 fillInIntent.writeToParcel(data, 0);
1974 } else {
1975 data.writeInt(0);
1976 }
1977 data.writeString(resolvedType);
1978 data.writeStrongBinder(resultTo);
1979 data.writeString(resultWho);
1980 data.writeInt(requestCode);
1981 data.writeInt(flagsMask);
1982 data.writeInt(flagsValues);
Dianne Hackborna4972e92012-03-14 10:38:05 -07001983 if (options != null) {
1984 data.writeInt(1);
1985 options.writeToParcel(data, 0);
1986 } else {
1987 data.writeInt(0);
1988 }
Dianne Hackbornfa82f222009-09-17 15:14:12 -07001989 mRemote.transact(START_ACTIVITY_INTENT_SENDER_TRANSACTION, data, reply, 0);
Dianne Hackbornbcbcaa72009-09-10 10:54:46 -07001990 reply.readException();
1991 int result = reply.readInt();
1992 reply.recycle();
1993 data.recycle();
1994 return result;
1995 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001996 public boolean startNextMatchingActivity(IBinder callingActivity,
Dianne Hackborna4972e92012-03-14 10:38:05 -07001997 Intent intent, Bundle options) throws RemoteException {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001998 Parcel data = Parcel.obtain();
1999 Parcel reply = Parcel.obtain();
2000 data.writeInterfaceToken(IActivityManager.descriptor);
2001 data.writeStrongBinder(callingActivity);
2002 intent.writeToParcel(data, 0);
Dianne Hackborna4972e92012-03-14 10:38:05 -07002003 if (options != null) {
2004 data.writeInt(1);
2005 options.writeToParcel(data, 0);
2006 } else {
2007 data.writeInt(0);
2008 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002009 mRemote.transact(START_NEXT_MATCHING_ACTIVITY_TRANSACTION, data, reply, 0);
2010 reply.readException();
2011 int result = reply.readInt();
2012 reply.recycle();
2013 data.recycle();
2014 return result != 0;
2015 }
2016 public boolean finishActivity(IBinder token, int resultCode, Intent resultData)
2017 throws RemoteException {
2018 Parcel data = Parcel.obtain();
2019 Parcel reply = Parcel.obtain();
2020 data.writeInterfaceToken(IActivityManager.descriptor);
2021 data.writeStrongBinder(token);
2022 data.writeInt(resultCode);
2023 if (resultData != null) {
2024 data.writeInt(1);
2025 resultData.writeToParcel(data, 0);
2026 } else {
2027 data.writeInt(0);
2028 }
2029 mRemote.transact(FINISH_ACTIVITY_TRANSACTION, data, reply, 0);
2030 reply.readException();
2031 boolean res = reply.readInt() != 0;
2032 data.recycle();
2033 reply.recycle();
2034 return res;
2035 }
2036 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException
2037 {
2038 Parcel data = Parcel.obtain();
2039 Parcel reply = Parcel.obtain();
2040 data.writeInterfaceToken(IActivityManager.descriptor);
2041 data.writeStrongBinder(token);
2042 data.writeString(resultWho);
2043 data.writeInt(requestCode);
2044 mRemote.transact(FINISH_SUB_ACTIVITY_TRANSACTION, data, reply, 0);
2045 reply.readException();
2046 data.recycle();
2047 reply.recycle();
2048 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002049 public boolean finishActivityAffinity(IBinder token) throws RemoteException {
2050 Parcel data = Parcel.obtain();
2051 Parcel reply = Parcel.obtain();
2052 data.writeInterfaceToken(IActivityManager.descriptor);
2053 data.writeStrongBinder(token);
2054 mRemote.transact(FINISH_ACTIVITY_AFFINITY_TRANSACTION, data, reply, 0);
2055 reply.readException();
2056 boolean res = reply.readInt() != 0;
2057 data.recycle();
2058 reply.recycle();
2059 return res;
2060 }
Dianne Hackborn061d58a2010-03-12 15:07:06 -08002061 public boolean willActivityBeVisible(IBinder token) throws RemoteException {
2062 Parcel data = Parcel.obtain();
2063 Parcel reply = Parcel.obtain();
2064 data.writeInterfaceToken(IActivityManager.descriptor);
2065 data.writeStrongBinder(token);
2066 mRemote.transact(WILL_ACTIVITY_BE_VISIBLE_TRANSACTION, data, reply, 0);
2067 reply.readException();
2068 boolean res = reply.readInt() != 0;
2069 data.recycle();
2070 reply.recycle();
2071 return res;
2072 }
Dianne Hackborn6c418d52011-06-29 14:05:33 -07002073 public Intent registerReceiver(IApplicationThread caller, String packageName,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002074 IIntentReceiver receiver,
Dianne Hackborn20e80982012-08-31 19:00:44 -07002075 IntentFilter filter, String perm, int userId) throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002076 {
2077 Parcel data = Parcel.obtain();
2078 Parcel reply = Parcel.obtain();
2079 data.writeInterfaceToken(IActivityManager.descriptor);
2080 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
Dianne Hackborn6c418d52011-06-29 14:05:33 -07002081 data.writeString(packageName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002082 data.writeStrongBinder(receiver != null ? receiver.asBinder() : null);
2083 filter.writeToParcel(data, 0);
2084 data.writeString(perm);
Dianne Hackborn20e80982012-08-31 19:00:44 -07002085 data.writeInt(userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002086 mRemote.transact(REGISTER_RECEIVER_TRANSACTION, data, reply, 0);
2087 reply.readException();
2088 Intent intent = null;
2089 int haveIntent = reply.readInt();
2090 if (haveIntent != 0) {
2091 intent = Intent.CREATOR.createFromParcel(reply);
2092 }
2093 reply.recycle();
2094 data.recycle();
2095 return intent;
2096 }
2097 public void unregisterReceiver(IIntentReceiver receiver) throws RemoteException
2098 {
2099 Parcel data = Parcel.obtain();
2100 Parcel reply = Parcel.obtain();
2101 data.writeInterfaceToken(IActivityManager.descriptor);
2102 data.writeStrongBinder(receiver.asBinder());
2103 mRemote.transact(UNREGISTER_RECEIVER_TRANSACTION, data, reply, 0);
2104 reply.readException();
2105 data.recycle();
2106 reply.recycle();
2107 }
2108 public int broadcastIntent(IApplicationThread caller,
2109 Intent intent, String resolvedType, IIntentReceiver resultTo,
2110 int resultCode, String resultData, Bundle map,
2111 String requiredPermission, boolean serialized,
Amith Yamasani742a6712011-05-04 14:49:28 -07002112 boolean sticky, int userId) throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002113 {
2114 Parcel data = Parcel.obtain();
2115 Parcel reply = Parcel.obtain();
2116 data.writeInterfaceToken(IActivityManager.descriptor);
2117 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
2118 intent.writeToParcel(data, 0);
2119 data.writeString(resolvedType);
2120 data.writeStrongBinder(resultTo != null ? resultTo.asBinder() : null);
2121 data.writeInt(resultCode);
2122 data.writeString(resultData);
2123 data.writeBundle(map);
2124 data.writeString(requiredPermission);
2125 data.writeInt(serialized ? 1 : 0);
2126 data.writeInt(sticky ? 1 : 0);
Amith Yamasani742a6712011-05-04 14:49:28 -07002127 data.writeInt(userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002128 mRemote.transact(BROADCAST_INTENT_TRANSACTION, data, reply, 0);
2129 reply.readException();
2130 int res = reply.readInt();
2131 reply.recycle();
2132 data.recycle();
2133 return res;
2134 }
Amith Yamasani742a6712011-05-04 14:49:28 -07002135 public void unbroadcastIntent(IApplicationThread caller, Intent intent, int userId)
2136 throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002137 {
2138 Parcel data = Parcel.obtain();
2139 Parcel reply = Parcel.obtain();
2140 data.writeInterfaceToken(IActivityManager.descriptor);
2141 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
2142 intent.writeToParcel(data, 0);
Amith Yamasani742a6712011-05-04 14:49:28 -07002143 data.writeInt(userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002144 mRemote.transact(UNBROADCAST_INTENT_TRANSACTION, data, reply, 0);
2145 reply.readException();
2146 data.recycle();
2147 reply.recycle();
2148 }
2149 public void finishReceiver(IBinder who, int resultCode, String resultData, Bundle map, boolean abortBroadcast) throws RemoteException
2150 {
2151 Parcel data = Parcel.obtain();
2152 Parcel reply = Parcel.obtain();
2153 data.writeInterfaceToken(IActivityManager.descriptor);
2154 data.writeStrongBinder(who);
2155 data.writeInt(resultCode);
2156 data.writeString(resultData);
2157 data.writeBundle(map);
2158 data.writeInt(abortBroadcast ? 1 : 0);
2159 mRemote.transact(FINISH_RECEIVER_TRANSACTION, data, reply, IBinder.FLAG_ONEWAY);
2160 reply.readException();
2161 data.recycle();
2162 reply.recycle();
2163 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002164 public void attachApplication(IApplicationThread app) throws RemoteException
2165 {
2166 Parcel data = Parcel.obtain();
2167 Parcel reply = Parcel.obtain();
2168 data.writeInterfaceToken(IActivityManager.descriptor);
2169 data.writeStrongBinder(app.asBinder());
2170 mRemote.transact(ATTACH_APPLICATION_TRANSACTION, data, reply, 0);
2171 reply.readException();
2172 data.recycle();
2173 reply.recycle();
2174 }
Dianne Hackborn62f20ec2011-08-15 17:40:28 -07002175 public void activityIdle(IBinder token, Configuration config, boolean stopProfiling)
2176 throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002177 {
2178 Parcel data = Parcel.obtain();
2179 Parcel reply = Parcel.obtain();
2180 data.writeInterfaceToken(IActivityManager.descriptor);
2181 data.writeStrongBinder(token);
Dianne Hackborne88846e2009-09-30 21:34:25 -07002182 if (config != null) {
2183 data.writeInt(1);
2184 config.writeToParcel(data, 0);
2185 } else {
2186 data.writeInt(0);
2187 }
Dianne Hackborn62f20ec2011-08-15 17:40:28 -07002188 data.writeInt(stopProfiling ? 1 : 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002189 mRemote.transact(ACTIVITY_IDLE_TRANSACTION, data, reply, IBinder.FLAG_ONEWAY);
2190 reply.readException();
2191 data.recycle();
2192 reply.recycle();
2193 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002194 public void activityResumed(IBinder token) throws RemoteException
2195 {
2196 Parcel data = Parcel.obtain();
2197 Parcel reply = Parcel.obtain();
2198 data.writeInterfaceToken(IActivityManager.descriptor);
2199 data.writeStrongBinder(token);
2200 mRemote.transact(ACTIVITY_RESUMED_TRANSACTION, data, reply, 0);
2201 reply.readException();
2202 data.recycle();
2203 reply.recycle();
2204 }
Dianne Hackborn0aae2d42010-12-07 23:51:29 -08002205 public void activityPaused(IBinder token) throws RemoteException
2206 {
2207 Parcel data = Parcel.obtain();
2208 Parcel reply = Parcel.obtain();
2209 data.writeInterfaceToken(IActivityManager.descriptor);
2210 data.writeStrongBinder(token);
2211 mRemote.transact(ACTIVITY_PAUSED_TRANSACTION, data, reply, 0);
2212 reply.readException();
2213 data.recycle();
2214 reply.recycle();
2215 }
2216 public void activityStopped(IBinder token, Bundle state,
2217 Bitmap thumbnail, CharSequence description) throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002218 {
2219 Parcel data = Parcel.obtain();
2220 Parcel reply = Parcel.obtain();
2221 data.writeInterfaceToken(IActivityManager.descriptor);
2222 data.writeStrongBinder(token);
2223 data.writeBundle(state);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002224 if (thumbnail != null) {
2225 data.writeInt(1);
2226 thumbnail.writeToParcel(data, 0);
2227 } else {
2228 data.writeInt(0);
2229 }
2230 TextUtils.writeToParcel(description, data, 0);
2231 mRemote.transact(ACTIVITY_STOPPED_TRANSACTION, data, reply, IBinder.FLAG_ONEWAY);
2232 reply.readException();
2233 data.recycle();
2234 reply.recycle();
2235 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002236 public void activitySlept(IBinder token) throws RemoteException
2237 {
2238 Parcel data = Parcel.obtain();
2239 Parcel reply = Parcel.obtain();
2240 data.writeInterfaceToken(IActivityManager.descriptor);
2241 data.writeStrongBinder(token);
2242 mRemote.transact(ACTIVITY_SLEPT_TRANSACTION, data, reply, IBinder.FLAG_ONEWAY);
2243 reply.readException();
2244 data.recycle();
2245 reply.recycle();
2246 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002247 public void activityDestroyed(IBinder token) throws RemoteException
2248 {
2249 Parcel data = Parcel.obtain();
2250 Parcel reply = Parcel.obtain();
2251 data.writeInterfaceToken(IActivityManager.descriptor);
2252 data.writeStrongBinder(token);
2253 mRemote.transact(ACTIVITY_DESTROYED_TRANSACTION, data, reply, IBinder.FLAG_ONEWAY);
2254 reply.readException();
2255 data.recycle();
2256 reply.recycle();
2257 }
2258 public String getCallingPackage(IBinder token) throws RemoteException
2259 {
2260 Parcel data = Parcel.obtain();
2261 Parcel reply = Parcel.obtain();
2262 data.writeInterfaceToken(IActivityManager.descriptor);
2263 data.writeStrongBinder(token);
2264 mRemote.transact(GET_CALLING_PACKAGE_TRANSACTION, data, reply, 0);
2265 reply.readException();
2266 String res = reply.readString();
2267 data.recycle();
2268 reply.recycle();
2269 return res;
2270 }
2271 public ComponentName getCallingActivity(IBinder token)
2272 throws RemoteException {
2273 Parcel data = Parcel.obtain();
2274 Parcel reply = Parcel.obtain();
2275 data.writeInterfaceToken(IActivityManager.descriptor);
2276 data.writeStrongBinder(token);
2277 mRemote.transact(GET_CALLING_ACTIVITY_TRANSACTION, data, reply, 0);
2278 reply.readException();
2279 ComponentName res = ComponentName.readFromParcel(reply);
2280 data.recycle();
2281 reply.recycle();
2282 return res;
2283 }
2284 public List getTasks(int maxNum, int flags,
2285 IThumbnailReceiver receiver) throws RemoteException {
2286 Parcel data = Parcel.obtain();
2287 Parcel reply = Parcel.obtain();
2288 data.writeInterfaceToken(IActivityManager.descriptor);
2289 data.writeInt(maxNum);
2290 data.writeInt(flags);
2291 data.writeStrongBinder(receiver != null ? receiver.asBinder() : null);
2292 mRemote.transact(GET_TASKS_TRANSACTION, data, reply, 0);
2293 reply.readException();
2294 ArrayList list = null;
2295 int N = reply.readInt();
2296 if (N >= 0) {
2297 list = new ArrayList();
2298 while (N > 0) {
2299 ActivityManager.RunningTaskInfo info =
2300 ActivityManager.RunningTaskInfo.CREATOR
2301 .createFromParcel(reply);
2302 list.add(info);
2303 N--;
2304 }
2305 }
2306 data.recycle();
2307 reply.recycle();
2308 return list;
2309 }
2310 public List<ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum,
Amith Yamasani82644082012-08-03 13:09:11 -07002311 int flags, int userId) throws RemoteException {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002312 Parcel data = Parcel.obtain();
2313 Parcel reply = Parcel.obtain();
2314 data.writeInterfaceToken(IActivityManager.descriptor);
2315 data.writeInt(maxNum);
2316 data.writeInt(flags);
Amith Yamasani82644082012-08-03 13:09:11 -07002317 data.writeInt(userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002318 mRemote.transact(GET_RECENT_TASKS_TRANSACTION, data, reply, 0);
2319 reply.readException();
2320 ArrayList<ActivityManager.RecentTaskInfo> list
2321 = reply.createTypedArrayList(ActivityManager.RecentTaskInfo.CREATOR);
2322 data.recycle();
2323 reply.recycle();
2324 return list;
2325 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002326 public ActivityManager.TaskThumbnails getTaskThumbnails(int id) throws RemoteException {
Dianne Hackbornd94df452011-02-16 18:53:31 -08002327 Parcel data = Parcel.obtain();
2328 Parcel reply = Parcel.obtain();
2329 data.writeInterfaceToken(IActivityManager.descriptor);
2330 data.writeInt(id);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002331 mRemote.transact(GET_TASK_THUMBNAILS_TRANSACTION, data, reply, 0);
Dianne Hackbornd94df452011-02-16 18:53:31 -08002332 reply.readException();
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002333 ActivityManager.TaskThumbnails bm = null;
Dianne Hackbornd94df452011-02-16 18:53:31 -08002334 if (reply.readInt() != 0) {
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002335 bm = ActivityManager.TaskThumbnails.CREATOR.createFromParcel(reply);
Dianne Hackbornd94df452011-02-16 18:53:31 -08002336 }
2337 data.recycle();
2338 reply.recycle();
2339 return bm;
2340 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07002341 public Bitmap getTaskTopThumbnail(int id) throws RemoteException {
2342 Parcel data = Parcel.obtain();
2343 Parcel reply = Parcel.obtain();
2344 data.writeInterfaceToken(IActivityManager.descriptor);
2345 data.writeInt(id);
2346 mRemote.transact(GET_TASK_TOP_THUMBNAIL_TRANSACTION, data, reply, 0);
2347 reply.readException();
2348 Bitmap bm = null;
2349 if (reply.readInt() != 0) {
2350 bm = Bitmap.CREATOR.createFromParcel(reply);
2351 }
2352 data.recycle();
2353 reply.recycle();
2354 return bm;
2355 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002356 public List getServices(int maxNum, int flags) throws RemoteException {
2357 Parcel data = Parcel.obtain();
2358 Parcel reply = Parcel.obtain();
2359 data.writeInterfaceToken(IActivityManager.descriptor);
2360 data.writeInt(maxNum);
2361 data.writeInt(flags);
2362 mRemote.transact(GET_SERVICES_TRANSACTION, data, reply, 0);
2363 reply.readException();
2364 ArrayList list = null;
2365 int N = reply.readInt();
2366 if (N >= 0) {
2367 list = new ArrayList();
2368 while (N > 0) {
2369 ActivityManager.RunningServiceInfo info =
2370 ActivityManager.RunningServiceInfo.CREATOR
2371 .createFromParcel(reply);
2372 list.add(info);
2373 N--;
2374 }
2375 }
2376 data.recycle();
2377 reply.recycle();
2378 return list;
2379 }
2380 public List<ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState()
2381 throws RemoteException {
2382 Parcel data = Parcel.obtain();
2383 Parcel reply = Parcel.obtain();
2384 data.writeInterfaceToken(IActivityManager.descriptor);
2385 mRemote.transact(GET_PROCESSES_IN_ERROR_STATE_TRANSACTION, data, reply, 0);
2386 reply.readException();
2387 ArrayList<ActivityManager.ProcessErrorStateInfo> list
2388 = reply.createTypedArrayList(ActivityManager.ProcessErrorStateInfo.CREATOR);
2389 data.recycle();
2390 reply.recycle();
2391 return list;
2392 }
2393 public List<ActivityManager.RunningAppProcessInfo> getRunningAppProcesses()
2394 throws RemoteException {
2395 Parcel data = Parcel.obtain();
2396 Parcel reply = Parcel.obtain();
2397 data.writeInterfaceToken(IActivityManager.descriptor);
2398 mRemote.transact(GET_RUNNING_APP_PROCESSES_TRANSACTION, data, reply, 0);
2399 reply.readException();
2400 ArrayList<ActivityManager.RunningAppProcessInfo> list
2401 = reply.createTypedArrayList(ActivityManager.RunningAppProcessInfo.CREATOR);
2402 data.recycle();
2403 reply.recycle();
2404 return list;
2405 }
Suchi Amalapurapuf7f5dda2010-03-23 10:34:28 -07002406 public List<ApplicationInfo> getRunningExternalApplications()
2407 throws RemoteException {
2408 Parcel data = Parcel.obtain();
2409 Parcel reply = Parcel.obtain();
2410 data.writeInterfaceToken(IActivityManager.descriptor);
2411 mRemote.transact(GET_RUNNING_EXTERNAL_APPLICATIONS_TRANSACTION, data, reply, 0);
2412 reply.readException();
2413 ArrayList<ApplicationInfo> list
2414 = reply.createTypedArrayList(ApplicationInfo.CREATOR);
2415 data.recycle();
2416 reply.recycle();
2417 return list;
2418 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002419 public void moveTaskToFront(int task, int flags, Bundle options) throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002420 {
2421 Parcel data = Parcel.obtain();
2422 Parcel reply = Parcel.obtain();
2423 data.writeInterfaceToken(IActivityManager.descriptor);
2424 data.writeInt(task);
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002425 data.writeInt(flags);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002426 if (options != null) {
2427 data.writeInt(1);
2428 options.writeToParcel(data, 0);
2429 } else {
2430 data.writeInt(0);
2431 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002432 mRemote.transact(MOVE_TASK_TO_FRONT_TRANSACTION, data, reply, 0);
2433 reply.readException();
2434 data.recycle();
2435 reply.recycle();
2436 }
2437 public void moveTaskToBack(int task) throws RemoteException
2438 {
2439 Parcel data = Parcel.obtain();
2440 Parcel reply = Parcel.obtain();
2441 data.writeInterfaceToken(IActivityManager.descriptor);
2442 data.writeInt(task);
2443 mRemote.transact(MOVE_TASK_TO_BACK_TRANSACTION, data, reply, 0);
2444 reply.readException();
2445 data.recycle();
2446 reply.recycle();
2447 }
2448 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot)
2449 throws RemoteException {
2450 Parcel data = Parcel.obtain();
2451 Parcel reply = Parcel.obtain();
2452 data.writeInterfaceToken(IActivityManager.descriptor);
2453 data.writeStrongBinder(token);
2454 data.writeInt(nonRoot ? 1 : 0);
2455 mRemote.transact(MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION, data, reply, 0);
2456 reply.readException();
2457 boolean res = reply.readInt() != 0;
2458 data.recycle();
2459 reply.recycle();
2460 return res;
2461 }
2462 public void moveTaskBackwards(int task) throws RemoteException
2463 {
2464 Parcel data = Parcel.obtain();
2465 Parcel reply = Parcel.obtain();
2466 data.writeInterfaceToken(IActivityManager.descriptor);
2467 data.writeInt(task);
2468 mRemote.transact(MOVE_TASK_BACKWARDS_TRANSACTION, data, reply, 0);
2469 reply.readException();
2470 data.recycle();
2471 reply.recycle();
2472 }
2473 public int getTaskForActivity(IBinder token, boolean onlyRoot) throws RemoteException
2474 {
2475 Parcel data = Parcel.obtain();
2476 Parcel reply = Parcel.obtain();
2477 data.writeInterfaceToken(IActivityManager.descriptor);
2478 data.writeStrongBinder(token);
2479 data.writeInt(onlyRoot ? 1 : 0);
2480 mRemote.transact(GET_TASK_FOR_ACTIVITY_TRANSACTION, data, reply, 0);
2481 reply.readException();
2482 int res = reply.readInt();
2483 data.recycle();
2484 reply.recycle();
2485 return res;
2486 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002487 public void reportThumbnail(IBinder token,
2488 Bitmap thumbnail, CharSequence description) throws RemoteException
2489 {
2490 Parcel data = Parcel.obtain();
2491 Parcel reply = Parcel.obtain();
2492 data.writeInterfaceToken(IActivityManager.descriptor);
2493 data.writeStrongBinder(token);
2494 if (thumbnail != null) {
2495 data.writeInt(1);
2496 thumbnail.writeToParcel(data, 0);
2497 } else {
2498 data.writeInt(0);
2499 }
2500 TextUtils.writeToParcel(description, data, 0);
2501 mRemote.transact(REPORT_THUMBNAIL_TRANSACTION, data, reply, IBinder.FLAG_ONEWAY);
2502 reply.readException();
2503 data.recycle();
2504 reply.recycle();
2505 }
2506 public ContentProviderHolder getContentProvider(IApplicationThread caller,
Jeff Sharkey6d515712012-09-20 16:06:08 -07002507 String name, int userId, boolean stable) throws RemoteException {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002508 Parcel data = Parcel.obtain();
2509 Parcel reply = Parcel.obtain();
2510 data.writeInterfaceToken(IActivityManager.descriptor);
2511 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
2512 data.writeString(name);
Jeff Sharkey6d515712012-09-20 16:06:08 -07002513 data.writeInt(userId);
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07002514 data.writeInt(stable ? 1 : 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002515 mRemote.transact(GET_CONTENT_PROVIDER_TRANSACTION, data, reply, 0);
2516 reply.readException();
2517 int res = reply.readInt();
2518 ContentProviderHolder cph = null;
2519 if (res != 0) {
2520 cph = ContentProviderHolder.CREATOR.createFromParcel(reply);
2521 }
2522 data.recycle();
2523 reply.recycle();
2524 return cph;
2525 }
Jeff Sharkey6d515712012-09-20 16:06:08 -07002526 public ContentProviderHolder getContentProviderExternal(String name, int userId, IBinder token)
2527 throws RemoteException {
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002528 Parcel data = Parcel.obtain();
2529 Parcel reply = Parcel.obtain();
2530 data.writeInterfaceToken(IActivityManager.descriptor);
2531 data.writeString(name);
Jeff Sharkey6d515712012-09-20 16:06:08 -07002532 data.writeInt(userId);
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002533 data.writeStrongBinder(token);
2534 mRemote.transact(GET_CONTENT_PROVIDER_EXTERNAL_TRANSACTION, data, reply, 0);
2535 reply.readException();
2536 int res = reply.readInt();
2537 ContentProviderHolder cph = null;
2538 if (res != 0) {
2539 cph = ContentProviderHolder.CREATOR.createFromParcel(reply);
2540 }
2541 data.recycle();
2542 reply.recycle();
2543 return cph;
2544 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002545 public void publishContentProviders(IApplicationThread caller,
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07002546 List<ContentProviderHolder> providers) throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002547 {
2548 Parcel data = Parcel.obtain();
2549 Parcel reply = Parcel.obtain();
2550 data.writeInterfaceToken(IActivityManager.descriptor);
2551 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
2552 data.writeTypedList(providers);
2553 mRemote.transact(PUBLISH_CONTENT_PROVIDERS_TRANSACTION, data, reply, 0);
2554 reply.readException();
2555 data.recycle();
2556 reply.recycle();
2557 }
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07002558 public boolean refContentProvider(IBinder connection, int stable, int unstable)
2559 throws RemoteException {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002560 Parcel data = Parcel.obtain();
2561 Parcel reply = Parcel.obtain();
2562 data.writeInterfaceToken(IActivityManager.descriptor);
Dianne Hackborn6ae8d182012-05-23 13:12:42 -07002563 data.writeStrongBinder(connection);
2564 data.writeInt(stable);
2565 data.writeInt(unstable);
2566 mRemote.transact(REF_CONTENT_PROVIDER_TRANSACTION, data, reply, 0);
2567 reply.readException();
2568 boolean res = reply.readInt() != 0;
2569 data.recycle();
2570 reply.recycle();
2571 return res;
2572 }
2573 public void unstableProviderDied(IBinder connection) throws RemoteException {
2574 Parcel data = Parcel.obtain();
2575 Parcel reply = Parcel.obtain();
2576 data.writeInterfaceToken(IActivityManager.descriptor);
2577 data.writeStrongBinder(connection);
2578 mRemote.transact(UNSTABLE_PROVIDER_DIED_TRANSACTION, data, reply, 0);
2579 reply.readException();
2580 data.recycle();
2581 reply.recycle();
2582 }
2583
2584 public void removeContentProvider(IBinder connection, boolean stable) throws RemoteException {
2585 Parcel data = Parcel.obtain();
2586 Parcel reply = Parcel.obtain();
2587 data.writeInterfaceToken(IActivityManager.descriptor);
2588 data.writeStrongBinder(connection);
2589 data.writeInt(stable ? 1 : 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002590 mRemote.transact(REMOVE_CONTENT_PROVIDER_TRANSACTION, data, reply, 0);
2591 reply.readException();
2592 data.recycle();
2593 reply.recycle();
2594 }
Svetoslav Ganov25872aa2012-02-03 19:19:09 -08002595
2596 public void removeContentProviderExternal(String name, IBinder token) throws RemoteException {
2597 Parcel data = Parcel.obtain();
2598 Parcel reply = Parcel.obtain();
2599 data.writeInterfaceToken(IActivityManager.descriptor);
2600 data.writeString(name);
2601 data.writeStrongBinder(token);
2602 mRemote.transact(REMOVE_CONTENT_PROVIDER_EXTERNAL_TRANSACTION, data, reply, 0);
2603 reply.readException();
2604 data.recycle();
2605 reply.recycle();
2606 }
2607
Dianne Hackborndd9b82c2009-09-03 00:18:47 -07002608 public PendingIntent getRunningServiceControlPanel(ComponentName service)
2609 throws RemoteException
2610 {
2611 Parcel data = Parcel.obtain();
2612 Parcel reply = Parcel.obtain();
2613 data.writeInterfaceToken(IActivityManager.descriptor);
2614 service.writeToParcel(data, 0);
2615 mRemote.transact(GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION, data, reply, 0);
2616 reply.readException();
2617 PendingIntent res = PendingIntent.readPendingIntentOrNullFromParcel(reply);
2618 data.recycle();
2619 reply.recycle();
2620 return res;
2621 }
2622
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002623 public ComponentName startService(IApplicationThread caller, Intent service,
Dianne Hackborn7767eac2012-08-23 18:25:40 -07002624 String resolvedType, int userId) throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002625 {
2626 Parcel data = Parcel.obtain();
2627 Parcel reply = Parcel.obtain();
2628 data.writeInterfaceToken(IActivityManager.descriptor);
2629 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
2630 service.writeToParcel(data, 0);
2631 data.writeString(resolvedType);
Dianne Hackborn7767eac2012-08-23 18:25:40 -07002632 data.writeInt(userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002633 mRemote.transact(START_SERVICE_TRANSACTION, data, reply, 0);
2634 reply.readException();
2635 ComponentName res = ComponentName.readFromParcel(reply);
2636 data.recycle();
2637 reply.recycle();
2638 return res;
2639 }
2640 public int stopService(IApplicationThread caller, Intent service,
Dianne Hackborn7767eac2012-08-23 18:25:40 -07002641 String resolvedType, int userId) throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002642 {
2643 Parcel data = Parcel.obtain();
2644 Parcel reply = Parcel.obtain();
2645 data.writeInterfaceToken(IActivityManager.descriptor);
2646 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
2647 service.writeToParcel(data, 0);
2648 data.writeString(resolvedType);
Dianne Hackborn7767eac2012-08-23 18:25:40 -07002649 data.writeInt(userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002650 mRemote.transact(STOP_SERVICE_TRANSACTION, data, reply, 0);
2651 reply.readException();
2652 int res = reply.readInt();
2653 reply.recycle();
2654 data.recycle();
2655 return res;
2656 }
2657 public boolean stopServiceToken(ComponentName className, IBinder token,
2658 int startId) throws RemoteException {
2659 Parcel data = Parcel.obtain();
2660 Parcel reply = Parcel.obtain();
2661 data.writeInterfaceToken(IActivityManager.descriptor);
2662 ComponentName.writeToParcel(className, data);
2663 data.writeStrongBinder(token);
2664 data.writeInt(startId);
2665 mRemote.transact(STOP_SERVICE_TOKEN_TRANSACTION, data, reply, 0);
2666 reply.readException();
2667 boolean res = reply.readInt() != 0;
2668 data.recycle();
2669 reply.recycle();
2670 return res;
2671 }
2672 public void setServiceForeground(ComponentName className, IBinder token,
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07002673 int id, Notification notification, boolean removeNotification) throws RemoteException {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002674 Parcel data = Parcel.obtain();
2675 Parcel reply = Parcel.obtain();
2676 data.writeInterfaceToken(IActivityManager.descriptor);
2677 ComponentName.writeToParcel(className, data);
2678 data.writeStrongBinder(token);
Dianne Hackbornd8a43f62009-08-17 23:33:56 -07002679 data.writeInt(id);
2680 if (notification != null) {
2681 data.writeInt(1);
2682 notification.writeToParcel(data, 0);
2683 } else {
2684 data.writeInt(0);
2685 }
2686 data.writeInt(removeNotification ? 1 : 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002687 mRemote.transact(SET_SERVICE_FOREGROUND_TRANSACTION, data, reply, 0);
2688 reply.readException();
2689 data.recycle();
2690 reply.recycle();
2691 }
2692 public int bindService(IApplicationThread caller, IBinder token,
2693 Intent service, String resolvedType, IServiceConnection connection,
Amith Yamasani37ce3a82012-02-06 12:04:42 -08002694 int flags, int userId) throws RemoteException {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002695 Parcel data = Parcel.obtain();
2696 Parcel reply = Parcel.obtain();
2697 data.writeInterfaceToken(IActivityManager.descriptor);
2698 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
2699 data.writeStrongBinder(token);
2700 service.writeToParcel(data, 0);
2701 data.writeString(resolvedType);
2702 data.writeStrongBinder(connection.asBinder());
2703 data.writeInt(flags);
Amith Yamasani37ce3a82012-02-06 12:04:42 -08002704 data.writeInt(userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002705 mRemote.transact(BIND_SERVICE_TRANSACTION, data, reply, 0);
2706 reply.readException();
2707 int res = reply.readInt();
2708 data.recycle();
2709 reply.recycle();
2710 return res;
2711 }
2712 public boolean unbindService(IServiceConnection connection) throws RemoteException
2713 {
2714 Parcel data = Parcel.obtain();
2715 Parcel reply = Parcel.obtain();
2716 data.writeInterfaceToken(IActivityManager.descriptor);
2717 data.writeStrongBinder(connection.asBinder());
2718 mRemote.transact(UNBIND_SERVICE_TRANSACTION, data, reply, 0);
2719 reply.readException();
2720 boolean res = reply.readInt() != 0;
2721 data.recycle();
2722 reply.recycle();
2723 return res;
2724 }
2725
2726 public void publishService(IBinder token,
2727 Intent intent, IBinder service) throws RemoteException {
2728 Parcel data = Parcel.obtain();
2729 Parcel reply = Parcel.obtain();
2730 data.writeInterfaceToken(IActivityManager.descriptor);
2731 data.writeStrongBinder(token);
2732 intent.writeToParcel(data, 0);
2733 data.writeStrongBinder(service);
2734 mRemote.transact(PUBLISH_SERVICE_TRANSACTION, data, reply, 0);
2735 reply.readException();
2736 data.recycle();
2737 reply.recycle();
2738 }
2739
2740 public void unbindFinished(IBinder token, Intent intent, boolean doRebind)
2741 throws RemoteException {
2742 Parcel data = Parcel.obtain();
2743 Parcel reply = Parcel.obtain();
2744 data.writeInterfaceToken(IActivityManager.descriptor);
2745 data.writeStrongBinder(token);
2746 intent.writeToParcel(data, 0);
2747 data.writeInt(doRebind ? 1 : 0);
2748 mRemote.transact(UNBIND_FINISHED_TRANSACTION, data, reply, 0);
2749 reply.readException();
2750 data.recycle();
2751 reply.recycle();
2752 }
2753
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07002754 public void serviceDoneExecuting(IBinder token, int type, int startId,
2755 int res) throws RemoteException {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002756 Parcel data = Parcel.obtain();
2757 Parcel reply = Parcel.obtain();
2758 data.writeInterfaceToken(IActivityManager.descriptor);
2759 data.writeStrongBinder(token);
Dianne Hackbornf6f9f2d2009-08-21 16:26:03 -07002760 data.writeInt(type);
2761 data.writeInt(startId);
2762 data.writeInt(res);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002763 mRemote.transact(SERVICE_DONE_EXECUTING_TRANSACTION, data, reply, IBinder.FLAG_ONEWAY);
2764 reply.readException();
2765 data.recycle();
2766 reply.recycle();
2767 }
2768
2769 public IBinder peekService(Intent service, String resolvedType) throws RemoteException {
2770 Parcel data = Parcel.obtain();
2771 Parcel reply = Parcel.obtain();
2772 data.writeInterfaceToken(IActivityManager.descriptor);
2773 service.writeToParcel(data, 0);
2774 data.writeString(resolvedType);
2775 mRemote.transact(PEEK_SERVICE_TRANSACTION, data, reply, 0);
2776 reply.readException();
2777 IBinder binder = reply.readStrongBinder();
2778 reply.recycle();
2779 data.recycle();
2780 return binder;
2781 }
2782
Christopher Tate181fafa2009-05-14 11:12:14 -07002783 public boolean bindBackupAgent(ApplicationInfo app, int backupRestoreMode)
2784 throws RemoteException {
2785 Parcel data = Parcel.obtain();
2786 Parcel reply = Parcel.obtain();
2787 data.writeInterfaceToken(IActivityManager.descriptor);
2788 app.writeToParcel(data, 0);
2789 data.writeInt(backupRestoreMode);
2790 mRemote.transact(START_BACKUP_AGENT_TRANSACTION, data, reply, 0);
2791 reply.readException();
2792 boolean success = reply.readInt() != 0;
2793 reply.recycle();
2794 data.recycle();
2795 return success;
2796 }
2797
2798 public void backupAgentCreated(String packageName, IBinder agent) throws RemoteException {
2799 Parcel data = Parcel.obtain();
2800 Parcel reply = Parcel.obtain();
2801 data.writeInterfaceToken(IActivityManager.descriptor);
2802 data.writeString(packageName);
2803 data.writeStrongBinder(agent);
2804 mRemote.transact(BACKUP_AGENT_CREATED_TRANSACTION, data, reply, 0);
2805 reply.recycle();
2806 data.recycle();
2807 }
2808
2809 public void unbindBackupAgent(ApplicationInfo app) throws RemoteException {
2810 Parcel data = Parcel.obtain();
2811 Parcel reply = Parcel.obtain();
2812 data.writeInterfaceToken(IActivityManager.descriptor);
2813 app.writeToParcel(data, 0);
2814 mRemote.transact(UNBIND_BACKUP_AGENT_TRANSACTION, data, reply, 0);
2815 reply.readException();
2816 reply.recycle();
2817 data.recycle();
2818 }
2819
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002820 public boolean startInstrumentation(ComponentName className, String profileFile,
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07002821 int flags, Bundle arguments, IInstrumentationWatcher watcher, int userId)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002822 throws RemoteException {
2823 Parcel data = Parcel.obtain();
2824 Parcel reply = Parcel.obtain();
2825 data.writeInterfaceToken(IActivityManager.descriptor);
2826 ComponentName.writeToParcel(className, data);
2827 data.writeString(profileFile);
2828 data.writeInt(flags);
2829 data.writeBundle(arguments);
2830 data.writeStrongBinder(watcher != null ? watcher.asBinder() : null);
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07002831 data.writeInt(userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002832 mRemote.transact(START_INSTRUMENTATION_TRANSACTION, data, reply, 0);
2833 reply.readException();
2834 boolean res = reply.readInt() != 0;
2835 reply.recycle();
2836 data.recycle();
2837 return res;
2838 }
2839
2840 public void finishInstrumentation(IApplicationThread target,
2841 int resultCode, Bundle results) throws RemoteException {
2842 Parcel data = Parcel.obtain();
2843 Parcel reply = Parcel.obtain();
2844 data.writeInterfaceToken(IActivityManager.descriptor);
2845 data.writeStrongBinder(target != null ? target.asBinder() : null);
2846 data.writeInt(resultCode);
2847 data.writeBundle(results);
2848 mRemote.transact(FINISH_INSTRUMENTATION_TRANSACTION, data, reply, 0);
2849 reply.readException();
2850 data.recycle();
2851 reply.recycle();
2852 }
2853 public Configuration getConfiguration() throws RemoteException
2854 {
2855 Parcel data = Parcel.obtain();
2856 Parcel reply = Parcel.obtain();
2857 data.writeInterfaceToken(IActivityManager.descriptor);
2858 mRemote.transact(GET_CONFIGURATION_TRANSACTION, data, reply, 0);
2859 reply.readException();
2860 Configuration res = Configuration.CREATOR.createFromParcel(reply);
2861 reply.recycle();
2862 data.recycle();
2863 return res;
2864 }
2865 public void updateConfiguration(Configuration values) throws RemoteException
2866 {
2867 Parcel data = Parcel.obtain();
2868 Parcel reply = Parcel.obtain();
2869 data.writeInterfaceToken(IActivityManager.descriptor);
2870 values.writeToParcel(data, 0);
2871 mRemote.transact(UPDATE_CONFIGURATION_TRANSACTION, data, reply, 0);
2872 reply.readException();
2873 data.recycle();
2874 reply.recycle();
2875 }
2876 public void setRequestedOrientation(IBinder token, int requestedOrientation)
2877 throws RemoteException {
2878 Parcel data = Parcel.obtain();
2879 Parcel reply = Parcel.obtain();
2880 data.writeInterfaceToken(IActivityManager.descriptor);
2881 data.writeStrongBinder(token);
2882 data.writeInt(requestedOrientation);
2883 mRemote.transact(SET_REQUESTED_ORIENTATION_TRANSACTION, data, reply, 0);
2884 reply.readException();
2885 data.recycle();
2886 reply.recycle();
2887 }
2888 public int getRequestedOrientation(IBinder token) throws RemoteException {
2889 Parcel data = Parcel.obtain();
2890 Parcel reply = Parcel.obtain();
2891 data.writeInterfaceToken(IActivityManager.descriptor);
2892 data.writeStrongBinder(token);
2893 mRemote.transact(GET_REQUESTED_ORIENTATION_TRANSACTION, data, reply, 0);
2894 reply.readException();
2895 int res = reply.readInt();
2896 data.recycle();
2897 reply.recycle();
2898 return res;
2899 }
2900 public ComponentName getActivityClassForToken(IBinder token)
2901 throws RemoteException {
2902 Parcel data = Parcel.obtain();
2903 Parcel reply = Parcel.obtain();
2904 data.writeInterfaceToken(IActivityManager.descriptor);
2905 data.writeStrongBinder(token);
2906 mRemote.transact(GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION, data, reply, 0);
2907 reply.readException();
2908 ComponentName res = ComponentName.readFromParcel(reply);
2909 data.recycle();
2910 reply.recycle();
2911 return res;
2912 }
2913 public String getPackageForToken(IBinder token) throws RemoteException
2914 {
2915 Parcel data = Parcel.obtain();
2916 Parcel reply = Parcel.obtain();
2917 data.writeInterfaceToken(IActivityManager.descriptor);
2918 data.writeStrongBinder(token);
2919 mRemote.transact(GET_PACKAGE_FOR_TOKEN_TRANSACTION, data, reply, 0);
2920 reply.readException();
2921 String res = reply.readString();
2922 data.recycle();
2923 reply.recycle();
2924 return res;
2925 }
2926 public IIntentSender getIntentSender(int type,
2927 String packageName, IBinder token, String resultWho,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002928 int requestCode, Intent[] intents, String[] resolvedTypes, int flags,
Dianne Hackborn41203752012-08-31 14:05:51 -07002929 Bundle options, int userId) throws RemoteException {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002930 Parcel data = Parcel.obtain();
2931 Parcel reply = Parcel.obtain();
2932 data.writeInterfaceToken(IActivityManager.descriptor);
2933 data.writeInt(type);
2934 data.writeString(packageName);
2935 data.writeStrongBinder(token);
2936 data.writeString(resultWho);
2937 data.writeInt(requestCode);
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002938 if (intents != null) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002939 data.writeInt(1);
Dianne Hackborn621e17d2010-11-22 15:59:56 -08002940 data.writeTypedArray(intents, 0);
2941 data.writeStringArray(resolvedTypes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002942 } else {
2943 data.writeInt(0);
2944 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002945 data.writeInt(flags);
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002946 if (options != null) {
2947 data.writeInt(1);
2948 options.writeToParcel(data, 0);
2949 } else {
2950 data.writeInt(0);
2951 }
Dianne Hackborn41203752012-08-31 14:05:51 -07002952 data.writeInt(userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002953 mRemote.transact(GET_INTENT_SENDER_TRANSACTION, data, reply, 0);
2954 reply.readException();
2955 IIntentSender res = IIntentSender.Stub.asInterface(
2956 reply.readStrongBinder());
2957 data.recycle();
2958 reply.recycle();
2959 return res;
2960 }
2961 public void cancelIntentSender(IIntentSender sender) throws RemoteException {
2962 Parcel data = Parcel.obtain();
2963 Parcel reply = Parcel.obtain();
2964 data.writeInterfaceToken(IActivityManager.descriptor);
2965 data.writeStrongBinder(sender.asBinder());
2966 mRemote.transact(CANCEL_INTENT_SENDER_TRANSACTION, data, reply, 0);
2967 reply.readException();
2968 data.recycle();
2969 reply.recycle();
2970 }
2971 public String getPackageForIntentSender(IIntentSender sender) throws RemoteException {
2972 Parcel data = Parcel.obtain();
2973 Parcel reply = Parcel.obtain();
2974 data.writeInterfaceToken(IActivityManager.descriptor);
2975 data.writeStrongBinder(sender.asBinder());
2976 mRemote.transact(GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION, data, reply, 0);
2977 reply.readException();
2978 String res = reply.readString();
2979 data.recycle();
2980 reply.recycle();
2981 return res;
2982 }
Christopher Tatec4a07d12012-04-06 14:19:13 -07002983 public int getUidForIntentSender(IIntentSender sender) throws RemoteException {
2984 Parcel data = Parcel.obtain();
2985 Parcel reply = Parcel.obtain();
2986 data.writeInterfaceToken(IActivityManager.descriptor);
2987 data.writeStrongBinder(sender.asBinder());
2988 mRemote.transact(GET_UID_FOR_INTENT_SENDER_TRANSACTION, data, reply, 0);
2989 reply.readException();
2990 int res = reply.readInt();
2991 data.recycle();
2992 reply.recycle();
2993 return res;
2994 }
Dianne Hackborn41203752012-08-31 14:05:51 -07002995 public int handleIncomingUser(int callingPid, int callingUid, int userId, boolean allowAll,
2996 boolean requireFull, String name, String callerPackage) throws RemoteException {
2997 Parcel data = Parcel.obtain();
2998 Parcel reply = Parcel.obtain();
2999 data.writeInterfaceToken(IActivityManager.descriptor);
3000 data.writeInt(callingPid);
3001 data.writeInt(callingUid);
3002 data.writeInt(userId);
3003 data.writeInt(allowAll ? 1 : 0);
3004 data.writeInt(requireFull ? 1 : 0);
3005 data.writeString(name);
3006 data.writeString(callerPackage);
3007 mRemote.transact(HANDLE_INCOMING_USER_TRANSACTION, data, reply, 0);
3008 reply.readException();
3009 int res = reply.readInt();
3010 data.recycle();
3011 reply.recycle();
3012 return res;
3013 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003014 public void setProcessLimit(int max) throws RemoteException
3015 {
3016 Parcel data = Parcel.obtain();
3017 Parcel reply = Parcel.obtain();
3018 data.writeInterfaceToken(IActivityManager.descriptor);
3019 data.writeInt(max);
3020 mRemote.transact(SET_PROCESS_LIMIT_TRANSACTION, data, reply, 0);
3021 reply.readException();
3022 data.recycle();
3023 reply.recycle();
3024 }
3025 public int getProcessLimit() throws RemoteException
3026 {
3027 Parcel data = Parcel.obtain();
3028 Parcel reply = Parcel.obtain();
3029 data.writeInterfaceToken(IActivityManager.descriptor);
3030 mRemote.transact(GET_PROCESS_LIMIT_TRANSACTION, data, reply, 0);
3031 reply.readException();
3032 int res = reply.readInt();
3033 data.recycle();
3034 reply.recycle();
3035 return res;
3036 }
3037 public void setProcessForeground(IBinder token, int pid,
3038 boolean isForeground) throws RemoteException {
3039 Parcel data = Parcel.obtain();
3040 Parcel reply = Parcel.obtain();
3041 data.writeInterfaceToken(IActivityManager.descriptor);
3042 data.writeStrongBinder(token);
3043 data.writeInt(pid);
3044 data.writeInt(isForeground ? 1 : 0);
3045 mRemote.transact(SET_PROCESS_FOREGROUND_TRANSACTION, data, reply, 0);
3046 reply.readException();
3047 data.recycle();
3048 reply.recycle();
3049 }
3050 public int checkPermission(String permission, int pid, int uid)
3051 throws RemoteException {
3052 Parcel data = Parcel.obtain();
3053 Parcel reply = Parcel.obtain();
3054 data.writeInterfaceToken(IActivityManager.descriptor);
3055 data.writeString(permission);
3056 data.writeInt(pid);
3057 data.writeInt(uid);
3058 mRemote.transact(CHECK_PERMISSION_TRANSACTION, data, reply, 0);
3059 reply.readException();
3060 int res = reply.readInt();
3061 data.recycle();
3062 reply.recycle();
3063 return res;
3064 }
3065 public boolean clearApplicationUserData(final String packageName,
Amith Yamasani742a6712011-05-04 14:49:28 -07003066 final IPackageDataObserver observer, final int userId) throws RemoteException {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003067 Parcel data = Parcel.obtain();
3068 Parcel reply = Parcel.obtain();
3069 data.writeInterfaceToken(IActivityManager.descriptor);
3070 data.writeString(packageName);
3071 data.writeStrongBinder(observer.asBinder());
Amith Yamasani742a6712011-05-04 14:49:28 -07003072 data.writeInt(userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003073 mRemote.transact(CLEAR_APP_DATA_TRANSACTION, data, reply, 0);
3074 reply.readException();
3075 boolean res = reply.readInt() != 0;
3076 data.recycle();
3077 reply.recycle();
3078 return res;
3079 }
3080 public int checkUriPermission(Uri uri, int pid, int uid, int mode)
3081 throws RemoteException {
3082 Parcel data = Parcel.obtain();
3083 Parcel reply = Parcel.obtain();
3084 data.writeInterfaceToken(IActivityManager.descriptor);
3085 uri.writeToParcel(data, 0);
3086 data.writeInt(pid);
3087 data.writeInt(uid);
3088 data.writeInt(mode);
3089 mRemote.transact(CHECK_URI_PERMISSION_TRANSACTION, data, reply, 0);
3090 reply.readException();
3091 int res = reply.readInt();
3092 data.recycle();
3093 reply.recycle();
3094 return res;
3095 }
3096 public void grantUriPermission(IApplicationThread caller, String targetPkg,
3097 Uri uri, int mode) throws RemoteException {
3098 Parcel data = Parcel.obtain();
3099 Parcel reply = Parcel.obtain();
3100 data.writeInterfaceToken(IActivityManager.descriptor);
3101 data.writeStrongBinder(caller.asBinder());
3102 data.writeString(targetPkg);
3103 uri.writeToParcel(data, 0);
3104 data.writeInt(mode);
3105 mRemote.transact(GRANT_URI_PERMISSION_TRANSACTION, data, reply, 0);
3106 reply.readException();
3107 data.recycle();
3108 reply.recycle();
3109 }
3110 public void revokeUriPermission(IApplicationThread caller, Uri uri,
3111 int mode) throws RemoteException {
3112 Parcel data = Parcel.obtain();
3113 Parcel reply = Parcel.obtain();
3114 data.writeInterfaceToken(IActivityManager.descriptor);
3115 data.writeStrongBinder(caller.asBinder());
3116 uri.writeToParcel(data, 0);
3117 data.writeInt(mode);
3118 mRemote.transact(REVOKE_URI_PERMISSION_TRANSACTION, data, reply, 0);
3119 reply.readException();
3120 data.recycle();
3121 reply.recycle();
3122 }
3123 public void showWaitingForDebugger(IApplicationThread who, boolean waiting)
3124 throws RemoteException {
3125 Parcel data = Parcel.obtain();
3126 Parcel reply = Parcel.obtain();
3127 data.writeInterfaceToken(IActivityManager.descriptor);
3128 data.writeStrongBinder(who.asBinder());
3129 data.writeInt(waiting ? 1 : 0);
3130 mRemote.transact(SHOW_WAITING_FOR_DEBUGGER_TRANSACTION, data, reply, 0);
3131 reply.readException();
3132 data.recycle();
3133 reply.recycle();
3134 }
3135 public void getMemoryInfo(ActivityManager.MemoryInfo outInfo) throws RemoteException {
3136 Parcel data = Parcel.obtain();
3137 Parcel reply = Parcel.obtain();
3138 data.writeInterfaceToken(IActivityManager.descriptor);
3139 mRemote.transact(GET_MEMORY_INFO_TRANSACTION, data, reply, 0);
3140 reply.readException();
3141 outInfo.readFromParcel(reply);
3142 data.recycle();
3143 reply.recycle();
3144 }
3145 public void unhandledBack() throws RemoteException
3146 {
3147 Parcel data = Parcel.obtain();
3148 Parcel reply = Parcel.obtain();
3149 data.writeInterfaceToken(IActivityManager.descriptor);
3150 mRemote.transact(UNHANDLED_BACK_TRANSACTION, data, reply, 0);
3151 reply.readException();
3152 data.recycle();
3153 reply.recycle();
3154 }
3155 public ParcelFileDescriptor openContentUri(Uri uri) throws RemoteException
3156 {
3157 Parcel data = Parcel.obtain();
3158 Parcel reply = Parcel.obtain();
3159 data.writeInterfaceToken(IActivityManager.descriptor);
3160 mRemote.transact(OPEN_CONTENT_URI_TRANSACTION, data, reply, 0);
3161 reply.readException();
3162 ParcelFileDescriptor pfd = null;
3163 if (reply.readInt() != 0) {
3164 pfd = ParcelFileDescriptor.CREATOR.createFromParcel(reply);
3165 }
3166 data.recycle();
3167 reply.recycle();
3168 return pfd;
3169 }
3170 public void goingToSleep() throws RemoteException
3171 {
3172 Parcel data = Parcel.obtain();
3173 Parcel reply = Parcel.obtain();
3174 data.writeInterfaceToken(IActivityManager.descriptor);
3175 mRemote.transact(GOING_TO_SLEEP_TRANSACTION, data, reply, 0);
3176 reply.readException();
3177 data.recycle();
3178 reply.recycle();
3179 }
3180 public void wakingUp() throws RemoteException
3181 {
3182 Parcel data = Parcel.obtain();
3183 Parcel reply = Parcel.obtain();
3184 data.writeInterfaceToken(IActivityManager.descriptor);
3185 mRemote.transact(WAKING_UP_TRANSACTION, data, reply, 0);
3186 reply.readException();
3187 data.recycle();
3188 reply.recycle();
3189 }
Dianne Hackbornff5b1582012-04-12 17:24:07 -07003190 public void setLockScreenShown(boolean shown) throws RemoteException
3191 {
3192 Parcel data = Parcel.obtain();
3193 Parcel reply = Parcel.obtain();
3194 data.writeInterfaceToken(IActivityManager.descriptor);
3195 data.writeInt(shown ? 1 : 0);
3196 mRemote.transact(SET_LOCK_SCREEN_SHOWN_TRANSACTION, data, reply, 0);
3197 reply.readException();
3198 data.recycle();
3199 reply.recycle();
3200 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003201 public void setDebugApp(
3202 String packageName, boolean waitForDebugger, boolean persistent)
3203 throws RemoteException
3204 {
3205 Parcel data = Parcel.obtain();
3206 Parcel reply = Parcel.obtain();
3207 data.writeInterfaceToken(IActivityManager.descriptor);
3208 data.writeString(packageName);
3209 data.writeInt(waitForDebugger ? 1 : 0);
3210 data.writeInt(persistent ? 1 : 0);
3211 mRemote.transact(SET_DEBUG_APP_TRANSACTION, data, reply, 0);
3212 reply.readException();
3213 data.recycle();
3214 reply.recycle();
3215 }
3216 public void setAlwaysFinish(boolean enabled) throws RemoteException
3217 {
3218 Parcel data = Parcel.obtain();
3219 Parcel reply = Parcel.obtain();
3220 data.writeInterfaceToken(IActivityManager.descriptor);
3221 data.writeInt(enabled ? 1 : 0);
3222 mRemote.transact(SET_ALWAYS_FINISH_TRANSACTION, data, reply, 0);
3223 reply.readException();
3224 data.recycle();
3225 reply.recycle();
3226 }
Dianne Hackbornb06ea702009-07-13 13:07:51 -07003227 public void setActivityController(IActivityController watcher) throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003228 {
3229 Parcel data = Parcel.obtain();
3230 Parcel reply = Parcel.obtain();
3231 data.writeInterfaceToken(IActivityManager.descriptor);
3232 data.writeStrongBinder(watcher != null ? watcher.asBinder() : null);
Dianne Hackbornb06ea702009-07-13 13:07:51 -07003233 mRemote.transact(SET_ACTIVITY_CONTROLLER_TRANSACTION, data, reply, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003234 reply.readException();
3235 data.recycle();
3236 reply.recycle();
3237 }
3238 public void enterSafeMode() throws RemoteException {
3239 Parcel data = Parcel.obtain();
3240 data.writeInterfaceToken(IActivityManager.descriptor);
3241 mRemote.transact(ENTER_SAFE_MODE_TRANSACTION, data, null, 0);
3242 data.recycle();
3243 }
3244 public void noteWakeupAlarm(IIntentSender sender) throws RemoteException {
3245 Parcel data = Parcel.obtain();
3246 data.writeStrongBinder(sender.asBinder());
3247 data.writeInterfaceToken(IActivityManager.descriptor);
3248 mRemote.transact(NOTE_WAKEUP_ALARM_TRANSACTION, data, null, 0);
3249 data.recycle();
3250 }
Dianne Hackborn64825172011-03-02 21:32:58 -08003251 public boolean killPids(int[] pids, String reason, boolean secure) throws RemoteException {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003252 Parcel data = Parcel.obtain();
3253 Parcel reply = Parcel.obtain();
3254 data.writeInterfaceToken(IActivityManager.descriptor);
3255 data.writeIntArray(pids);
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -07003256 data.writeString(reason);
Dianne Hackborn64825172011-03-02 21:32:58 -08003257 data.writeInt(secure ? 1 : 0);
Suchi Amalapurapue99bb5f2010-03-19 14:36:49 -07003258 mRemote.transact(KILL_PIDS_TRANSACTION, data, reply, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003259 boolean res = reply.readInt() != 0;
3260 data.recycle();
3261 reply.recycle();
3262 return res;
3263 }
Jeff Sharkeyb9a07012012-03-22 17:00:04 -07003264 @Override
3265 public boolean killProcessesBelowForeground(String reason) throws RemoteException {
3266 Parcel data = Parcel.obtain();
3267 Parcel reply = Parcel.obtain();
3268 data.writeInterfaceToken(IActivityManager.descriptor);
3269 data.writeString(reason);
3270 mRemote.transact(KILL_PROCESSES_BELOW_FOREGROUND_TRANSACTION, data, reply, 0);
3271 boolean res = reply.readInt() != 0;
3272 data.recycle();
3273 reply.recycle();
3274 return res;
3275 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003276 public void startRunning(String pkg, String cls, String action,
3277 String indata) throws RemoteException {
3278 Parcel data = Parcel.obtain();
3279 Parcel reply = Parcel.obtain();
3280 data.writeInterfaceToken(IActivityManager.descriptor);
3281 data.writeString(pkg);
3282 data.writeString(cls);
3283 data.writeString(action);
3284 data.writeString(indata);
3285 mRemote.transact(START_RUNNING_TRANSACTION, data, reply, 0);
3286 reply.readException();
3287 data.recycle();
3288 reply.recycle();
3289 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003290 public boolean testIsSystemReady()
3291 {
3292 /* this base class version is never called */
3293 return true;
3294 }
Dan Egnor60d87622009-12-16 16:32:58 -08003295 public void handleApplicationCrash(IBinder app,
3296 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException
3297 {
3298 Parcel data = Parcel.obtain();
3299 Parcel reply = Parcel.obtain();
3300 data.writeInterfaceToken(IActivityManager.descriptor);
3301 data.writeStrongBinder(app);
3302 crashInfo.writeToParcel(data, 0);
3303 mRemote.transact(HANDLE_APPLICATION_CRASH_TRANSACTION, data, reply, 0);
3304 reply.readException();
3305 reply.recycle();
3306 data.recycle();
3307 }
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07003308
Dan Egnor60d87622009-12-16 16:32:58 -08003309 public boolean handleApplicationWtf(IBinder app, String tag,
Dan Egnorb7f03672009-12-09 16:22:32 -08003310 ApplicationErrorReport.CrashInfo crashInfo) throws RemoteException
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003311 {
3312 Parcel data = Parcel.obtain();
3313 Parcel reply = Parcel.obtain();
3314 data.writeInterfaceToken(IActivityManager.descriptor);
3315 data.writeStrongBinder(app);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003316 data.writeString(tag);
Dan Egnorb7f03672009-12-09 16:22:32 -08003317 crashInfo.writeToParcel(data, 0);
Dan Egnor60d87622009-12-16 16:32:58 -08003318 mRemote.transact(HANDLE_APPLICATION_WTF_TRANSACTION, data, reply, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003319 reply.readException();
Dan Egnor60d87622009-12-16 16:32:58 -08003320 boolean res = reply.readInt() != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003321 reply.recycle();
3322 data.recycle();
Dan Egnor60d87622009-12-16 16:32:58 -08003323 return res;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003324 }
Dan Egnorb7f03672009-12-09 16:22:32 -08003325
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07003326 public void handleApplicationStrictModeViolation(IBinder app,
Brad Fitzpatrick46d42382010-06-11 13:57:58 -07003327 int violationMask,
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -07003328 StrictMode.ViolationInfo info) throws RemoteException
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07003329 {
3330 Parcel data = Parcel.obtain();
3331 Parcel reply = Parcel.obtain();
3332 data.writeInterfaceToken(IActivityManager.descriptor);
3333 data.writeStrongBinder(app);
Brad Fitzpatrick46d42382010-06-11 13:57:58 -07003334 data.writeInt(violationMask);
Brad Fitzpatrickcb9ceb12010-07-29 14:29:02 -07003335 info.writeToParcel(data, 0);
Brad Fitzpatrick438d0592010-06-10 12:19:19 -07003336 mRemote.transact(HANDLE_APPLICATION_STRICT_MODE_VIOLATION_TRANSACTION, data, reply, 0);
3337 reply.readException();
3338 reply.recycle();
3339 data.recycle();
3340 }
3341
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003342 public void signalPersistentProcesses(int sig) throws RemoteException {
3343 Parcel data = Parcel.obtain();
3344 Parcel reply = Parcel.obtain();
3345 data.writeInterfaceToken(IActivityManager.descriptor);
3346 data.writeInt(sig);
3347 mRemote.transact(SIGNAL_PERSISTENT_PROCESSES_TRANSACTION, data, reply, 0);
3348 reply.readException();
3349 data.recycle();
3350 reply.recycle();
3351 }
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -08003352
Dianne Hackborn1676c852012-09-10 14:52:30 -07003353 public void killBackgroundProcesses(String packageName, int userId) throws RemoteException {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003354 Parcel data = Parcel.obtain();
3355 Parcel reply = Parcel.obtain();
3356 data.writeInterfaceToken(IActivityManager.descriptor);
3357 data.writeString(packageName);
Dianne Hackborn1676c852012-09-10 14:52:30 -07003358 data.writeInt(userId);
Dianne Hackborn03abb812010-01-04 18:43:19 -08003359 mRemote.transact(KILL_BACKGROUND_PROCESSES_TRANSACTION, data, reply, 0);
3360 reply.readException();
3361 data.recycle();
3362 reply.recycle();
3363 }
Dianne Hackborne4d4fbc2011-11-08 11:53:28 -08003364
3365 public void killAllBackgroundProcesses() throws RemoteException {
3366 Parcel data = Parcel.obtain();
3367 Parcel reply = Parcel.obtain();
3368 data.writeInterfaceToken(IActivityManager.descriptor);
3369 mRemote.transact(KILL_ALL_BACKGROUND_PROCESSES_TRANSACTION, data, reply, 0);
3370 reply.readException();
3371 data.recycle();
3372 reply.recycle();
3373 }
3374
Dianne Hackborn1676c852012-09-10 14:52:30 -07003375 public void forceStopPackage(String packageName, int userId) throws RemoteException {
Dianne Hackborn03abb812010-01-04 18:43:19 -08003376 Parcel data = Parcel.obtain();
3377 Parcel reply = Parcel.obtain();
3378 data.writeInterfaceToken(IActivityManager.descriptor);
3379 data.writeString(packageName);
Dianne Hackborn1676c852012-09-10 14:52:30 -07003380 data.writeInt(userId);
Dianne Hackborn03abb812010-01-04 18:43:19 -08003381 mRemote.transact(FORCE_STOP_PACKAGE_TRANSACTION, data, reply, 0);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003382 reply.readException();
3383 data.recycle();
3384 reply.recycle();
3385 }
3386
Dianne Hackborn27ff9132012-03-06 14:57:58 -08003387 public void getMyMemoryState(ActivityManager.RunningAppProcessInfo outInfo)
3388 throws RemoteException
3389 {
3390 Parcel data = Parcel.obtain();
3391 Parcel reply = Parcel.obtain();
3392 data.writeInterfaceToken(IActivityManager.descriptor);
3393 mRemote.transact(GET_MY_MEMORY_STATE_TRANSACTION, data, reply, 0);
3394 reply.readException();
3395 outInfo.readFromParcel(reply);
3396 reply.recycle();
3397 data.recycle();
3398 }
3399
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003400 public ConfigurationInfo getDeviceConfigurationInfo() throws RemoteException
3401 {
3402 Parcel data = Parcel.obtain();
3403 Parcel reply = Parcel.obtain();
3404 data.writeInterfaceToken(IActivityManager.descriptor);
3405 mRemote.transact(GET_DEVICE_CONFIGURATION_TRANSACTION, data, reply, 0);
3406 reply.readException();
3407 ConfigurationInfo res = ConfigurationInfo.CREATOR.createFromParcel(reply);
3408 reply.recycle();
3409 data.recycle();
3410 return res;
3411 }
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08003412
Dianne Hackborn1676c852012-09-10 14:52:30 -07003413 public boolean profileControl(String process, int userId, boolean start,
Romain Guy7eabe552011-07-21 14:56:34 -07003414 String path, ParcelFileDescriptor fd, int profileType) throws RemoteException
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08003415 {
3416 Parcel data = Parcel.obtain();
3417 Parcel reply = Parcel.obtain();
3418 data.writeInterfaceToken(IActivityManager.descriptor);
3419 data.writeString(process);
Dianne Hackborn1676c852012-09-10 14:52:30 -07003420 data.writeInt(userId);
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08003421 data.writeInt(start ? 1 : 0);
Romain Guy9a8c5ce2011-07-21 18:04:29 -07003422 data.writeInt(profileType);
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08003423 data.writeString(path);
Dianne Hackborn9c8dd552009-06-23 19:22:52 -07003424 if (fd != null) {
3425 data.writeInt(1);
3426 fd.writeToParcel(data, Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
3427 } else {
3428 data.writeInt(0);
3429 }
The Android Open Source Projectf5b4b982009-03-05 20:00:43 -08003430 mRemote.transact(PROFILE_CONTROL_TRANSACTION, data, reply, 0);
3431 reply.readException();
3432 boolean res = reply.readInt() != 0;
3433 reply.recycle();
3434 data.recycle();
3435 return res;
3436 }
3437
Dianne Hackborn55280a92009-05-07 15:53:46 -07003438 public boolean shutdown(int timeout) throws RemoteException
3439 {
3440 Parcel data = Parcel.obtain();
3441 Parcel reply = Parcel.obtain();
3442 data.writeInterfaceToken(IActivityManager.descriptor);
3443 data.writeInt(timeout);
3444 mRemote.transact(SHUTDOWN_TRANSACTION, data, reply, 0);
3445 reply.readException();
3446 boolean res = reply.readInt() != 0;
3447 reply.recycle();
3448 data.recycle();
3449 return res;
3450 }
3451
Dianne Hackborn95fc68f2009-05-19 18:37:45 -07003452 public void stopAppSwitches() throws RemoteException {
3453 Parcel data = Parcel.obtain();
3454 Parcel reply = Parcel.obtain();
3455 data.writeInterfaceToken(IActivityManager.descriptor);
3456 mRemote.transact(STOP_APP_SWITCHES_TRANSACTION, data, reply, 0);
3457 reply.readException();
3458 reply.recycle();
3459 data.recycle();
3460 }
3461
3462 public void resumeAppSwitches() throws RemoteException {
3463 Parcel data = Parcel.obtain();
3464 Parcel reply = Parcel.obtain();
3465 data.writeInterfaceToken(IActivityManager.descriptor);
3466 mRemote.transact(RESUME_APP_SWITCHES_TRANSACTION, data, reply, 0);
3467 reply.readException();
3468 reply.recycle();
3469 data.recycle();
3470 }
3471
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07003472 public void killApplicationWithAppId(String pkg, int appid) throws RemoteException {
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -07003473 Parcel data = Parcel.obtain();
3474 Parcel reply = Parcel.obtain();
3475 data.writeInterfaceToken(IActivityManager.descriptor);
3476 data.writeString(pkg);
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07003477 data.writeInt(appid);
3478 mRemote.transact(KILL_APPLICATION_WITH_APPID_TRANSACTION, data, reply, 0);
Suchi Amalapurapu261e66a2009-07-27 15:21:34 -07003479 reply.readException();
3480 data.recycle();
3481 reply.recycle();
3482 }
Dianne Hackborna6ddc8a2009-07-28 17:49:55 -07003483
3484 public void closeSystemDialogs(String reason) throws RemoteException {
3485 Parcel data = Parcel.obtain();
3486 Parcel reply = Parcel.obtain();
3487 data.writeInterfaceToken(IActivityManager.descriptor);
3488 data.writeString(reason);
3489 mRemote.transact(CLOSE_SYSTEM_DIALOGS_TRANSACTION, data, reply, 0);
3490 reply.readException();
3491 data.recycle();
3492 reply.recycle();
3493 }
Dianne Hackborn3025ef32009-08-31 21:31:47 -07003494
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07003495 public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids)
Dianne Hackborn3025ef32009-08-31 21:31:47 -07003496 throws RemoteException {
3497 Parcel data = Parcel.obtain();
3498 Parcel reply = Parcel.obtain();
3499 data.writeInterfaceToken(IActivityManager.descriptor);
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07003500 data.writeIntArray(pids);
Dianne Hackborn3025ef32009-08-31 21:31:47 -07003501 mRemote.transact(GET_PROCESS_MEMORY_INFO_TRANSACTION, data, reply, 0);
3502 reply.readException();
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07003503 Debug.MemoryInfo[] res = reply.createTypedArray(Debug.MemoryInfo.CREATOR);
Dianne Hackborn3025ef32009-08-31 21:31:47 -07003504 data.recycle();
3505 reply.recycle();
Dianne Hackborn4f21c4c2009-09-17 10:24:05 -07003506 return res;
Dianne Hackborn3025ef32009-08-31 21:31:47 -07003507 }
Christopher Tate5e1ab332009-09-01 20:32:49 -07003508
3509 public void killApplicationProcess(String processName, int uid) throws RemoteException {
3510 Parcel data = Parcel.obtain();
3511 Parcel reply = Parcel.obtain();
3512 data.writeInterfaceToken(IActivityManager.descriptor);
3513 data.writeString(processName);
3514 data.writeInt(uid);
3515 mRemote.transact(KILL_APPLICATION_PROCESS_TRANSACTION, data, reply, 0);
3516 reply.readException();
3517 data.recycle();
3518 reply.recycle();
3519 }
3520
Dianne Hackborn3b3e1452009-09-24 19:22:12 -07003521 public void overridePendingTransition(IBinder token, String packageName,
3522 int enterAnim, int exitAnim) throws RemoteException {
3523 Parcel data = Parcel.obtain();
3524 Parcel reply = Parcel.obtain();
3525 data.writeInterfaceToken(IActivityManager.descriptor);
3526 data.writeStrongBinder(token);
3527 data.writeString(packageName);
3528 data.writeInt(enterAnim);
3529 data.writeInt(exitAnim);
3530 mRemote.transact(OVERRIDE_PENDING_TRANSITION_TRANSACTION, data, reply, 0);
3531 reply.readException();
3532 data.recycle();
3533 reply.recycle();
3534 }
3535
Dianne Hackborn9327f4f2010-01-29 10:38:29 -08003536 public boolean isUserAMonkey() throws RemoteException {
3537 Parcel data = Parcel.obtain();
3538 Parcel reply = Parcel.obtain();
3539 data.writeInterfaceToken(IActivityManager.descriptor);
3540 mRemote.transact(IS_USER_A_MONKEY_TRANSACTION, data, reply, 0);
3541 reply.readException();
3542 boolean res = reply.readInt() != 0;
3543 data.recycle();
3544 reply.recycle();
3545 return res;
3546 }
3547
Dianne Hackborn860755f2010-06-03 18:47:52 -07003548 public void finishHeavyWeightApp() throws RemoteException {
3549 Parcel data = Parcel.obtain();
3550 Parcel reply = Parcel.obtain();
3551 data.writeInterfaceToken(IActivityManager.descriptor);
3552 mRemote.transact(FINISH_HEAVY_WEIGHT_APP_TRANSACTION, data, reply, 0);
3553 reply.readException();
3554 data.recycle();
3555 reply.recycle();
3556 }
3557
Daniel Sandler69a48172010-06-23 16:29:36 -04003558 public void setImmersive(IBinder token, boolean immersive)
3559 throws RemoteException {
3560 Parcel data = Parcel.obtain();
3561 Parcel reply = Parcel.obtain();
3562 data.writeInterfaceToken(IActivityManager.descriptor);
3563 data.writeStrongBinder(token);
3564 data.writeInt(immersive ? 1 : 0);
3565 mRemote.transact(SET_IMMERSIVE_TRANSACTION, data, reply, 0);
3566 reply.readException();
3567 data.recycle();
3568 reply.recycle();
3569 }
3570
3571 public boolean isImmersive(IBinder token)
3572 throws RemoteException {
3573 Parcel data = Parcel.obtain();
3574 Parcel reply = Parcel.obtain();
3575 data.writeInterfaceToken(IActivityManager.descriptor);
3576 data.writeStrongBinder(token);
3577 mRemote.transact(IS_IMMERSIVE_TRANSACTION, data, reply, 0);
Daniel Sandler69a48172010-06-23 16:29:36 -04003578 reply.readException();
Dianne Hackborn7e269642010-08-25 19:50:20 -07003579 boolean res = reply.readInt() == 1;
Daniel Sandler69a48172010-06-23 16:29:36 -04003580 data.recycle();
3581 reply.recycle();
3582 return res;
3583 }
3584
3585 public boolean isTopActivityImmersive()
3586 throws RemoteException {
3587 Parcel data = Parcel.obtain();
3588 Parcel reply = Parcel.obtain();
3589 data.writeInterfaceToken(IActivityManager.descriptor);
3590 mRemote.transact(IS_TOP_ACTIVITY_IMMERSIVE_TRANSACTION, data, reply, 0);
Daniel Sandler69a48172010-06-23 16:29:36 -04003591 reply.readException();
Dianne Hackborn7e269642010-08-25 19:50:20 -07003592 boolean res = reply.readInt() == 1;
Daniel Sandler69a48172010-06-23 16:29:36 -04003593 data.recycle();
3594 reply.recycle();
3595 return res;
3596 }
3597
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -07003598 public void crashApplication(int uid, int initialPid, String packageName,
3599 String message) throws RemoteException {
3600 Parcel data = Parcel.obtain();
3601 Parcel reply = Parcel.obtain();
3602 data.writeInterfaceToken(IActivityManager.descriptor);
3603 data.writeInt(uid);
3604 data.writeInt(initialPid);
3605 data.writeString(packageName);
3606 data.writeString(message);
3607 mRemote.transact(CRASH_APPLICATION_TRANSACTION, data, reply, 0);
3608 reply.readException();
3609 data.recycle();
3610 reply.recycle();
3611 }
Andy McFadden824c5102010-07-09 16:26:57 -07003612
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07003613 public String getProviderMimeType(Uri uri, int userId) throws RemoteException {
Dianne Hackborncca1f0e2010-09-26 18:34:53 -07003614 Parcel data = Parcel.obtain();
3615 Parcel reply = Parcel.obtain();
3616 data.writeInterfaceToken(IActivityManager.descriptor);
3617 uri.writeToParcel(data, 0);
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07003618 data.writeInt(userId);
Dianne Hackborncca1f0e2010-09-26 18:34:53 -07003619 mRemote.transact(GET_PROVIDER_MIME_TYPE_TRANSACTION, data, reply, 0);
3620 reply.readException();
3621 String res = reply.readString();
3622 data.recycle();
3623 reply.recycle();
3624 return res;
3625 }
3626
Dianne Hackborn7e269642010-08-25 19:50:20 -07003627 public IBinder newUriPermissionOwner(String name)
3628 throws RemoteException {
3629 Parcel data = Parcel.obtain();
3630 Parcel reply = Parcel.obtain();
3631 data.writeInterfaceToken(IActivityManager.descriptor);
3632 data.writeString(name);
3633 mRemote.transact(NEW_URI_PERMISSION_OWNER_TRANSACTION, data, reply, 0);
3634 reply.readException();
3635 IBinder res = reply.readStrongBinder();
3636 data.recycle();
3637 reply.recycle();
3638 return res;
3639 }
3640
3641 public void grantUriPermissionFromOwner(IBinder owner, int fromUid, String targetPkg,
3642 Uri uri, int mode) throws RemoteException {
3643 Parcel data = Parcel.obtain();
3644 Parcel reply = Parcel.obtain();
3645 data.writeInterfaceToken(IActivityManager.descriptor);
3646 data.writeStrongBinder(owner);
3647 data.writeInt(fromUid);
3648 data.writeString(targetPkg);
3649 uri.writeToParcel(data, 0);
3650 data.writeInt(mode);
3651 mRemote.transact(GRANT_URI_PERMISSION_TRANSACTION, data, reply, 0);
3652 reply.readException();
3653 data.recycle();
3654 reply.recycle();
3655 }
3656
3657 public void revokeUriPermissionFromOwner(IBinder owner, Uri uri,
3658 int mode) throws RemoteException {
3659 Parcel data = Parcel.obtain();
3660 Parcel reply = Parcel.obtain();
3661 data.writeInterfaceToken(IActivityManager.descriptor);
3662 data.writeStrongBinder(owner);
3663 if (uri != null) {
3664 data.writeInt(1);
3665 uri.writeToParcel(data, 0);
3666 } else {
3667 data.writeInt(0);
3668 }
3669 data.writeInt(mode);
3670 mRemote.transact(REVOKE_URI_PERMISSION_TRANSACTION, data, reply, 0);
3671 reply.readException();
3672 data.recycle();
3673 reply.recycle();
3674 }
Dianne Hackbornc8f84972010-08-25 23:14:44 -07003675
Dianne Hackborn90f4aaf2010-09-27 14:58:44 -07003676 public int checkGrantUriPermission(int callingUid, String targetPkg,
3677 Uri uri, int modeFlags) throws RemoteException {
3678 Parcel data = Parcel.obtain();
3679 Parcel reply = Parcel.obtain();
3680 data.writeInterfaceToken(IActivityManager.descriptor);
3681 data.writeInt(callingUid);
3682 data.writeString(targetPkg);
3683 uri.writeToParcel(data, 0);
3684 data.writeInt(modeFlags);
3685 mRemote.transact(CHECK_GRANT_URI_PERMISSION_TRANSACTION, data, reply, 0);
3686 reply.readException();
3687 int res = reply.readInt();
3688 data.recycle();
3689 reply.recycle();
3690 return res;
3691 }
3692
Dianne Hackborn1676c852012-09-10 14:52:30 -07003693 public boolean dumpHeap(String process, int userId, boolean managed,
Andy McFadden824c5102010-07-09 16:26:57 -07003694 String path, ParcelFileDescriptor fd) throws RemoteException {
3695 Parcel data = Parcel.obtain();
3696 Parcel reply = Parcel.obtain();
3697 data.writeInterfaceToken(IActivityManager.descriptor);
3698 data.writeString(process);
Dianne Hackborn1676c852012-09-10 14:52:30 -07003699 data.writeInt(userId);
Andy McFadden824c5102010-07-09 16:26:57 -07003700 data.writeInt(managed ? 1 : 0);
3701 data.writeString(path);
3702 if (fd != null) {
3703 data.writeInt(1);
3704 fd.writeToParcel(data, Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
3705 } else {
3706 data.writeInt(0);
3707 }
3708 mRemote.transact(DUMP_HEAP_TRANSACTION, data, reply, 0);
3709 reply.readException();
3710 boolean res = reply.readInt() != 0;
3711 reply.recycle();
3712 data.recycle();
3713 return res;
3714 }
Dianne Hackborn9d39d0c2010-06-24 15:57:42 -07003715
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003716 public int startActivities(IApplicationThread caller,
Dianne Hackborna4972e92012-03-14 10:38:05 -07003717 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
Amith Yamasaniea7e9152012-09-24 16:11:18 -07003718 Bundle options, int userId) throws RemoteException {
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003719 Parcel data = Parcel.obtain();
3720 Parcel reply = Parcel.obtain();
3721 data.writeInterfaceToken(IActivityManager.descriptor);
3722 data.writeStrongBinder(caller != null ? caller.asBinder() : null);
3723 data.writeTypedArray(intents, 0);
3724 data.writeStringArray(resolvedTypes);
3725 data.writeStrongBinder(resultTo);
Dianne Hackborna4972e92012-03-14 10:38:05 -07003726 if (options != null) {
3727 data.writeInt(1);
3728 options.writeToParcel(data, 0);
3729 } else {
3730 data.writeInt(0);
3731 }
Amith Yamasaniea7e9152012-09-24 16:11:18 -07003732 data.writeInt(userId);
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003733 mRemote.transact(START_ACTIVITIES_TRANSACTION, data, reply, 0);
3734 reply.readException();
3735 int result = reply.readInt();
3736 reply.recycle();
3737 data.recycle();
3738 return result;
3739 }
3740
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -07003741 public int getFrontActivityScreenCompatMode() throws RemoteException {
3742 Parcel data = Parcel.obtain();
3743 Parcel reply = Parcel.obtain();
3744 data.writeInterfaceToken(IActivityManager.descriptor);
3745 mRemote.transact(GET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION, data, reply, 0);
3746 reply.readException();
3747 int mode = reply.readInt();
3748 reply.recycle();
3749 data.recycle();
3750 return mode;
3751 }
3752
3753 public void setFrontActivityScreenCompatMode(int mode) throws RemoteException {
3754 Parcel data = Parcel.obtain();
3755 Parcel reply = Parcel.obtain();
3756 data.writeInterfaceToken(IActivityManager.descriptor);
3757 data.writeInt(mode);
3758 mRemote.transact(SET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION, data, reply, 0);
3759 reply.readException();
3760 reply.recycle();
3761 data.recycle();
3762 }
3763
3764 public int getPackageScreenCompatMode(String packageName) throws RemoteException {
3765 Parcel data = Parcel.obtain();
3766 Parcel reply = Parcel.obtain();
3767 data.writeInterfaceToken(IActivityManager.descriptor);
Dianne Hackborn36cd41f2011-05-25 21:00:46 -07003768 data.writeString(packageName);
3769 mRemote.transact(GET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION, data, reply, 0);
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -07003770 reply.readException();
3771 int mode = reply.readInt();
3772 reply.recycle();
3773 data.recycle();
3774 return mode;
3775 }
3776
3777 public void setPackageScreenCompatMode(String packageName, int mode)
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003778 throws RemoteException {
3779 Parcel data = Parcel.obtain();
3780 Parcel reply = Parcel.obtain();
3781 data.writeInterfaceToken(IActivityManager.descriptor);
3782 data.writeString(packageName);
Dianne Hackborn0f1de9a2011-05-11 17:34:49 -07003783 data.writeInt(mode);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003784 mRemote.transact(SET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION, data, reply, 0);
3785 reply.readException();
3786 reply.recycle();
3787 data.recycle();
3788 }
3789
Dianne Hackborn36cd41f2011-05-25 21:00:46 -07003790 public boolean getPackageAskScreenCompat(String packageName) throws RemoteException {
3791 Parcel data = Parcel.obtain();
3792 Parcel reply = Parcel.obtain();
3793 data.writeInterfaceToken(IActivityManager.descriptor);
3794 data.writeString(packageName);
3795 mRemote.transact(GET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION, data, reply, 0);
3796 reply.readException();
3797 boolean ask = reply.readInt() != 0;
3798 reply.recycle();
3799 data.recycle();
3800 return ask;
3801 }
3802
3803 public void setPackageAskScreenCompat(String packageName, boolean ask)
3804 throws RemoteException {
3805 Parcel data = Parcel.obtain();
3806 Parcel reply = Parcel.obtain();
3807 data.writeInterfaceToken(IActivityManager.descriptor);
3808 data.writeString(packageName);
3809 data.writeInt(ask ? 1 : 0);
3810 mRemote.transact(SET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION, data, reply, 0);
3811 reply.readException();
3812 reply.recycle();
3813 data.recycle();
3814 }
3815
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003816 public boolean switchUser(int userid) throws RemoteException {
3817 Parcel data = Parcel.obtain();
3818 Parcel reply = Parcel.obtain();
3819 data.writeInterfaceToken(IActivityManager.descriptor);
3820 data.writeInt(userid);
3821 mRemote.transact(SWITCH_USER_TRANSACTION, data, reply, 0);
3822 reply.readException();
3823 boolean result = reply.readInt() != 0;
3824 reply.recycle();
3825 data.recycle();
3826 return result;
3827 }
Amith Yamasani52f1d752012-03-28 18:19:29 -07003828
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003829 public int stopUser(int userid, IStopUserCallback callback) throws RemoteException {
3830 Parcel data = Parcel.obtain();
3831 Parcel reply = Parcel.obtain();
3832 data.writeInterfaceToken(IActivityManager.descriptor);
3833 data.writeInt(userid);
3834 data.writeStrongInterface(callback);
3835 mRemote.transact(STOP_USER_TRANSACTION, data, reply, 0);
3836 reply.readException();
3837 int result = reply.readInt();
3838 reply.recycle();
3839 data.recycle();
3840 return result;
3841 }
3842
Amith Yamasani52f1d752012-03-28 18:19:29 -07003843 public UserInfo getCurrentUser() throws RemoteException {
3844 Parcel data = Parcel.obtain();
3845 Parcel reply = Parcel.obtain();
3846 data.writeInterfaceToken(IActivityManager.descriptor);
Dianne Hackborn80a4af22012-08-27 19:18:31 -07003847 mRemote.transact(GET_CURRENT_USER_TRANSACTION, data, reply, 0);
Amith Yamasani52f1d752012-03-28 18:19:29 -07003848 reply.readException();
3849 UserInfo userInfo = UserInfo.CREATOR.createFromParcel(reply);
3850 reply.recycle();
3851 data.recycle();
3852 return userInfo;
3853 }
3854
Dianne Hackborn5e03e2c2012-09-06 14:21:19 -07003855 public boolean isUserRunning(int userid) throws RemoteException {
3856 Parcel data = Parcel.obtain();
3857 Parcel reply = Parcel.obtain();
3858 data.writeInterfaceToken(IActivityManager.descriptor);
3859 data.writeInt(userid);
3860 mRemote.transact(IS_USER_RUNNING_TRANSACTION, data, reply, 0);
3861 reply.readException();
3862 boolean result = reply.readInt() != 0;
3863 reply.recycle();
3864 data.recycle();
3865 return result;
3866 }
3867
Dianne Hackbornc72fc672012-09-20 13:12:03 -07003868 public int[] getRunningUserIds() throws RemoteException {
3869 Parcel data = Parcel.obtain();
3870 Parcel reply = Parcel.obtain();
3871 data.writeInterfaceToken(IActivityManager.descriptor);
3872 mRemote.transact(GET_RUNNING_USER_IDS_TRANSACTION, data, reply, 0);
3873 reply.readException();
3874 int[] result = reply.createIntArray();
3875 reply.recycle();
3876 data.recycle();
3877 return result;
3878 }
3879
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003880 public boolean removeSubTask(int taskId, int subTaskIndex) throws RemoteException {
3881 Parcel data = Parcel.obtain();
3882 Parcel reply = Parcel.obtain();
3883 data.writeInterfaceToken(IActivityManager.descriptor);
3884 data.writeInt(taskId);
3885 data.writeInt(subTaskIndex);
3886 mRemote.transact(REMOVE_SUB_TASK_TRANSACTION, data, reply, 0);
3887 reply.readException();
3888 boolean result = reply.readInt() != 0;
3889 reply.recycle();
3890 data.recycle();
3891 return result;
3892 }
3893
3894 public boolean removeTask(int taskId, int flags) throws RemoteException {
3895 Parcel data = Parcel.obtain();
3896 Parcel reply = Parcel.obtain();
3897 data.writeInterfaceToken(IActivityManager.descriptor);
3898 data.writeInt(taskId);
3899 data.writeInt(flags);
3900 mRemote.transact(REMOVE_TASK_TRANSACTION, data, reply, 0);
3901 reply.readException();
3902 boolean result = reply.readInt() != 0;
3903 reply.recycle();
3904 data.recycle();
3905 return result;
3906 }
Amith Yamasani4b2e9342011-03-31 12:38:53 -07003907
Jeff Sharkeya4620792011-05-20 15:29:23 -07003908 public void registerProcessObserver(IProcessObserver observer) throws RemoteException {
3909 Parcel data = Parcel.obtain();
3910 Parcel reply = Parcel.obtain();
3911 data.writeInterfaceToken(IActivityManager.descriptor);
3912 data.writeStrongBinder(observer != null ? observer.asBinder() : null);
3913 mRemote.transact(REGISTER_PROCESS_OBSERVER_TRANSACTION, data, reply, 0);
3914 reply.readException();
3915 data.recycle();
3916 reply.recycle();
3917 }
3918
3919 public void unregisterProcessObserver(IProcessObserver observer) throws RemoteException {
3920 Parcel data = Parcel.obtain();
3921 Parcel reply = Parcel.obtain();
3922 data.writeInterfaceToken(IActivityManager.descriptor);
3923 data.writeStrongBinder(observer != null ? observer.asBinder() : null);
3924 mRemote.transact(UNREGISTER_PROCESS_OBSERVER_TRANSACTION, data, reply, 0);
3925 reply.readException();
3926 data.recycle();
3927 reply.recycle();
3928 }
3929
Dianne Hackborn6c418d52011-06-29 14:05:33 -07003930 public boolean isIntentSenderTargetedToPackage(IIntentSender sender) throws RemoteException {
3931 Parcel data = Parcel.obtain();
3932 Parcel reply = Parcel.obtain();
3933 data.writeInterfaceToken(IActivityManager.descriptor);
3934 data.writeStrongBinder(sender.asBinder());
3935 mRemote.transact(IS_INTENT_SENDER_TARGETED_TO_PACKAGE_TRANSACTION, data, reply, 0);
3936 reply.readException();
3937 boolean res = reply.readInt() != 0;
3938 data.recycle();
3939 reply.recycle();
3940 return res;
3941 }
3942
Dianne Hackborn1927ae82012-06-22 15:21:36 -07003943 public boolean isIntentSenderAnActivity(IIntentSender sender) throws RemoteException {
3944 Parcel data = Parcel.obtain();
3945 Parcel reply = Parcel.obtain();
3946 data.writeInterfaceToken(IActivityManager.descriptor);
3947 data.writeStrongBinder(sender.asBinder());
3948 mRemote.transact(IS_INTENT_SENDER_AN_ACTIVITY_TRANSACTION, data, reply, 0);
3949 reply.readException();
3950 boolean res = reply.readInt() != 0;
3951 data.recycle();
3952 reply.recycle();
3953 return res;
3954 }
3955
Dianne Hackborn31ca8542011-07-19 14:58:28 -07003956 public void updatePersistentConfiguration(Configuration values) throws RemoteException
3957 {
3958 Parcel data = Parcel.obtain();
3959 Parcel reply = Parcel.obtain();
3960 data.writeInterfaceToken(IActivityManager.descriptor);
3961 values.writeToParcel(data, 0);
3962 mRemote.transact(UPDATE_PERSISTENT_CONFIGURATION_TRANSACTION, data, reply, 0);
3963 reply.readException();
3964 data.recycle();
3965 reply.recycle();
3966 }
3967
Dianne Hackbornb437e092011-08-05 17:50:29 -07003968 public long[] getProcessPss(int[] pids) throws RemoteException {
3969 Parcel data = Parcel.obtain();
3970 Parcel reply = Parcel.obtain();
3971 data.writeInterfaceToken(IActivityManager.descriptor);
3972 data.writeIntArray(pids);
3973 mRemote.transact(GET_PROCESS_PSS_TRANSACTION, data, reply, 0);
3974 reply.readException();
3975 long[] res = reply.createLongArray();
3976 data.recycle();
3977 reply.recycle();
3978 return res;
3979 }
3980
Dianne Hackborn661cd522011-08-22 00:26:20 -07003981 public void showBootMessage(CharSequence msg, boolean always) throws RemoteException {
3982 Parcel data = Parcel.obtain();
3983 Parcel reply = Parcel.obtain();
3984 data.writeInterfaceToken(IActivityManager.descriptor);
3985 TextUtils.writeToParcel(msg, data, 0);
3986 data.writeInt(always ? 1 : 0);
3987 mRemote.transact(SHOW_BOOT_MESSAGE_TRANSACTION, data, reply, 0);
3988 reply.readException();
3989 data.recycle();
3990 reply.recycle();
3991 }
3992
Dianne Hackborn90c52de2011-09-23 12:57:44 -07003993 public void dismissKeyguardOnNextActivity() throws RemoteException {
3994 Parcel data = Parcel.obtain();
3995 Parcel reply = Parcel.obtain();
3996 data.writeInterfaceToken(IActivityManager.descriptor);
3997 mRemote.transact(DISMISS_KEYGUARD_ON_NEXT_ACTIVITY_TRANSACTION, data, reply, 0);
3998 reply.readException();
3999 data.recycle();
4000 reply.recycle();
4001 }
4002
Adam Powelldd8fab22012-03-22 17:47:27 -07004003 public boolean targetTaskAffinityMatchesActivity(IBinder token, String destAffinity)
4004 throws RemoteException {
4005 Parcel data = Parcel.obtain();
4006 Parcel reply = Parcel.obtain();
4007 data.writeInterfaceToken(IActivityManager.descriptor);
4008 data.writeStrongBinder(token);
4009 data.writeString(destAffinity);
4010 mRemote.transact(TARGET_TASK_AFFINITY_MATCHES_ACTIVITY_TRANSACTION, data, reply, 0);
4011 reply.readException();
4012 boolean result = reply.readInt() != 0;
4013 data.recycle();
4014 reply.recycle();
4015 return result;
4016 }
4017
4018 public boolean navigateUpTo(IBinder token, Intent target, int resultCode, Intent resultData)
4019 throws RemoteException {
4020 Parcel data = Parcel.obtain();
4021 Parcel reply = Parcel.obtain();
4022 data.writeInterfaceToken(IActivityManager.descriptor);
4023 data.writeStrongBinder(token);
4024 target.writeToParcel(data, 0);
4025 data.writeInt(resultCode);
4026 if (resultData != null) {
4027 data.writeInt(1);
4028 resultData.writeToParcel(data, 0);
4029 } else {
4030 data.writeInt(0);
4031 }
4032 mRemote.transact(NAVIGATE_UP_TO_TRANSACTION, data, reply, 0);
4033 reply.readException();
4034 boolean result = reply.readInt() != 0;
4035 data.recycle();
4036 reply.recycle();
4037 return result;
4038 }
4039
Dianne Hackborn5320eb82012-05-18 12:05:04 -07004040 public int getLaunchedFromUid(IBinder activityToken) throws RemoteException {
4041 Parcel data = Parcel.obtain();
4042 Parcel reply = Parcel.obtain();
4043 data.writeInterfaceToken(IActivityManager.descriptor);
4044 data.writeStrongBinder(activityToken);
4045 mRemote.transact(GET_LAUNCHED_FROM_UID_TRANSACTION, data, reply, 0);
4046 reply.readException();
4047 int result = reply.readInt();
4048 data.recycle();
4049 reply.recycle();
4050 return result;
4051 }
4052
Dianne Hackborn5dc5a002012-09-15 19:33:48 -07004053 public void registerUserSwitchObserver(IUserSwitchObserver observer) throws RemoteException {
4054 Parcel data = Parcel.obtain();
4055 Parcel reply = Parcel.obtain();
4056 data.writeInterfaceToken(IActivityManager.descriptor);
4057 data.writeStrongBinder(observer != null ? observer.asBinder() : null);
4058 mRemote.transact(REGISTER_USER_SWITCH_OBSERVER_TRANSACTION, data, reply, 0);
4059 reply.readException();
4060 data.recycle();
4061 reply.recycle();
4062 }
4063
4064 public void unregisterUserSwitchObserver(IUserSwitchObserver observer) throws RemoteException {
4065 Parcel data = Parcel.obtain();
4066 Parcel reply = Parcel.obtain();
4067 data.writeInterfaceToken(IActivityManager.descriptor);
4068 data.writeStrongBinder(observer != null ? observer.asBinder() : null);
4069 mRemote.transact(UNREGISTER_USER_SWITCH_OBSERVER_TRANSACTION, data, reply, 0);
4070 reply.readException();
4071 data.recycle();
4072 reply.recycle();
4073 }
4074
Dianne Hackbornd4ac8d72012-09-27 23:20:10 -07004075 public void requestBugReport() throws RemoteException {
4076 Parcel data = Parcel.obtain();
4077 Parcel reply = Parcel.obtain();
4078 data.writeInterfaceToken(IActivityManager.descriptor);
4079 mRemote.transact(REQUEST_BUG_REPORT_TRANSACTION, data, reply, 0);
4080 reply.readException();
4081 data.recycle();
4082 reply.recycle();
4083 }
4084
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08004085 private IBinder mRemote;
4086}