Lines Matching defs:key
43 nghttp2_map_key_type key;
77 * Inserts the new |data| with the |key| to the map |map|.
83 * The item associated by |key| already exists.
87 int nghttp2_map_insert(nghttp2_map *map, nghttp2_map_key_type key, void *data);
90 * Returns the data associated by the key |key|. If there is no such
93 void *nghttp2_map_find(nghttp2_map *map, nghttp2_map_key_type key);
96 * Removes the data associated by the key |key| from the |map|. The
103 * The data associated by |key| does not exist.
105 int nghttp2_map_remove(nghttp2_map *map, nghttp2_map_key_type key);