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/rust/tests/
Dserialization.cpp108 ASSERT_EQ(reply.readBoolVector(&read_bools), OK); in TEST_F()
110 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/include/binder/
DParcel.h441 status_t readBoolVector(std::optional<std::vector<bool>>* val) const;
442 …status_t readBoolVector(std::unique_ptr<std::vector<bool>>* val) const __attribute__((d…
443 status_t readBoolVector(std::vector<bool>* val) const;
/frameworks/native/libs/binder/include/binder/
DParcel.h441 status_t readBoolVector(std::optional<std::vector<bool>>* val) const;
442 …status_t readBoolVector(std::unique_ptr<std::vector<bool>>* val) const __attribute__((d…
443 status_t readBoolVector(std::vector<bool>* val) const;
/frameworks/native/libs/binder/
DPersistableBundle.cpp466 RETURN_IF_FAILED(parcel->readBoolVector(&mBoolVectorMap[key])); in readFromParcelInner()
DParcel.cpp932 status_t Parcel::readBoolVector(std::optional<std::vector<bool>>* val) const { return readData(val)… in readBoolVector() function in android::Parcel
933 status_t Parcel::readBoolVector(std::unique_ptr<std::vector<bool>>* val) const { return readData(va… in readBoolVector() function in android::Parcel
934 status_t Parcel::readBoolVector(std::vector<bool>* val) const { return readData(val); } in readBoolVector() function in android::Parcel
/frameworks/base/core/api/
Dtest-lint-baseline.txt272 ConcreteCollection: android.os.HwParcel#readBoolVector():
1332 MissingNullability: android.os.HwParcel#readBoolVector():
Dsystem-current.txt8242 method public final java.util.ArrayList<java.lang.Boolean> readBoolVector();