Searched refs:nghttp2_pq (Results 1 – 3 of 3) sorted by relevance
/AliOS-Things-master/components/linkkit/external/nghttp2/ |
A D | nghttp2_pq.h | 54 } nghttp2_pq; typedef 65 int nghttp2_pq_init(nghttp2_pq *pq, nghttp2_less less, nghttp2_mem *mem); 71 void nghttp2_pq_free(nghttp2_pq *pq); 82 int nghttp2_pq_push(nghttp2_pq *pq, nghttp2_pq_entry *item); 88 nghttp2_pq_entry *nghttp2_pq_top(nghttp2_pq *pq); 94 void nghttp2_pq_pop(nghttp2_pq *pq); 99 int nghttp2_pq_empty(nghttp2_pq *pq); 104 size_t nghttp2_pq_size(nghttp2_pq *pq); 114 void nghttp2_pq_update(nghttp2_pq *pq, nghttp2_pq_item_cb fun, void *arg); 123 int nghttp2_pq_each(nghttp2_pq *pq, nghttp2_pq_item_cb fun, void *arg); [all …]
|
A D | nghttp2_pq.c | 32 int nghttp2_pq_init(nghttp2_pq *pq, nghttp2_less less, nghttp2_mem *mem) in nghttp2_pq_init() 42 void nghttp2_pq_free(nghttp2_pq *pq) in nghttp2_pq_free() 48 static void swap(nghttp2_pq *pq, size_t i, size_t j) in swap() 59 static void bubble_up(nghttp2_pq *pq, size_t index) in bubble_up() 72 int nghttp2_pq_push(nghttp2_pq *pq, nghttp2_pq_entry *item) in nghttp2_pq_push() 95 nghttp2_pq_entry *nghttp2_pq_top(nghttp2_pq *pq) in nghttp2_pq_top() 104 static void bubble_down(nghttp2_pq *pq, size_t index) in bubble_down() 126 void nghttp2_pq_pop(nghttp2_pq *pq) in nghttp2_pq_pop() 136 void nghttp2_pq_remove(nghttp2_pq *pq, nghttp2_pq_entry *item) in nghttp2_pq_remove() 161 int nghttp2_pq_empty(nghttp2_pq *pq) in nghttp2_pq_empty() [all …]
|
A D | nghttp2_stream.h | 144 nghttp2_pq obq;
|
Completed in 6 milliseconds