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

Commit 93618c7d authored by Andreas Huber's avatar Andreas Huber Committed by android-build-merger
Browse files

Support one-way methods in java support for hardware binder

am: 281ac40c

Change-Id: I84cf39879ea0a6d5d488d0e414adefc8b5fc6e6b
parents c4084297 281ac40c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -18,8 +18,9 @@ package android.os;

/** @hide */
public interface IHwBinder {
    // MUST match libhwbinder/IBinder.h definition !!!
    // These MUST match their corresponding libhwbinder/IBinder.h definition !!!
    public static final int FIRST_CALL_TRANSACTION = 1;
    public static final int FLAG_ONEWAY = 1;

    public void transact(
            int code, HwParcel request, HwParcel reply, int flags);