summaryrefslogtreecommitdiffstats
path: root/include/binder
diff options
context:
space:
mode:
authorDan Sandler <dsandler@android.com>2015-04-21 14:10:17 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-04-21 14:10:23 +0000
commit8f91a6fb040ca22dde5408426abea28ac03d0c86 (patch)
treec7bfc98b56c49dfee391a289167b2c8eac1d211d /include/binder
parent3804378e6a768f539d622ce6a1121d39d9f79e51 (diff)
parentaa5c2346c7291465aaca53f59878582dccbe4835 (diff)
downloadframeworks_native-8f91a6fb040ca22dde5408426abea28ac03d0c86.zip
frameworks_native-8f91a6fb040ca22dde5408426abea28ac03d0c86.tar.gz
frameworks_native-8f91a6fb040ca22dde5408426abea28ac03d0c86.tar.bz2
Merge "Add ashmem stats to Parcels"
Diffstat (limited to 'include/binder')
-rw-r--r--include/binder/Parcel.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/binder/Parcel.h b/include/binder/Parcel.h
index 0ba3abe..da960aa 100644
--- a/include/binder/Parcel.h
+++ b/include/binder/Parcel.h
@@ -337,6 +337,12 @@ public:
public:
inline void* data() { return mData; }
};
+
+private:
+ size_t mBlobAshmemSize;
+
+public:
+ size_t getBlobAshmemSize() const;
};
// ---------------------------------------------------------------------------