Lines Matching refs:data
45 void *data;
71 * given the |data| object. The |ptr| will be passed to the |func| as
74 void nghttp3_map_each_free(nghttp3_map *map, int (*func)(void *data, void *ptr),
78 * Inserts the new |data| with the |key| to the map |map|.
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
92 * data, this function returns NULL.
97 * Removes the data associated by the key |key| from the |map|. The
98 * removed data is not freed by this function.
104 * The data associated by |key| does not exist.
119 * Applies the function |func| to each data in the |map| with the
123 * next data. If the |func| returns nonzero, it will not call the
129 * Don't use this function to free each data. Use
132 int nghttp3_map_each(nghttp3_map *map, int (*func)(void *data, void *ptr),