summaryrefslogtreecommitdiffstats
path: root/include/binder
diff options
context:
space:
mode:
authorRonghua Wu <ronghuawu@google.com>2015-03-16 11:11:07 -0700
committerRonghua Wu <ronghuawu@google.com>2015-03-19 16:45:04 -0700
commit2d13afdfa1f43973bf3cb917c7d6496a38baa446 (patch)
tree4bce445053e3b5d18960f0759332b960d65f53b7 /include/binder
parent4796bc3b27186de67f1af732be87e20ab1757198 (diff)
downloadframeworks_native-2d13afdfa1f43973bf3cb917c7d6496a38baa446.zip
frameworks_native-2d13afdfa1f43973bf3cb917c7d6496a38baa446.tar.gz
frameworks_native-2d13afdfa1f43973bf3cb917c7d6496a38baa446.tar.bz2
binder: add uint64 support to Parcel.
Bug: 19620911 Change-Id: Ifce5319e4e35afd344dead67ab7ba1cd399476a3
Diffstat (limited to 'include/binder')
-rw-r--r--include/binder/Parcel.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/binder/Parcel.h b/include/binder/Parcel.h
index a52e044..0ba3abe 100644
--- a/include/binder/Parcel.h
+++ b/include/binder/Parcel.h
@@ -96,6 +96,7 @@ public:
status_t writeInt32(int32_t val);
status_t writeUint32(uint32_t val);
status_t writeInt64(int64_t val);
+ status_t writeUint64(uint64_t val);
status_t writeFloat(float val);
status_t writeDouble(double val);
status_t writeCString(const char* str);
@@ -157,6 +158,8 @@ public:
status_t readUint32(uint32_t *pArg) const;
int64_t readInt64() const;
status_t readInt64(int64_t *pArg) const;
+ uint64_t readUint64() const;
+ status_t readUint64(uint64_t *pArg) const;
float readFloat() const;
status_t readFloat(float *pArg) const;
double readDouble() const;