Home
last modified time | relevance | path

Searched refs:readUint64Vector (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/libs/binder/tests/parcel_fuzzer/
Dbinder.cpp236 PARCEL_READ_WITH_STATUS(std::unique_ptr<std::vector<uint64_t>>, readUint64Vector),
237 PARCEL_READ_WITH_STATUS(std::optional<std::vector<uint64_t>>, readUint64Vector),
238 PARCEL_READ_WITH_STATUS(std::vector<uint64_t>, readUint64Vector),
/frameworks/native/libs/binder/rust/tests/
Dserialization.cpp255 ASSERT_EQ(reply.readUint64Vector(&read_u64s), OK); in TEST_F()
257 ASSERT_EQ(reply.readUint64Vector(&maybe_u64s), OK); in TEST_F()
/frameworks/native/libs/binder/include/binder/
DParcel.h541 LIBBINDER_EXPORTED status_t readUint64Vector(std::optional<std::vector<uint64_t>>* val) const;
542 LIBBINDER_EXPORTED status_t readUint64Vector(std::unique_ptr<std::vector<uint64_t>>* val) const
544 LIBBINDER_EXPORTED status_t readUint64Vector(std::vector<uint64_t>* val) const;
/frameworks/native/include/binder/
DParcel.h541 LIBBINDER_EXPORTED status_t readUint64Vector(std::optional<std::vector<uint64_t>>* val) const;
542 LIBBINDER_EXPORTED status_t readUint64Vector(std::unique_ptr<std::vector<uint64_t>>* val) const
544 LIBBINDER_EXPORTED status_t readUint64Vector(std::vector<uint64_t>* val) const;
/frameworks/native/libs/binder/tests/
DbinderLibTest.cpp1597 EXPECT_THAT(reply.readUint64Vector(&readValue), StatusEq(OK)); in TEST_F()
1635 EXPECT_THAT(reply.readUint64Vector(&readValue), StatusEq(OK)); in TEST_F()
2468 auto err = data.readUint64Vector(&vector); in onTransact()
/frameworks/native/libs/binder/
DParcel.cpp1332 status_t Parcel::readUint64Vector(std::optional<std::vector<uint64_t>>* val) const { return readDat… in readUint64Vector() function in android::Parcel
1333 status_t Parcel::readUint64Vector(std::unique_ptr<std::vector<uint64_t>>* val) const { return readD… in readUint64Vector() function in android::Parcel
1334 status_t Parcel::readUint64Vector(std::vector<uint64_t>* val) const { return readData(val); } in readUint64Vector() function in android::Parcel