From f0190bff38b6c29abbfc4a877442f71fc3d7dad8 Mon Sep 17 00:00:00 2001 From: Marco Nelissen Date: Thu, 13 Mar 2014 14:17:40 -0700 Subject: Add support for writing byte arrays to parcels b/13418320 Change-Id: I2285df9e9d3dc8a6a54055b13b352b81660bf45d --- include/binder/Parcel.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/binder') diff --git a/include/binder/Parcel.h b/include/binder/Parcel.h index c95f297..98f20de 100644 --- a/include/binder/Parcel.h +++ b/include/binder/Parcel.h @@ -102,6 +102,7 @@ public: status_t writeStrongBinder(const sp& val); status_t writeWeakBinder(const wp& val); status_t writeInt32Array(size_t len, const int32_t *val); + status_t writeByteArray(size_t len, const uint8_t *val); template status_t write(const Flattenable& val); -- cgit v1.1