/third_party/lwip/src/include/netif/ppp/ |
H A D | fsm.h | 2 * fsm.h - {Link, IP} Control Protocol Finite State Machine definitions. 42 * $Id: fsm.h,v 1.10 2004/11/13 02:28:15 paulus Exp $ 76 * Each FSM is described by an fsm structure and fsm callbacks. 78 typedef struct fsm { struct 95 } fsm; typedef 100 (fsm *); 102 (fsm *); 104 (fsm *, u_char *, int *); 106 (fsm *, u_cha [all...] |
H A D | ppp.h | 168 #include "fsm.h" 378 fsm lcp_fsm; /* LCP fsm structure */ 395 fsm ccp_fsm; /* CCP fsm structure */ 410 fsm ipcp_fsm; /* IPCP fsm structure */ 418 fsm ipv6cp_fsm; /* IPV6CP fsm structure */
|
H A D | ecp.h | 49 extern fsm ecp_fsm[];
|
/third_party/libwebsockets/lib/misc/ |
H A D | fsmount.c | 60 lws_fsmount_mount(struct lws_fsmount *fsm) in lws_fsmount_mount() argument 75 c = fsm->mp[0]; in lws_fsmount_mount() 76 while (!lws_fsmount_unmount(fsm)) in lws_fsmount_mount() 77 fsm->mp[0] = c; in lws_fsmount_mount() 78 fsm->mp[0] = c; in lws_fsmount_mount() 88 fsm->overlay_path, fsm->ovname); in lws_fsmount_mount() 97 for (m = LWS_ARRAY_SIZE(fsm->layers) - 1; m >= 0; m--) in lws_fsmount_mount() 98 if (fsm->layers[m]) { in lws_fsmount_mount() 103 "%s/%s/%s", fsm in lws_fsmount_mount() 137 lws_fsmount_unmount(struct lws_fsmount *fsm) lws_fsmount_unmount() argument [all...] |
/third_party/lwip/src/netif/ppp/ |
H A D | fsm.c | 2 * fsm.c - {Link, IP} Control Protocol Finite State Machine. 48 * Randomize fsm id on link/init. 60 #include "netif/ppp/fsm.h" 63 static void fsm_rconfreq(fsm *f, u_char id, u_char *inp, int len); 64 static void fsm_rconfack(fsm *f, int id, u_char *inp, int len); 65 static void fsm_rconfnakrej(fsm *f, int code, int id, u_char *inp, int len); 66 static void fsm_rtermreq(fsm *f, int id, u_char *p, int len); 67 static void fsm_rtermack(fsm *f); 68 static void fsm_rcoderej(fsm *f, u_char *inp, int len); 69 static void fsm_sconfreq(fsm * [all...] |
H A D | lcp.c | 58 #include "netif/ppp/fsm.h" 70 /* steal a bit in fsm flags word */ 216 * Callbacks for fsm code. (CI = Configuration Information) 218 static void lcp_resetci(fsm *f); /* Reset our CI */ 219 static int lcp_cilen(fsm *f); /* Return length of our CI */ 220 static void lcp_addci(fsm *f, u_char *ucp, int *lenp); /* Add our CI to pkt */ 221 static int lcp_ackci(fsm *f, u_char *p, int len); /* Peer ack'd our CI */ 222 static int lcp_nakci(fsm *f, u_char *p, int len, int treat_as_reject); /* Peer nak'd our CI */ 223 static int lcp_rejci(fsm *f, u_char *p, int len); /* Peer rej'd our CI */ 224 static int lcp_reqci(fsm * [all...] |
H A D | ccp.c | 39 #include "netif/ppp/fsm.h" 212 * Callbacks for fsm code. 214 static void ccp_resetci (fsm *); 215 static int ccp_cilen (fsm *); 216 static void ccp_addci (fsm *, u_char *, int *); 217 static int ccp_ackci (fsm *, u_char *, int); 218 static int ccp_nakci (fsm *, u_char *, int, int); 219 static int ccp_rejci (fsm *, u_char *, int); 220 static int ccp_reqci (fsm *, u_char *, int *, int); 221 static void ccp_up (fsm *); [all...] |
H A D | ipv6cp.c | 166 #include "netif/ppp/fsm.h" 177 * Callbacks for fsm code. (CI = Configuration Information) 179 static void ipv6cp_resetci(fsm *f); /* Reset our CI */ 180 static int ipv6cp_cilen(fsm *f); /* Return length of our CI */ 181 static void ipv6cp_addci(fsm *f, u_char *ucp, int *lenp); /* Add our CI */ 182 static int ipv6cp_ackci(fsm *f, u_char *p, int len); /* Peer ack'd our CI */ 183 static int ipv6cp_nakci(fsm *f, u_char *p, int len, int treat_as_reject); /* Peer nak'd our CI */ 184 static int ipv6cp_rejci(fsm *f, u_char *p, int len); /* Peer rej'd our CI */ 185 static int ipv6cp_reqci(fsm *f, u_char *inp, int *len, int reject_if_disagree); /* Rcv CI */ 186 static void ipv6cp_up(fsm * [all...] |
H A D | ipcp.c | 64 #include "netif/ppp/fsm.h" 111 * Callbacks for fsm code. (CI = Configuration Information) 113 static void ipcp_resetci(fsm *f); /* Reset our CI */ 114 static int ipcp_cilen(fsm *f); /* Return length of our CI */ 115 static void ipcp_addci(fsm *f, u_char *ucp, int *lenp); /* Add our CI */ 116 static int ipcp_ackci(fsm *f, u_char *p, int len); /* Peer ack'd our CI */ 117 static int ipcp_nakci(fsm *f, u_char *p, int len, int treat_as_reject);/* Peer nak'd our CI */ 118 static int ipcp_rejci(fsm *f, u_char *p, int len); /* Peer rej'd our CI */ 119 static int ipcp_reqci(fsm *f, u_char *inp, int *len, int reject_if_disagree); /* Rcv CI */ 120 static void ipcp_up(fsm * [all...] |
H A D | ecp.c | 67 #include "netif/ppp/fsm.h" 131 fsm ecp_fsm[NUM_PPP]; 162 fsm *f = &ecp_fsm[unit];
|
/third_party/rust/crates/aho-corasick/src/ |
H A D | tests.rs | 1079 let fsm = AhoCorasickBuilder::new() in stream_not_allowed_leftmost_first() 1082 assert_eq!(fsm.stream_find_iter(&b""[..]).count(), 0); in stream_not_allowed_leftmost_first() 1088 let fsm = AhoCorasickBuilder::new() in stream_not_allowed_leftmost_longest() 1091 assert_eq!(fsm.stream_find_iter(&b""[..]).count(), 0); in stream_not_allowed_leftmost_longest() 1097 let fsm = AhoCorasickBuilder::new() in overlapping_not_allowed_leftmost_first() 1100 assert_eq!(fsm.find_overlapping_iter("").count(), 0); in overlapping_not_allowed_leftmost_first() 1106 let fsm = AhoCorasickBuilder::new() in overlapping_not_allowed_leftmost_longest() 1109 assert_eq!(fsm.find_overlapping_iter("").count(), 0); in overlapping_not_allowed_leftmost_longest()
|
H A D | ahocorasick.rs | 1161 fsm: &'a Imp<S>, 1170 FindIter { fsm: &ac.imp, prestate, haystack, pos: 0 } in new() 1181 let result = self.fsm.find_at_no_state( in next() 1218 fsm: &'a Imp<S>, 1237 fsm: &ac.imp, in new() 1251 let result = self.fsm.overlapping_find_at( in next() 1323 fsm: &'a Imp<S>, 1378 fsm: &ac.imp, in new() 1444 let result = self.fsm.earliest_find_at( in next() 1455 self.state_id = self.fsm in next() [all...] |
/third_party/node/deps/npm/node_modules/cacache/lib/content/ |
H A D | write.js | 14 const fsm = require('fs-minipass') 121 const outStream = new fsm.WriteStream(tmpTarget, {
|
/third_party/node/deps/npm/node_modules/cacache/lib/ |
H A D | verify.js | 13 const fsm = require('fs-minipass') 162 await ssri.checkStream(new fsm.ReadStream(filepath), sri)
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-misc.h | 1076 * \p fsm: struct lws_fsmount specifying the mount layout 1081 * Set fsm.layers_path to the base dir where the layers themselves live, the 1082 * entries in fsm.layers[] specifies the relative path to the layer, comprising 1083 * fsm.layers_path/fsm.distro/fsm.layers[], with [0] being the deepest, earliest 1087 * fsm.overlay_path is the base path of the overlayfs instantiations... empty 1090 * fsm.overlay_path/overlays/fsm.ovname/work 1091 * fsm [all...] |
/third_party/lwip/src/ |
H A D | Filelists.mk | 108 $(LWIPDIR)/netif/ppp/fsm.c \
|