Home
last modified time | relevance | path

Searched refs:readBoolVector (Results 1 – 9 of 9) sorted by relevance

/frameworks/native/libs/binder/tests/
DbinderParcelBenchmark.cpp47 p.readBoolVector(v); in readVector()
/frameworks/native/libs/binder/tests/parcel_fuzzer/
Dbinder.cpp246 PARCEL_READ_WITH_STATUS(std::unique_ptr<std::vector<bool>>, readBoolVector),
247 PARCEL_READ_WITH_STATUS(std::optional<std::vector<bool>>, readBoolVector),
248 PARCEL_READ_WITH_STATUS(std::vector<bool>, readBoolVector),
/frameworks/native/libs/binder/rust/tests/
Dserialization.cpp110 ASSERT_EQ(reply.readBoolVector(&read_bools), OK); in TEST_F()
112 ASSERT_EQ(reply.readBoolVector(&maybe_bools), OK); in TEST_F()
/frameworks/base/core/java/android/os/
DHwParcel.java494 public final ArrayList<Boolean> readBoolVector() { in readBoolVector() method in HwParcel
/frameworks/native/libs/binder/
DPersistableBundle.cpp458 RETURN_IF_FAILED(parcel->readBoolVector(&mBoolVectorMap[key])); in readFromParcelInner()
DParcel.cpp1354 status_t Parcel::readBoolVector(std::optional<std::vector<bool>>* val) const { return readData(val)… in readBoolVector() function in android::Parcel
1355 status_t Parcel::readBoolVector(std::unique_ptr<std::vector<bool>>* val) const { return readData(va… in readBoolVector() function in android::Parcel
1356 status_t Parcel::readBoolVector(std::vector<bool>* val) const { return readData(val); } in readBoolVector() function in android::Parcel
/frameworks/native/include/binder/
DParcel.h552 LIBBINDER_EXPORTED status_t readBoolVector(std::optional<std::vector<bool>>* val) const;
553 LIBBINDER_EXPORTED status_t readBoolVector(std::unique_ptr<std::vector<bool>>* val) const
555 LIBBINDER_EXPORTED status_t readBoolVector(std::vector<bool>* val) const;
/frameworks/native/libs/binder/include/binder/
DParcel.h552 LIBBINDER_EXPORTED status_t readBoolVector(std::optional<std::vector<bool>>* val) const;
553 LIBBINDER_EXPORTED status_t readBoolVector(std::unique_ptr<std::vector<bool>>* val) const
555 LIBBINDER_EXPORTED status_t readBoolVector(std::vector<bool>* val) const;
/frameworks/base/core/api/
Dsystem-current.txt10784 method public final java.util.ArrayList<java.lang.Boolean> readBoolVector();