diff --git a/include/binder/Parcel.h b/include/binder/Parcel.h index c95f297b4..98f20de21 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); diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index 021060657..17ffa05d9 100644 --- a/libs/binder/Parcel.cpp +++ b/libs/binder/Parcel.cpp @@ -628,6 +628,16 @@ status_t Parcel::writeInt32Array(size_t len, const int32_t *val) { } return ret; } +status_t Parcel::writeByteArray(size_t len, const uint8_t *val) { + if (!val) { + return writeAligned(-1); + } + status_t ret = writeAligned(len); + if (ret == NO_ERROR) { + ret = write(val, len * sizeof(*val)); + } + return ret; +} status_t Parcel::writeInt64(int64_t val) {