summaryrefslogtreecommitdiffstats
path: root/include/binder
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2014-03-14 23:32:45 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-03-14 23:32:45 +0000
commit446ef4bae2605f4d4ef83c57803a9f8c2e901f8e (patch)
tree8362165a1ee0b89830c3f65b464e156fea6ffa14 /include/binder
parentc45011f27209d5d548be3f96f2a23f7ff7f48c4c (diff)
parentf0190bff38b6c29abbfc4a877442f71fc3d7dad8 (diff)
downloadframeworks_native-446ef4bae2605f4d4ef83c57803a9f8c2e901f8e.zip
frameworks_native-446ef4bae2605f4d4ef83c57803a9f8c2e901f8e.tar.gz
frameworks_native-446ef4bae2605f4d4ef83c57803a9f8c2e901f8e.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 'include/binder')
-rw-r--r--include/binder/Parcel.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/binder/Parcel.h b/include/binder/Parcel.h
index ed2e7df..ce630bd 100644
--- a/include/binder/Parcel.h
+++ b/include/binder/Parcel.h
@@ -105,6 +105,7 @@ public:
status_t writeStrongBinder(const sp<IBinder>& val);
status_t writeWeakBinder(const wp<IBinder>& val);
status_t writeInt32Array(size_t len, const int32_t *val);
+ status_t writeByteArray(size_t len, const uint8_t *val);
template<typename T>
status_t write(const Flattenable<T>& val);