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

Commit d13aab1c authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "libbinder: BpBinder: hide layout" am: e1bff7cf am: 94f6b215 am: 80e3e330

am: 97b1417e

Change-Id: Ifa20630242f8cbca80fe561b1c6f6887c3b80025
parents 567f8080 97b1417e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -148,6 +148,10 @@ BpBinder::BpBinder(int32_t handle, int32_t trackedUid)
    IPCThreadState::self()->incWeakHandle(handle, this);
}

int32_t BpBinder::handle() const {
    return mHandle;
}

bool BpBinder::isDescriptorCached() const {
    Mutex::Autolock _l(mLock);
    return mDescriptorCache.size() ? true : false;
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ class BpBinder : public IBinder
public:
    static BpBinder*    create(int32_t handle);

    inline  int32_t     handle() const { return mHandle; }
    int32_t             handle() const;

    virtual const String16&    getInterfaceDescriptor() const;
    virtual bool        isBinderAlive() const;