Searched refs:readBoolVector (Results 1 – 9 of 9) sorted by relevance
47 p.readBoolVector(v); in readVector()
246 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),
110 ASSERT_EQ(reply.readBoolVector(&read_bools), OK); in TEST_F()112 ASSERT_EQ(reply.readBoolVector(&maybe_bools), OK); in TEST_F()
494 public final ArrayList<Boolean> readBoolVector() { in readBoolVector() method in HwParcel
458 RETURN_IF_FAILED(parcel->readBoolVector(&mBoolVectorMap[key])); in readFromParcelInner()
1354 status_t Parcel::readBoolVector(std::optional<std::vector<bool>>* val) const { return readData(val)… in readBoolVector() function in android::Parcel1355 status_t Parcel::readBoolVector(std::unique_ptr<std::vector<bool>>* val) const { return readData(va… in readBoolVector() function in android::Parcel1356 status_t Parcel::readBoolVector(std::vector<bool>* val) const { return readData(val); } in readBoolVector() function in android::Parcel
552 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) const555 LIBBINDER_EXPORTED status_t readBoolVector(std::vector<bool>* val) const;
10784 method public final java.util.ArrayList<java.lang.Boolean> readBoolVector();