Home
last modified time | relevance | path

Searched refs:pcbp (Results 1 – 3 of 3) sorted by relevance

/dragonfly/sys/netgraph/socket/
HDng_socket.c117 static void ng_detach_common(struct ngpcb *pcbp, int type);
120 static int ng_connect_data(struct sockaddr *nam, struct ngpcb *pcbp);
121 static int ng_connect_cntl(struct sockaddr *nam, struct ngpcb *pcbp);
122 static int ng_bind(struct sockaddr *nam, struct ngpcb *pcbp);
125 static int ship_msg(struct ngpcb *pcbp, struct ng_mesg *msg,
169 struct ngpcb *const pcbp = sotongpcb(so); in ngc_attach() local
177 else if (pcbp != NULL) in ngc_attach()
188 struct ngpcb *const pcbp = sotongpcb(so); in ngc_detach() local
191 if (pcbp) { in ngc_detach()
192 ng_detach_common(pcbp, NG_CONTROL); in ngc_detach()
[all …]
/dragonfly/sys/netgraph7/socket/
HDng_socket.c128 static void ng_detach_common(struct ngpcb *pcbp, int type);
133 static int ng_connect_data(struct sockaddr *nam, struct ngpcb *pcbp);
134 static int ng_bind(struct sockaddr *nam, struct ngpcb *pcbp);
179 struct ngpcb *const pcbp = sotongpcb(so); in ngc_attach() local
186 } else if (pcbp != NULL) { in ngc_attach()
198 struct ngpcb *const pcbp = sotongpcb(so); in ngc_detach() local
200 KASSERT(pcbp != NULL, ("ngc_detach: pcbp == NULL")); in ngc_detach()
201 ng_detach_common(pcbp, NG_CONTROL); in ngc_detach()
212 struct ngpcb *const pcbp = sotongpcb(so); in ngc_send() local
223 if (pcbp->sockdata == NULL) { in ngc_send()
[all …]
/dragonfly/games/gomoku/
HDpickmove.c549 struct combostr **cbpp, *pcbp; in addframes() local
631 pcbp = ecbp->c_prev; in addframes()
632 pcbp->c_next = cbp; in addframes()
635 cbp->c_prev = pcbp; in addframes()
1048 struct combostr *pcbp, *ncbp; in appendcombo() local
1058 pcbp = ncbp->c_prev; in appendcombo()
1060 cbp->c_prev = pcbp; in appendcombo()
1062 pcbp->c_next = cbp; in appendcombo()