Lines Matching refs:hidl_vec
336 struct hidl_vec { struct
339 hidl_vec() : mBuffer(nullptr), mSize(0), mOwnsBuffer(false) { in hidl_vec() function
340 static_assert(hidl_vec<T>::kOffsetOfBuffer == 0, "wrong offset"); in hidl_vec()
345 hidl_vec(size_t size) : hidl_vec() { resize(size); } in hidl_vec() function
347 hidl_vec(const hidl_vec<T> &other) : hidl_vec() { in hidl_vec() function
351 hidl_vec(hidl_vec<T> &&other) noexcept : hidl_vec() { in hidl_vec() function
355 hidl_vec(const std::initializer_list<T> list) : hidl_vec() { *this = list; } in hidl_vec() argument
357 hidl_vec(const std::vector<T> &other) : hidl_vec() { in hidl_vec() function
365 hidl_vec(InputIterator first, InputIterator last) : hidl_vec() { in hidl_vec() function
383 ~hidl_vec() { in ~hidl_vec() argument
421 hidl_vec &operator=(hidl_vec &&other) noexcept { argument
432 hidl_vec &operator=(const hidl_vec &other) {
444 hidl_vec &operator=(const std::vector<T> &other) {
452 hidl_vec& operator=(const std::initializer_list<T> list) {
480 bool operator==(const hidl_vec &other) const { argument
493 inline bool operator!=(const hidl_vec &other) const { argument
605 const size_t hidl_vec<T>::kOffsetOfBuffer = offsetof(hidl_vec<T>, mBuffer); argument
1011 std::string toString(const hidl_vec<T> &a) {