diff options
author | Marco Nelissen <marcone@google.com> | 2014-03-20 10:04:42 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-03-20 10:04:42 -0700 |
commit | 1f70863d13668dc97047df15cce547ebc8435ff2 (patch) | |
tree | 2b99521f1431aa59467bef1eec9ee7296d7d5967 | |
parent | 516efc1bea1c05492c5d4636a589cfc686661842 (diff) | |
parent | 37b44969c0ca1d00e213da685dfbb2807f2bab30 (diff) | |
download | frameworks_native-1f70863d13668dc97047df15cce547ebc8435ff2.zip frameworks_native-1f70863d13668dc97047df15cce547ebc8435ff2.tar.gz frameworks_native-1f70863d13668dc97047df15cce547ebc8435ff2.tar.bz2 |
am 37b44969: Add support for writing byte arrays to parcels
* commit '37b44969c0ca1d00e213da685dfbb2807f2bab30':
Add support for writing byte arrays to parcels
-rw-r--r-- | include/binder/Parcel.h | 1 | ||||
-rw-r--r-- | libs/binder/Parcel.cpp | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/binder/Parcel.h b/include/binder/Parcel.h index 33b2f00..939cfbe 100644 --- a/include/binder/Parcel.h +++ b/include/binder/Parcel.h @@ -101,6 +101,7 @@ public: status_t writeStrongBinder(const sp<IBinder>& val); status_t writeWeakBinder(const wp<IBinder>& val); status_t write(const Flattenable& val); + status_t writeByteArray(size_t len, const uint8_t *val); // Place a native_handle into the parcel (the native_handle's file- // descriptors are dup'ed, so it is safe to delete the native_handle diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index 4c15913..cb90b83 100644 --- a/libs/binder/Parcel.cpp +++ b/libs/binder/Parcel.cpp @@ -617,6 +617,17 @@ status_t Parcel::writeInt32(int32_t val) return writeAligned(val); } +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) { return writeAligned(val); |