Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/netgraph/bluetooth/include/
Dng_btsocket_sco.h43 struct ng_hook;
51 struct ng_hook *hook; /* downstream hook */
Dng_btsocket_l2cap.h43 struct ng_hook;
48 struct ng_hook *hook; /* downstream hook */
/freebsd-12-stable/sys/netgraph/
Dnetgraph.h85 struct ng_hook ;
90 typedef struct ng_hook *hook_p;
92 typedef struct ng_hook const *hook_cp;
117 struct ng_hook { struct
122 struct ng_hook *hk_peer; /* the other end of this link */ argument
124 LIST_ENTRY(ng_hook) hk_hooks; /* linked list of all hooks on node */ argument
133 SLIST_ENTRY(ng_hook) hk_all; /* all existing items */ argument
374 LIST_HEAD(hooks, ng_hook) nd_hooks; /* linked list of node hooks */
Dng_device.c94 struct ng_hook *hook;
Dng_base.c91 static SLIST_HEAD(, ng_hook) ng_allhooks;
92 static LIST_HEAD(, ng_hook) ng_freehooks; /* in debug, we never free() them */
146 struct ng_hook ng_deadhook = {
296 SLIST_ENTRY(ng_hook) temp; in ng_alloc_hook()
302 bzero(hook, sizeof(struct ng_hook)); in ng_alloc_hook()