diff options
author | Marco Nelissen <marcone@google.com> | 2014-03-14 22:55:54 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-03-14 22:55:54 +0000 |
commit | b730a45216991cf22c39451c47393b4bccae111b (patch) | |
tree | 0032151858c993966c0da26d7be51d9204022fc3 /libs/binder | |
parent | d9e113f0e0feac1a801f8339d2f907302bd432c5 (diff) | |
parent | f0190bff38b6c29abbfc4a877442f71fc3d7dad8 (diff) | |
download | frameworks_native-b730a45216991cf22c39451c47393b4bccae111b.zip frameworks_native-b730a45216991cf22c39451c47393b4bccae111b.tar.gz frameworks_native-b730a45216991cf22c39451c47393b4bccae111b.tar.bz2 |
am f0190bff: Add support for writing byte arrays to parcels
* commit 'f0190bff38b6c29abbfc4a877442f71fc3d7dad8':
Add support for writing byte arrays to parcels
Diffstat (limited to 'libs/binder')
-rw-r--r-- | libs/binder/Parcel.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index 0210606..17ffa05 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) { |