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

Commit b7f2bccb authored by Steven Moreland's avatar Steven Moreland Committed by Automerger Merge Worker
Browse files

Merge "libbinder: Java/C++ *_TRANSACTION parity" am: b4a281fc am: 4ea8ae8a am: 2f62ffee

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1570635

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I7471568cac787684296cc87fbba4ee4b1af9c5b8
parents 2cf88e6a 2f62ffee
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -60,6 +60,15 @@ public:
        EXTENSION_TRANSACTION   = B_PACK_CHARS('_', 'E', 'X', 'T'),
        DEBUG_PID_TRANSACTION   = B_PACK_CHARS('_', 'P', 'I', 'D'),

        // See android.os.IBinder.TWEET_TRANSACTION
        // Most importantly, messages can be anything not exceeding 130 UTF-8
        // characters, and callees should exclaim "jolly good message old boy!"
        TWEET_TRANSACTION       = B_PACK_CHARS('_', 'T', 'W', 'T'),

        // See android.os.IBinder.LIKE_TRANSACTION
        // Improve binder self-esteem.
        LIKE_TRANSACTION        = B_PACK_CHARS('_', 'L', 'I', 'K'),

        // Corresponds to TF_ONE_WAY -- an asynchronous call.
        FLAG_ONEWAY             = 0x00000001,