diff options
author | Adrian Roos <roosa@google.com> | 2015-10-20 19:11:23 -0700 |
---|---|---|
committer | Adrian Roos <roosa@google.com> | 2015-10-21 22:32:35 +0000 |
commit | e2f499fb734bc30a1e1c947112caa0727349b6ed (patch) | |
tree | 9ff9ab4b2003e8e5362a40b884ae1d36983007b7 /include | |
parent | 7135d2768bcb46603735ab9b6b4bbaa788d39179 (diff) | |
download | frameworks_native-e2f499fb734bc30a1e1c947112caa0727349b6ed.zip frameworks_native-e2f499fb734bc30a1e1c947112caa0727349b6ed.tar.gz frameworks_native-e2f499fb734bc30a1e1c947112caa0727349b6ed.tar.bz2 |
Track ashmem memory usage in Parcel
Bug: 25004154
Change-Id: Id9d5656dd0605f1b50525596b75601309f67ebdc
Diffstat (limited to 'include')
-rw-r--r-- | include/binder/Parcel.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/binder/Parcel.h b/include/binder/Parcel.h index 3ada1e9..220a935 100644 --- a/include/binder/Parcel.h +++ b/include/binder/Parcel.h @@ -342,9 +342,11 @@ public: private: size_t mBlobAshmemSize; + size_t mOpenAshmemSize; public: size_t getBlobAshmemSize() const; + size_t getOpenAshmemSize() const; }; // --------------------------------------------------------------------------- @@ -412,9 +414,9 @@ inline TextOutput& operator<<(TextOutput& to, const Parcel& parcel) // Generic acquire and release of objects. void acquire_object(const sp<ProcessState>& proc, - const flat_binder_object& obj, const void* who); + const flat_binder_object& obj, const void* who, size_t* outAshmemSize); void release_object(const sp<ProcessState>& proc, - const flat_binder_object& obj, const void* who); + const flat_binder_object& obj, const void* who, size_t* outAshmemSize); void flatten_binder(const sp<ProcessState>& proc, const sp<IBinder>& binder, flat_binder_object* out); |