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

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

Merge changes I30c813d3,Ie3eb90ad am: 9c6cc875 am: 775fe122

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

Change-Id: I0792ffd92fc97f2719272de3456dbcf4224f839d
parents 2a685820 775fe122
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -137,8 +137,8 @@ BpBinder* BpBinder::create(int32_t handle) {
}

BpBinder::BpBinder(int32_t handle, int32_t trackedUid)
    : mHandle(handle)
    , mStability(0)
    : mStability(0)
    , mHandle(handle)
    , mAlive(1)
    , mObitsSent(0)
    , mObituaries(nullptr)
+3 −4
Original line number Diff line number Diff line
@@ -109,19 +109,18 @@ public:
        KeyedVector<const void*, entry_t> mObjects;
    };

protected:
private:
                        BpBinder(int32_t handle,int32_t trackedUid);
    virtual             ~BpBinder();
    virtual void        onFirstRef();
    virtual void        onLastStrongRef(const void* id);
    virtual bool        onIncStrongAttempted(uint32_t flags, const void* id);

private:
    const   int32_t             mHandle;

    friend ::android::internal::Stability;
            int32_t             mStability;

    const   int32_t             mHandle;

    struct Obituary {
        wp<DeathRecipient> recipient;
        void* cookie;