Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c68a657f authored by Kenny Root's avatar Kenny Root Committed by Android Git Automerger
Browse files

am 138757db: Merge "Make OBB results a one-way call" into gingerbread

* commit '138757db':
  Make OBB results a one-way call
parents 593dadd6 138757db
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -112,7 +112,8 @@ public interface IObbActionListener extends IInterface {
                    _data.writeString(filename);
                    _data.writeInt(nonce);
                    _data.writeInt(status);
                    mRemote.transact(Stub.TRANSACTION_onObbResult, _data, _reply, 0);
                    mRemote.transact(Stub.TRANSACTION_onObbResult, _data, _reply,
                            Binder.FLAG_ONEWAY);
                    _reply.readException();
                } finally {
                    _reply.recycle();
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ class MountService extends IMountService.Stub implements INativeDaemonConnectorC
    private static final boolean LOCAL_LOGD = false;
    private static final boolean DEBUG_UNMOUNT = false;
    private static final boolean DEBUG_EVENTS = false;
    private static final boolean DEBUG_OBB = true;
    private static final boolean DEBUG_OBB = false;

    private static final String TAG = "MountService";