Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/tests/parcel_fuzzer/
Dbinder.cpp206 PARCEL_READ_WITH_STATUS(std::unique_ptr<std::vector<int8_t>>, readByteVector),
207 PARCEL_READ_WITH_STATUS(std::optional<std::vector<int8_t>>, readByteVector),
208 PARCEL_READ_WITH_STATUS(std::vector<int8_t>, readByteVector),
209 PARCEL_READ_WITH_STATUS(std::unique_ptr<std::vector<uint8_t>>, readByteVector),
210 PARCEL_READ_WITH_STATUS(std::optional<std::vector<uint8_t>>, readByteVector),
211 PARCEL_READ_WITH_STATUS(std::vector<uint8_t>, readByteVector),
/frameworks/av/media/libstagefright/include/media/stagefright/
DPersistentSurface.h70 parcel->readByteVector(&tokenVector); in readFromParcel()
/frameworks/native/libs/binder/tests/
DbinderParcelBenchmark.cpp49 p.readByteVector(v); in readVector()
/frameworks/native/libs/binder/rust/tests/
Dserialization.cpp139 ASSERT_EQ(reply.readByteVector(&read_i8s), OK); in TEST_F()
141 ASSERT_EQ(reply.readByteVector(&read_u8s), OK); in TEST_F()
143 ASSERT_EQ(reply.readByteVector(&maybe_i8s), OK); in TEST_F()
/frameworks/native/libs/gui/
DLayerMetadata.cpp78 status = parcel->readByteVector(&mMap[key]); in readFromParcel()
/frameworks/base/libs/services/src/os/
DDropBoxManager.cpp127 err = in->readByteVector(&mData); in readFromParcel()
/frameworks/base/libs/incident/src/
DIncidentReportArgs.cpp143 err = in->readByteVector(&mHeaders[i]); in readFromParcel()
/frameworks/native/include/binder/
DParcel.h475 status_t readByteVector(std::optional<std::vector<int8_t>>* val) const;
476 …status_t readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const __attribute__(…
477 status_t readByteVector(std::vector<int8_t>* val) const;
478 status_t readByteVector(std::optional<std::vector<uint8_t>>* val) const;
479 …status_t readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const __attribute__…
480 status_t readByteVector(std::vector<uint8_t>* val) const;
/frameworks/native/libs/binder/include/binder/
DParcel.h475 status_t readByteVector(std::optional<std::vector<int8_t>>* val) const;
476 …status_t readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const __attribute__(…
477 status_t readByteVector(std::vector<int8_t>* val) const;
478 status_t readByteVector(std::optional<std::vector<uint8_t>>* val) const;
479 …status_t readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const __attribute__…
480 status_t readByteVector(std::vector<uint8_t>* val) const;
/frameworks/native/libs/binder/
DParcel.cpp1003 status_t Parcel::readByteVector(std::vector<int8_t>* val) const { return readData(val); } in readByteVector() function in android::Parcel
1004 status_t Parcel::readByteVector(std::vector<uint8_t>* val) const { return readData(val); } in readByteVector() function in android::Parcel
1005 status_t Parcel::readByteVector(std::optional<std::vector<int8_t>>* val) const { return readData(va… in readByteVector() function in android::Parcel
1006 status_t Parcel::readByteVector(std::unique_ptr<std::vector<int8_t>>* val) const { return readData(… in readByteVector() function in android::Parcel
1007 status_t Parcel::readByteVector(std::optional<std::vector<uint8_t>>* val) const { return readData(v… in readByteVector() function in android::Parcel
1008 status_t Parcel::readByteVector(std::unique_ptr<std::vector<uint8_t>>* val) const { return readData… in readByteVector() function in android::Parcel
DRpcState.cpp445 return reply.readByteVector(sessionIdOut); in getSessionId()
/frameworks/av/media/libmedia/
DIMediaExtractor.cpp235 status_t err = data.readByteVector(&casToken); in onTransact()
/frameworks/native/libs/input/
DInput.cpp703 status_t result = parcel->readByteVector(&hmac); in readFromParcel()