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

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

Merge "Parcel: warnings for 'REPLY' statuses" am: d36a3f33 am: 69f8011e...

Merge "Parcel: warnings for 'REPLY' statuses" am: d36a3f33 am: 69f8011e am: d31a6887 am: f73ad337

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2117786



Change-Id: I80e563a5eba084ea8ae66af590560e6a4c07b905
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 81ddbb03 f73ad337
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -347,7 +347,15 @@ public final class Parcel {
    private static final int EX_SERVICE_SPECIFIC = -8;
    private static final int EX_PARCELABLE = -9;
    /** @hide */
    // WARNING: DO NOT add more 'reply' headers. These also need to add work to native
    // code and this encodes extra information in object statuses. If we need to expand
    // this design, we should add a generic way to attach parcelables/structured parcelables
    // to transactions which can work across languages.
    public static final int EX_HAS_NOTED_APPOPS_REPLY_HEADER = -127; // special; see below
    // WARNING: DO NOT add more 'reply' headers. These also need to add work to native
    // code and this encodes extra information in object statuses. If we need to expand
    // this design, we should add a generic way to attach parcelables/structured parcelables
    // to transactions which can work across languages.
    private static final int EX_HAS_STRICTMODE_REPLY_HEADER = -128;  // special; see below
    // EX_TRANSACTION_FAILED is used exclusively in native code.
    // see libbinder's binder/Status.h