Searched refs:nghttp2_map_find (Results 1 – 8 of 8) sorted by relevance
/third_party/nghttp2/tests/ |
D | nghttp2_map_test.c | 53 CU_ASSERT(strcmp("foo", ((strentry *)nghttp2_map_find(&map, 1))->str) == 0); in test_nghttp2_map() 60 CU_ASSERT(strcmp("foo", ((strentry *)nghttp2_map_find(&map, 1))->str) == 0); in test_nghttp2_map() 71 CU_ASSERT(strcmp("baz", ((strentry *)nghttp2_map_find(&map, 3))->str) == 0); in test_nghttp2_map() 75 CU_ASSERT(NULL == nghttp2_map_find(&map, 3)); in test_nghttp2_map() 79 CU_ASSERT(NULL == nghttp2_map_find(&map, 1)); in test_nghttp2_map() 84 CU_ASSERT(NULL == nghttp2_map_find(&map, 1)); in test_nghttp2_map() 86 CU_ASSERT(strcmp("bar", ((strentry *)nghttp2_map_find(&map, 2))->str) == 0); in test_nghttp2_map() 87 CU_ASSERT(strcmp("shrubbery", ((strentry *)nghttp2_map_find(&map, 4))->str) == in test_nghttp2_map() 133 nghttp2_map_find(&map, order[i]); in test_nghttp2_map_functional()
|
/third_party/nghttp2/lib/ |
D | nghttp2_map.h | 114 nghttp2_map_entry *nghttp2_map_find(nghttp2_map *map, key_type key);
|
D | libnghttp2_shared.map | 163 nghttp2_map_find;
|
D | nghttp2_map.c | 270 nghttp2_map_entry *nghttp2_map_find(nghttp2_map *map, key_type key) { in nghttp2_map_find() function
|
D | nghttp2_session.c | 283 stream = (nghttp2_stream *)nghttp2_map_find(&session->streams, stream_id); in nghttp2_session_get_stream() 295 return (nghttp2_stream *)nghttp2_map_find(&session->streams, stream_id); in nghttp2_session_get_stream_raw()
|
/third_party/node/deps/nghttp2/lib/ |
D | nghttp2_map.h | 114 nghttp2_map_entry *nghttp2_map_find(nghttp2_map *map, key_type key);
|
D | nghttp2_map.c | 270 nghttp2_map_entry *nghttp2_map_find(nghttp2_map *map, key_type key) { in nghttp2_map_find() function
|
D | nghttp2_session.c | 283 stream = (nghttp2_stream *)nghttp2_map_find(&session->streams, stream_id); in nghttp2_session_get_stream() 295 return (nghttp2_stream *)nghttp2_map_find(&session->streams, stream_id); in nghttp2_session_get_stream_raw()
|