Home
last modified time | relevance | path

Searched refs:cblist (Results 1 – 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/unbound/services/
Doutside_network.c2581 if(!sq->cblist)
2664 sq->cblist = NULL;
2970 int dobackup = (sq->cblist && sq->cblist->next); /* >1 cb*/
3036 while((p=sq->cblist) != NULL) {
3037 sq->cblist = p->next; /* remove this element */
3050 log_assert(sq->cblist == NULL);
3506 cb->next = sq->cblist;
3507 sq->cblist = cb;
3515 struct service_callback** pp = &sq->cblist;
3532 if(!sq->cblist && !sq->busy && !sq->to_be_deleted) {
[all …]
Doutside_network.h516 struct service_callback* cblist; member