diff options
| author | 2016-08-18 14:29:40 -0700 | |
|---|---|---|
| committer | 2016-09-02 06:28:14 -0700 | |
| commit | 90349b3e11ec6f148211a9e29cb80644bc35d382 (patch) | |
| tree | b8a90ee4a08da502a2df946307decbe3c9a5b65b | |
| parent | dab5fc65b92b37ee623b10f86a6ccf1709ba17d4 (diff) | |
Support one-way methods in java support for hardware binder (DO NOT MERGE)
Bug: 30922538
Change-Id: I5ff93126a29f6bff42dee3f9868fa794ca7c077f
Signed-off-by: Iliyan Malchev <malchev@google.com>
| -rw-r--r-- | core/java/android/os/IHwBinder.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/os/IHwBinder.java b/core/java/android/os/IHwBinder.java index 88af4fb13710..76e881eda8af 100644 --- a/core/java/android/os/IHwBinder.java +++ b/core/java/android/os/IHwBinder.java @@ -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); |