summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2014-03-20 10:48:35 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2014-03-20 10:48:35 -0700
commit7c1cdbdd68c4f809dc5616654740ea98a275892d (patch)
tree4b2f6b30633011ae69753d3d9fe02cbbe00149c2
parent4ddcb75861cfb2835fcc20f2071222d2f55450ba (diff)
parente23f8b8f0bf32e79c1d0f9183c064ab61354c452 (diff)
downloadnative-7c1cdbdd68c4f809dc5616654740ea98a275892d.tar.gz
am e23f8b8f: am 1f70863d: am 37b44969: Add support for writing byte arrays to parcels
* commit 'e23f8b8f0bf32e79c1d0f9183c064ab61354c452': Add support for writing byte arrays to parcels
-rw-r--r--include/binder/Parcel.h1
-rw-r--r--libs/binder/Parcel.cpp11
2 files changed, 12 insertions, 0 deletions
diff --git a/include/binder/Parcel.h b/include/binder/Parcel.h
index 3ff95d2827..40ba529f61 100644
--- a/include/binder/Parcel.h
+++ b/include/binder/Parcel.h
@@ -103,6 +103,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);
template<typename T>
status_t write(const LightFlattenable<T>& val);
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp
index 4c15913a7f..cb90b83683 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);