Lines Matching defs:opl
28 void nghttp3_opl_init(nghttp3_opl *opl) { opl->head = NULL; }
30 void nghttp3_opl_push(nghttp3_opl *opl, nghttp3_opl_entry *ent) {
31 ent->next = opl->head;
32 opl->head = ent;
35 nghttp3_opl_entry *nghttp3_opl_pop(nghttp3_opl *opl) {
36 nghttp3_opl_entry *ent = opl->head;
42 opl->head = ent->next;
47 void nghttp3_opl_clear(nghttp3_opl *opl) { opl->head = NULL; }