Searched refs:node_p (Results 1 - 25 of 99) sorted by relevance

1234

/freebsd-10.2-release/sys/netgraph/bluetooth/hci/
H A Dng_hci_cmds.h44 void ng_hci_process_command_timeout (node_p, hook_p, void *, int);
H A Dng_hci_ulpi.h51 void ng_hci_process_con_timeout (node_p, hook_p, void *, int);
H A Dng_hci_misc.h38 void ng_hci_node_is_up (node_p, hook_p, void *, int);
/freebsd-10.2-release/sys/netgraph/bluetooth/l2cap/
H A Dng_l2cap_llpi.h47 void ng_l2cap_process_lp_timeout (node_p, hook_p, void *, int);
48 void ng_l2cap_process_discon_timeout (node_p, hook_p, void *, int);
/freebsd-10.2-release/sys/netgraph/
H A Dnetgraph.h89 typedef struct ng_node *node_p; typedef in typeref:struct:ng_node
93 typedef int ng_constructor_t(node_p node);
94 typedef int ng_close_t(node_p node);
95 typedef int ng_shutdown_t(node_p node);
96 typedef int ng_newhook_t(node_p node, hook_p hook, const char *name);
97 typedef hook_p ng_findhook_t(node_p node, const char *name);
99 typedef int ng_rcvmsg_t(node_p node, item_p item, hook_p lasthook);
102 typedef int ng_rcvitem (node_p node, hook_p hook, item_p item);
181 static __inline node_p _ng_hook_node(hook_p hook, char * file, int line);
264 static __inline node_p
[all...]
H A Dng_gif.c110 static void ng_gif_input2(node_p node, struct mbuf **mp, int af);
112 static int ng_gif_rcv_lower(node_p node, struct mbuf *m);
170 const node_p node = IFP2NG(ifp);
186 const node_p node = IFP2NG(ifp);
204 ng_gif_input2(node_p node, struct mbuf **mp, int af)
226 node_p node;
262 const node_p node = IFP2NG(ifp);
335 ng_gif_constructor(node_p node)
344 ng_gif_newhook(node_p node, hook_p hook, const char *name)
390 ng_gif_rcvmsg(node_p nod
[all...]
H A Dng_hub.c84 ng_hub_constructor(node_p node)
99 ng_hub_rcvmsg(node_p node, item_p item, hook_p lasthook)
120 const node_p node = NG_HOOK_NODE(hook);
153 ng_hub_shutdown(node_p node)
H A Dng_split.c71 node_p node; /* Our netgraph node */
83 ng_split_constructor(node_p node)
102 ng_split_newhook(node_p node, hook_p hook, const char *name)
150 ng_split_shutdown(node_p node)
H A Dng_base.c216 static int ng_add_hook(node_p node, const char *name, hook_p * hookp);
217 static int ng_generic_msg(node_p here, item_p item, hook_p lasthook);
220 static void ng_worklist_add(node_p node);
222 static int ng_apply_item(node_p node, item_p item, int rw);
223 static void ng_flush_input_queue(node_p node);
224 static node_p ng_ID2noderef(ng_ID_t ID);
225 static int ng_con_nodes(item_p item, node_p node, const char *name,
226 node_p node2, const char *name2);
227 static int ng_con_part2(node_p node, item_p item, hook_p hook);
228 static int ng_con_part3(node_p nod
[all...]
H A Dng_echo.c77 nge_cons(node_p node)
86 nge_rcvmsg(node_p node, item_p item, hook_p lasthook)
H A Dng_UI.c101 ng_UI_constructor(node_p node)
115 ng_UI_newhook(node_p node, hook_p hook, const char *name)
136 ng_UI_rcvmsg(node_p node, item_p item, hook_p lasthook)
170 const node_p node = NG_HOOK_NODE(hook);
210 ng_UI_shutdown(node_p node)
H A Dng_pred1.c92 static int ng_pred1_compress(node_p node, struct mbuf *m,
94 static int ng_pred1_decompress(node_p node, struct mbuf *m,
96 static void Pred1Init(node_p node);
97 static int Pred1Compress(node_p node, u_char *source, u_char *dest,
99 static int Pred1Decompress(node_p node, u_char *source, u_char *dest,
101 static void Pred1SyncTable(node_p node, u_char *source, int len);
186 ng_pred1_constructor(node_p node)
206 ng_pred1_newhook(node_p node, hook_p hook, const char *name)
227 ng_pred1_rcvmsg(node_p node, item_p item, hook_p lasthook)
299 const node_p nod
[all...]
H A Dng_ipfw.c71 static hook_p ng_ipfw_findhook1(node_p, u_int16_t );
76 static node_p fw_node;
146 ng_ipfw_constructor(node_p node)
152 ng_ipfw_newhook(node_p node, hook_p hook, const char *name)
199 ng_ipfw_findhook(node_p node, const char *name)
212 ng_ipfw_findhook1(node_p node, u_int16_t rulenum)
338 ng_ipfw_shutdown(node_p node)
H A Dng_ppp.c291 static int ng_ppp_proto_recv(node_p node, item_p item, uint16_t proto,
293 static int ng_ppp_hcomp_xmit(node_p node, item_p item, uint16_t proto);
294 static int ng_ppp_hcomp_recv(node_p node, item_p item, uint16_t proto,
296 static int ng_ppp_comp_xmit(node_p node, item_p item, uint16_t proto);
297 static int ng_ppp_comp_recv(node_p node, item_p item, uint16_t proto,
299 static int ng_ppp_crypt_xmit(node_p node, item_p item, uint16_t proto);
300 static int ng_ppp_crypt_recv(node_p node, item_p item, uint16_t proto,
302 static int ng_ppp_mp_xmit(node_p node, item_p item, uint16_t proto);
303 static int ng_ppp_mp_recv(node_p node, item_p item, uint16_t proto,
305 static int ng_ppp_link_xmit(node_p nod
[all...]
H A Dng_ether_echo.c81 ngee_cons(node_p node)
90 ngee_rcvmsg(node_p node, item_p item, hook_p lasthook)
H A Dng_gif_demux.c118 node_p node; /* Our netgraph node */
231 ng_gif_demux_constructor(node_p node)
249 ng_gif_demux_newhook(node_p node, hook_p hook, const char *name)
273 ng_gif_demux_rcvmsg(node_p node, item_p item, hook_p lasthook)
306 const node_p node = NG_HOOK_NODE(hook);
367 ng_gif_demux_shutdown(node_p node)
H A Dng_ether.c247 const node_p node = IFP2NG(ifp);
264 const node_p node = IFP2NG(ifp);
283 const node_p node = IFP2NG(ifp);
307 node_p node;
355 const node_p node = IFP2NG(ifp);
377 const node_p node = IFP2NG(ifp);
413 node_p node;
443 ng_ether_constructor(node_p node)
452 ng_ether_newhook(node_p node, hook_p hook, const char *name)
492 ng_ether_rcvmsg(node_p nod
[all...]
H A Dng_atmllc.c79 ng_atmllc_constructor(node_p node)
90 ng_atmllc_rcvmsg(node_p node, item_p item, hook_p lasthook)
103 ng_atmllc_shutdown(node_p node)
117 ng_atmllc_newhook(node_p node, hook_p hook, const char *name)
252 node_p node;
H A Dng_sample.c133 node_p node; /* back pointer to node */
151 ng_xxx_constructor(node_p node)
182 ng_xxx_newhook(node_p node, hook_p hook, const char *name)
259 ng_xxx_rcvmsg(node_p node, item_p item, hook_p lasthook)
417 ng_xxx_shutdown(node_p node)
H A Dng_deflate.c86 static int ng_deflate_compress(node_p node,
88 static int ng_deflate_decompress(node_p node,
90 static void ng_deflate_reset_req(node_p node);
175 ng_deflate_constructor(node_p node)
195 ng_deflate_newhook(node_p node, hook_p hook, const char *name)
216 ng_deflate_rcvmsg(node_p node, item_p item, hook_p lasthook)
330 const node_p node = NG_HOOK_NODE(hook);
376 ng_deflate_shutdown(node_p node)
400 const node_p node = NG_HOOK_NODE(hook);
444 ng_deflate_compress(node_p nod
[all...]
H A Dng_hole.c121 ngh_cons(node_p node)
130 ngh_newhook(node_p node, hook_p hook, const char *name)
146 ngh_rcvmsg(node_p node, item_p item, hook_p lasthook)
/freebsd-10.2-release/sys/netgraph/atm/sscfu/
H A Dng_sscfu.c184 text_status(node_p node, struct priv *priv, char *arg, u_int len)
215 ng_sscfu_rcvmsg(node_p node, item_p item, hook_p lasthook)
349 ng_sscfu_newhook(node_p node, hook_p hook, const char *name)
366 node_p node = NG_HOOK_NODE(hook);
401 node_p node = NG_HOOK_NODE(hook);
430 node_p node = (node_p)p;
460 node_p node = NG_HOOK_NODE(hook);
496 node_p node = (node_p)
[all...]
/freebsd-10.2-release/sys/netgraph/atm/sscop/
H A Dng_sscop.c245 ng_sscop_constructor(node_p node)
264 ng_sscop_shutdown(node_p node)
294 flow_upper(node_p node, struct ng_mesg *msg)
350 flow_lower(node_p node, struct ng_mesg *msg)
377 text_status(node_p node, struct priv *priv, char *arg, u_int len)
443 ng_sscop_rcvmsg(node_p node, item_p item, hook_p lasthook)
611 ng_sscop_newhook(node_p node, hook_p hook, const char *name)
631 node_p node = NG_HOOK_NODE(hook);
693 node_p node = (node_p)
[all...]
/freebsd-10.2-release/sys/netgraph/atm/uni/
H A Dng_uni.c222 ng_uni_constructor(node_p node)
240 ng_uni_shutdown(node_p node)
269 text_status(node_p node, struct priv *priv, char *buf, u_int len)
305 ng_uni_rcvmsg(node_p node, item_p item, hook_p lasthook)
475 ng_uni_newhook(node_p node, hook_p hook, const char *name)
493 node_p node = NG_HOOK_NODE(hook);
523 node_p node = NG_HOOK_NODE(hook);
572 node_p node = (node_p)varg;
619 dump_saal_signal(node_p nod
[all...]
H A Dng_uni_cust.h101 _##T##_func(node_p node, hook_p hook, void *arg1, int arg2) \
115 _##T##_func(node_p node, hook_p hook, void *arg1, int arg2) \
130 _##T##_func(node_p node, hook_p hook, void *arg1, int arg2) \

Completed in 139 milliseconds

1234