Loading services/core/java/com/android/server/am/ActivityManagerService.java +14 −10 Original line number Diff line number Diff line Loading @@ -10801,6 +10801,8 @@ public final class ActivityManagerService extends ActivityManagerNative } // We are now ready to launch the assist activity. IResultReceiver sendReceiver = null; Bundle sendBundle = null; synchronized (this) { buildAssistBundleLocked(pae, extras); boolean exists = mPendingAssistExtras.remove(pae); Loading @@ -10809,19 +10811,21 @@ public final class ActivityManagerService extends ActivityManagerNative // Timed out. return; } if (pae.receiver != null) { if ((sendReceiver=pae.receiver) != null) { // Caller wants result sent back to them. Bundle topBundle = new Bundle(); topBundle.putBundle("data", pae.extras); topBundle.putParcelable("structure", pae.structure); topBundle.putParcelable("content", pae.content); sendBundle = new Bundle(); sendBundle.putBundle("data", pae.extras); sendBundle.putParcelable("structure", pae.structure); sendBundle.putParcelable("content", pae.content); } } if (sendReceiver != null) { try { pae.receiver.send(0, topBundle); sendReceiver.send(0, sendBundle); } catch (RemoteException e) { } return; } } long ident = Binder.clearCallingIdentity(); try { Loading Loading
services/core/java/com/android/server/am/ActivityManagerService.java +14 −10 Original line number Diff line number Diff line Loading @@ -10801,6 +10801,8 @@ public final class ActivityManagerService extends ActivityManagerNative } // We are now ready to launch the assist activity. IResultReceiver sendReceiver = null; Bundle sendBundle = null; synchronized (this) { buildAssistBundleLocked(pae, extras); boolean exists = mPendingAssistExtras.remove(pae); Loading @@ -10809,19 +10811,21 @@ public final class ActivityManagerService extends ActivityManagerNative // Timed out. return; } if (pae.receiver != null) { if ((sendReceiver=pae.receiver) != null) { // Caller wants result sent back to them. Bundle topBundle = new Bundle(); topBundle.putBundle("data", pae.extras); topBundle.putParcelable("structure", pae.structure); topBundle.putParcelable("content", pae.content); sendBundle = new Bundle(); sendBundle.putBundle("data", pae.extras); sendBundle.putParcelable("structure", pae.structure); sendBundle.putParcelable("content", pae.content); } } if (sendReceiver != null) { try { pae.receiver.send(0, topBundle); sendReceiver.send(0, sendBundle); } catch (RemoteException e) { } return; } } long ident = Binder.clearCallingIdentity(); try { Loading