OSDN Git Service

Support one-way methods in java support for hardware binder
authorAndreas Huber <andih@google.com>
Thu, 18 Aug 2016 21:29:40 +0000 (14:29 -0700)
committerMartijn Coenen <maco@google.com>
Wed, 7 Sep 2016 13:10:35 +0000 (15:10 +0200)
Bug: 30922538
Change-Id: I5ff93126a29f6bff42dee3f9868fa794ca7c077f
Signed-off-by: Iliyan Malchev <malchev@google.com>
core/java/android/os/IHwBinder.java

index 88af4fb..76e881e 100644 (file)
@@ -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);