/frameworks/native/libs/binder/tests/parcel_fuzzer/ |
D | binder.cpp | 206 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/ |
D | PersistentSurface.h | 70 parcel->readByteVector(&tokenVector); in readFromParcel()
|
/frameworks/native/libs/binder/tests/ |
D | binderParcelBenchmark.cpp | 49 p.readByteVector(v); in readVector()
|
/frameworks/native/libs/binder/rust/tests/ |
D | serialization.cpp | 139 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/ |
D | LayerMetadata.cpp | 78 status = parcel->readByteVector(&mMap[key]); in readFromParcel()
|
/frameworks/base/libs/services/src/os/ |
D | DropBoxManager.cpp | 127 err = in->readByteVector(&mData); in readFromParcel()
|
/frameworks/base/libs/incident/src/ |
D | IncidentReportArgs.cpp | 143 err = in->readByteVector(&mHeaders[i]); in readFromParcel()
|
/frameworks/native/include/binder/ |
D | Parcel.h | 475 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/ |
D | Parcel.h | 475 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/ |
D | Parcel.cpp | 1003 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
|
D | RpcState.cpp | 445 return reply.readByteVector(sessionIdOut); in getSessionId()
|
/frameworks/av/media/libmedia/ |
D | IMediaExtractor.cpp | 235 status_t err = data.readByteVector(&casToken); in onTransact()
|
/frameworks/native/libs/input/ |
D | Input.cpp | 703 status_t result = parcel->readByteVector(&hmac); in readFromParcel()
|