Home
last modified time | relevance | path

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

/freebsd/sys/netgraph/bluetooth/include/
H A Dng_btsocket_sco.h42 struct ng_hook;
50 struct ng_hook *hook; /* downstream hook */
H A Dng_btsocket_l2cap.h42 struct ng_hook;
47 struct ng_hook *hook; /* downstream hook */
/freebsd/sys/netgraph/
H A Dnetgraph.h91 struct ng_hook ;
96 typedef struct ng_hook *hook_p;
98 typedef struct ng_hook const *hook_cp;
123 struct ng_hook { struct
128 struct ng_hook *hk_peer; /* the other end of this link */ argument
130 LIST_ENTRY(ng_hook) hk_hooks; /* linked list of all hooks on node */ argument
139 SLIST_ENTRY(ng_hook) hk_all; /* all existing items */ argument
379 LIST_HEAD(hooks, ng_hook) nd_hooks; /* linked list of node hooks */
H A Dng_device.c117 struct ng_hook *hook;
H A Dng_base.c92 static SLIST_HEAD(, ng_hook) ng_allhooks;
93 static LIST_HEAD(, ng_hook) ng_freehooks; /* in debug, we never free() them */
147 struct ng_hook ng_deadhook = {
297 SLIST_ENTRY(ng_hook) temp; in ng_alloc_hook()
303 bzero(hook, sizeof(struct ng_hook)); in ng_alloc_hook()