Home
last modified time | relevance | path

Searched refs:write_cb_pool (Results 1 – 3 of 3) sorted by relevance

/external/grpc-grpc/src/core/ext/transport/chttp2/transport/
Dwriting.cc42 cb->next = t->write_cb_pool; in finish_write_cb()
43 t->write_cb_pool = cb; in finish_write_cb()
Dchttp2_transport.cc187 while (t->write_cb_pool) { in destruct_transport()
188 grpc_chttp2_write_cb* next = t->write_cb_pool->next; in destruct_transport()
189 gpr_free(t->write_cb_pool); in destruct_transport()
190 t->write_cb_pool = next; in destruct_transport()
1298 grpc_chttp2_write_cb* cb = t->write_cb_pool; in continue_fetching_send_locked()
1302 t->write_cb_pool = cb->next; in continue_fetching_send_locked()
2150 cb->next = t->write_cb_pool; in flush_write_list()
2151 t->write_cb_pool = cb; in flush_write_list()
Dinternal.h425 grpc_chttp2_write_cb* write_cb_pool; member