Home
last modified time | relevance | path

Searched refs:grpc_chttp2_stream_map_find (Results 1 – 5 of 5) sorted by relevance

/third_party/grpc/test/core/transport/chttp2/
Dstream_map_test.cc42 GPR_ASSERT(nullptr == grpc_chttp2_stream_map_find(&map, 39128)); in test_empty_find()
61 GPR_ASSERT(nullptr == grpc_chttp2_stream_map_find(&map, 0)); in test_basic_add_find()
62 GPR_ASSERT(nullptr == grpc_chttp2_stream_map_find(&map, n + 1)); in test_basic_add_find()
64 got = (uintptr_t)grpc_chttp2_stream_map_find(&map, i); in test_basic_add_find()
83 GPR_ASSERT(nullptr == grpc_chttp2_stream_map_find(map, 0)); in check_delete_evens()
84 GPR_ASSERT(nullptr == grpc_chttp2_stream_map_find(map, n + 1)); in check_delete_evens()
87 got = (uintptr_t)grpc_chttp2_stream_map_find(map, i); in check_delete_evens()
90 GPR_ASSERT(nullptr == grpc_chttp2_stream_map_find(map, i)); in check_delete_evens()
/third_party/grpc/src/core/ext/transport/chttp2/transport/
Dstream_map.cc76 GPR_DEBUG_ASSERT(grpc_chttp2_stream_map_find(map, key) == nullptr); in grpc_chttp2_stream_map_add()
141 GPR_DEBUG_ASSERT(grpc_chttp2_stream_map_find(map, key) == nullptr); in grpc_chttp2_stream_map_delete()
145 void* grpc_chttp2_stream_map_find(grpc_chttp2_stream_map* map, uint32_t key) { in grpc_chttp2_stream_map_find() function
Dstream_map.h53 void* grpc_chttp2_stream_map_find(grpc_chttp2_stream_map* map, uint32_t key);
Dinternal.h758 grpc_chttp2_stream_map_find(&t->stream_map, id)); in grpc_chttp2_parsing_lookup_stream()
Dchttp2_transport.cc650 GPR_ASSERT(grpc_chttp2_stream_map_find(&t->stream_map, id) == nullptr); in ~grpc_chttp2_stream()