Home
last modified time | relevance | path

Searched refs:readAligned (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/libs/binder/
DParcel.cpp988 status_t Parcel::readAligned(T *pArg) const { in readAligned() function in android::Parcel
1002 T Parcel::readAligned() const { in readAligned() function in android::Parcel
1004 if (readAligned(&result) != NO_ERROR) { in readAligned()
1028 return readAligned(pArg); in readInt32()
1033 return readAligned<int32_t>(); in readInt32()
1039 return readAligned(pArg); in readInt64()
1045 return readAligned<int64_t>(); in readInt64()
1052 ret = readAligned(&ptr); in readPointer()
1060 return readAligned<binder_uintptr_t>(); in readPointer()
1066 return readAligned(pArg); in readFloat()
[all …]
/frameworks/native/include/binder/
DParcel.h248 status_t readAligned(T *pArg) const;
250 template<class T> T readAligned() const;