Searched refs:readUint64Vector (Results 1 – 6 of 6) sorted by relevance
/frameworks/native/libs/binder/tests/parcel_fuzzer/ |
D | binder.cpp | 236 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/ |
D | serialization.cpp | 255 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/ |
D | Parcel.h | 541 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/ |
D | Parcel.h | 541 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/ |
D | binderLibTest.cpp | 1597 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/ |
D | Parcel.cpp | 1332 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
|