Lines Matching defs:key
43 ngtcp2_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 ngtcp2_map_insert(ngtcp2_map *map, ngtcp2_map_key_type key, void *data);
90 * Returns the data associated by the key |key|. If there is no such
93 void *ngtcp2_map_find(ngtcp2_map *map, ngtcp2_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 ngtcp2_map_remove(ngtcp2_map *map, ngtcp2_map_key_type key);