Home
last modified time | relevance | path

Searched refs:readByteVector (Results 1 – 10 of 10) sorted by relevance

/frameworks/opt/net/lowpan/libandroid_net_lowpan/
DLowpanIdentity.cpp148 RETURN_IF_FAILED(parcel->readByteVector(&rawName)); in readFromParcel()
153 RETURN_IF_FAILED(parcel->readByteVector(&mXpanid)); in readFromParcel()
DLowpanCredential.cpp127 RETURN_IF_FAILED(parcel->readByteVector(&mMasterKey)); in readFromParcel()
DLowpanBeaconInfo.cpp167 RETURN_IF_FAILED(parcel->readByteVector(&mBeaconAddress)); in readFromParcel()
/frameworks/native/libs/binder/
DIpPrefix.cpp76 RETURN_IF_FAILED(parcel->readByteVector(&byte_vector)); in readFromParcel()
DValue.cpp396 HANDLE_READ_TYPE(vector<uint8_t>, VAL_BYTEARRAY, readByteVector) in readFromParcel()
DParcel.cpp1690 status_t Parcel::readByteVector(std::vector<int8_t>* val) const { in readByteVector() function in android::Parcel
1694 status_t Parcel::readByteVector(std::vector<uint8_t>* val) const { in readByteVector() function in android::Parcel
1698 status_t Parcel::readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const { in readByteVector() function in android::Parcel
1702 status_t Parcel::readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const { in readByteVector() function in android::Parcel
/frameworks/base/libs/incident/src/
DIncidentReportArgs.cpp117 err = in->readByteVector(&mHeaders[i]); in readFromParcel()
/frameworks/base/libs/services/src/os/
DDropBoxManager.cpp125 err = in->readByteVector(&mData); in readFromParcel()
/frameworks/native/libs/binder/include/binder/
DParcel.h304 status_t readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const;
305 status_t readByteVector(std::vector<int8_t>* val) const;
306 status_t readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const;
307 status_t readByteVector(std::vector<uint8_t>* val) const;
/frameworks/av/media/libmedia/
DIMediaExtractor.cpp218 status_t err = data.readByteVector(&casToken); in onTransact()