Searched refs:readAligned (Results 1 - 2 of 2) sorted by path

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

Completed in 96 milliseconds