Searched refs:readBoolVector (Results 1 – 11 of 11) sorted by relevance
47 p.readBoolVector(v); in readVector()
1135 reply.readBoolVector(&events); in TEST_F()
245 PARCEL_READ_WITH_STATUS(std::unique_ptr<std::vector<bool>>, readBoolVector),246 PARCEL_READ_WITH_STATUS(std::optional<std::vector<bool>>, readBoolVector),247 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
461 RETURN_IF_FAILED(parcel->readBoolVector(&mBoolVectorMap[key])); in readFromParcelInner()
1341 status_t Parcel::readBoolVector(std::optional<std::vector<bool>>* val) const { return readData(val)… in readBoolVector() function in android::Parcel1342 status_t Parcel::readBoolVector(std::unique_ptr<std::vector<bool>>* val) const { return readData(va… in readBoolVector() function in android::Parcel1343 status_t Parcel::readBoolVector(std::vector<bool>* val) const { return readData(val); } in readBoolVector() function in android::Parcel
553 LIBBINDER_EXPORTED status_t readBoolVector(std::optional<std::vector<bool>>* val) const;554 LIBBINDER_EXPORTED status_t readBoolVector(std::unique_ptr<std::vector<bool>>* val) const556 LIBBINDER_EXPORTED status_t readBoolVector(std::vector<bool>* val) const;
164 return callParcel("readBoolVector", [&]() { return parcel.readBoolVector(v); }); in read()
11231 method public final java.util.ArrayList<java.lang.Boolean> readBoolVector();