Lines Matching +defs:key +defs:value

43   StatusTuple string_to_key(const std::string& key_str, KeyType* key) {  in string_to_key()
47 StatusTuple string_to_leaf(const std::string& value_str, ValueType* value) { in string_to_leaf()
51 StatusTuple key_to_string(const KeyType* key, std::string& key_str) { in key_to_string()
59 StatusTuple leaf_to_string(const ValueType* value, std::string& value_str) { in leaf_to_string()
70 bool lookup(void* key, void* value) { in lookup()
74 bool first(void* key) { in first()
78 bool next(void* key, void* next_key) { in next()
82 bool update(void* key, void* value) { in update()
86 bool remove(void* key) { return bpf_delete_elem(desc.fd, key) >= 0; } in remove()
132 virtual StatusTuple get_value(const int& index, ValueType& value) { in get_value()
138 virtual StatusTuple update_value(const int& index, const ValueType& value) { in update_value()
146 ValueType value; variable
177 StatusTuple get_value(const int& index, std::vector<ValueType>& value) { in get_value()
183 const std::vector<ValueType>& value) { in update_value()
206 virtual StatusTuple get_value(const KeyType& key, ValueType& value) { in get_value()
212 virtual StatusTuple update_value(const KeyType& key, const ValueType& value) { in update_value()
219 virtual StatusTuple remove_value(const KeyType& key) { in remove_value()
226 ValueType value; variable
234 ValueType value; in get_table_offline() local
279 StatusTuple get_value(const KeyType& key, std::vector<ValueType>& value) { in get_value()
284 StatusTuple update_value(const KeyType& key, in update_value()
285 const std::vector<ValueType>& value) { in update_value()