Lines Matching refs:KeyParameter
45 explicit AuthorizationSet(const hidl_vec<KeyParameter>& other) { *this = other; } in AuthorizationSet()
60 AuthorizationSet& operator=(const hidl_vec<KeyParameter>& other) {
92 const KeyParameter* data() const { return data_.data(); } in data()
131 std::vector<KeyParameter>::const_iterator begin() const { return data_.begin(); } in begin()
136 std::vector<KeyParameter>::const_iterator end() const { return data_.end(); } in end()
143 KeyParameter& operator[](int n);
150 const KeyParameter& operator[](int n) const;
177 void push_back(const KeyParameter& param) { data_.push_back(param); } in push_back()
178 void push_back(KeyParameter&& param) { data_.push_back(std::move(param)); } in push_back()
196 hidl_vec<KeyParameter> hidl_data() const { in hidl_data()
197 hidl_vec<KeyParameter> result; in hidl_data()
198 result.setToExternal(const_cast<KeyParameter*>(data()), size()); in hidl_data()
206 NullOr<const KeyParameter&> GetEntry(Tag tag) const;
208 std::vector<KeyParameter> data_;