Lines Matching defs:key
44 nghttp3_map_key_type key;
78 * Inserts the new |data| with the |key| to the map |map|.
84 * The item associated by |key| already exists.
88 int nghttp3_map_insert(nghttp3_map *map, nghttp3_map_key_type key, void *data);
91 * Returns the data associated by the key |key|. If there is no such
94 void *nghttp3_map_find(nghttp3_map *map, nghttp3_map_key_type key);
97 * Removes the data associated by the key |key| from the |map|. The
104 * The data associated by |key| does not exist.
106 int nghttp3_map_remove(nghttp3_map *map, nghttp3_map_key_type key);