/external/ppp/pppd/ |
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 $ 64 * Each FSM is described by an fsm structure and fsm callbacks. 66 typedef struct fsm { struct 84 } fsm; typedef in typeref:struct:fsm 89 __P((fsm *)); 91 __P((fsm *)); 93 __P((fsm *, u_char *, int *)) [all...] |
fsm.c | 2 * fsm.c - {Link, IP} Control Protocol Finite State Machine. 43 #define RCSID "$Id: fsm.c,v 1.23 2004/11/13 02:28:15 paulus Exp $" 47 * Randomize fsm id on link/init. 56 #include "fsm.h" 61 static void fsm_rconfreq __P((fsm *, int, u_char *, int)); 62 static void fsm_rconfack __P((fsm *, int, u_char *, int)); 63 static void fsm_rconfnakrej __P((fsm *, int, int, u_char *, int)); 64 static void fsm_rtermreq __P((fsm *, int, u_char *, int)); 65 static void fsm_rtermack __P((fsm *)); 66 static void fsm_rcoderej __P((fsm *, u_char *, int)) [all...] |
lcp.c | 54 #include "fsm.h" 66 /* steal a bit in fsm flags word */ 190 fsm lcp_fsm[NUM_PPP]; /* LCP fsm structure (global)*/ 203 * Callbacks for fsm code. (CI = Configuration Information) 205 static void lcp_resetci __P((fsm *)); /* Reset our CI */ 206 static int lcp_cilen __P((fsm *)); /* Return length of our CI */ 207 static void lcp_addci __P((fsm *, u_char *, int *)); /* Add our CI to pkt */ 208 static int lcp_ackci __P((fsm *, u_char *, int)); /* Peer ack'd our CI */ 209 static int lcp_nakci __P((fsm *, u_char *, int, int)); /* Peer nak'd our CI * [all...] |
ipxcp.c | 60 #include "fsm.h" 79 * Callbacks for fsm code. (CI = Configuration Information) 81 static void ipxcp_resetci __P((fsm *)); /* Reset our CI */ 82 static int ipxcp_cilen __P((fsm *)); /* Return length of our CI */ 83 static void ipxcp_addci __P((fsm *, u_char *, int *)); /* Add our CI */ 84 static int ipxcp_ackci __P((fsm *, u_char *, int)); /* Peer ack'd our CI */ 85 static int ipxcp_nakci __P((fsm *, u_char *, int, int));/* Peer nak'd our CI */ 86 static int ipxcp_rejci __P((fsm *, u_char *, int)); /* Peer rej'd our CI */ 87 static int ipxcp_reqci __P((fsm *, u_char *, int *, int)); /* Rcv CI */ 88 static void ipxcp_up __P((fsm *)); /* We're UP * [all...] |
Android.mk | 14 fsm.c \
|
ecp.h | 39 extern fsm ecp_fsm[];
|
ccp.c | 37 #include "fsm.h" 199 fsm ccp_fsm[NUM_PPP]; 206 * Callbacks for fsm code. 208 static void ccp_resetci __P((fsm *)); 209 static int ccp_cilen __P((fsm *)); 210 static void ccp_addci __P((fsm *, u_char *, int *)); 211 static int ccp_ackci __P((fsm *, u_char *, int)); 212 static int ccp_nakci __P((fsm *, u_char *, int, int)); 213 static int ccp_rejci __P((fsm *, u_char *, int)); 214 static int ccp_reqci __P((fsm *, u_char *, int *, int)) [all...] |
ipv6cp.c | 165 #include "fsm.h" 194 * Callbacks for fsm code. (CI = Configuration Information) 196 static void ipv6cp_resetci __P((fsm *)); /* Reset our CI */ 197 static int ipv6cp_cilen __P((fsm *)); /* Return length of our CI */ 198 static void ipv6cp_addci __P((fsm *, u_char *, int *)); /* Add our CI */ 199 static int ipv6cp_ackci __P((fsm *, u_char *, int)); /* Peer ack'd our CI */ 200 static int ipv6cp_nakci __P((fsm *, u_char *, int, int));/* Peer nak'd our CI */ 201 static int ipv6cp_rejci __P((fsm *, u_char *, int)); /* Peer rej'd our CI */ 202 static int ipv6cp_reqci __P((fsm *, u_char *, int *, int)); /* Rcv CI */ 203 static void ipv6cp_up __P((fsm *)); /* We're UP * [all...] |
Makefile.sol2 | 11 OBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap-new.o eap.o md5.o \
|
ccp.h | 46 extern fsm ccp_fsm[];
|
ecp.c | 67 #include "fsm.h" 118 fsm ecp_fsm[NUM_PPP]; 149 fsm *f = &ecp_fsm[unit];
|
ipcp.c | 60 #include "fsm.h" 101 * Callbacks for fsm code. (CI = Configuration Information) 103 static void ipcp_resetci __P((fsm *)); /* Reset our CI */ 104 static int ipcp_cilen __P((fsm *)); /* Return length of our CI */ 105 static void ipcp_addci __P((fsm *, u_char *, int *)); /* Add our CI */ 106 static int ipcp_ackci __P((fsm *, u_char *, int)); /* Peer ack'd our CI */ 107 static int ipcp_nakci __P((fsm *, u_char *, int, int));/* Peer nak'd our CI */ 108 static int ipcp_rejci __P((fsm *, u_char *, int)); /* Peer rej'd our CI */ 109 static int ipcp_reqci __P((fsm *, u_char *, int *, int)); /* Rcv CI */ 110 static void ipcp_up __P((fsm *)); /* We're UP * [all...] |
Makefile.linux | 14 PPPDSRCS = main.c magic.c fsm.c lcp.c ipcp.c upap.c chap-new.c md5.c ccp.c \ 18 HEADERS = ccp.h session.h chap-new.h ecp.h fsm.h ipcp.h \ 23 PPPDOBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap-new.o md5.o ccp.o \
|
ipcp.h | 88 extern fsm ipcp_fsm[];
|
ipxcp.h | 88 extern fsm ipxcp_fsm[];
|
lcp.h | 115 extern fsm lcp_fsm[];
|
/system/bt/stack/rfcomm/ |
rfc_l2cap_if.c | 143 ** event to the FSM. 215 ** block and dispatch event to the FSM. 238 ** event to the FSM. 260 ** L2CA_QoSViolationIndInd received. Dispatch event to the FSM. 274 ** L2CA_DisconnectInd received. Dispatch event to the FSM.
|
/external/libnfc-nxp/src/ |
phHciNfc_Sequence.c | 483 HCI_DEBUG(" HCI: Transition Before FSM Update --> %02u \n", 485 HCI_DEBUG(" HCI: Next State Before FSM Update --> %02u \n", 494 HCI_DEBUG(" HCI: Next State After FSM Update --> %02u \n", 499 HCI_DEBUG(" HCI: FSM - Invalid next state --> %02u \n", 516 HCI_DEBUG(" HCI: Transition Before FSM Complete --> %02u \n", 519 HCI_DEBUG(" HCI: Current State Before FSM Complete --> %02u \n", 522 HCI_DEBUG(" HCI: Next State Before FSM Complete --> %02u \n", 538 HCI_DEBUG(" HCI: Current State After FSM Complete --> %02u \n", 683 /* Rollback the FSM as the Poll/Emulation configuration Failed */ 699 /* Rollback the FSM as the Poll Disable Failed * [all...] |
phHciNfc_Sequence.h | 91 * \retval NFCSTATUS_SUCCESS FSM Validated successfully . 117 * \retval NFCSTATUS_SUCCESS FSM Updated successfully . 138 * \retval NFCSTATUS_SUCCESS FSM Updated successfully .
|
/external/valgrind/coregrind/m_debuginfo/ |
debuginfo.c | 186 di->fsm.filename = ML_(dinfo_strdup)("di.debuginfo.aDI.2", filename); 187 di->fsm.maps = VG_(newXA)( 215 if (di->fsm.maps) VG_(deleteXA)(di->fsm.maps); 216 if (di->fsm.filename) ML_(dinfo_free)(di->fsm.filename); 217 if (di->fsm.dbgname) ML_(dinfo_free)(di->fsm.dbgname); 326 curr->fsm.filename ? curr->fsm.filenam [all...] |
readmacho.c | 717 vg_assert(di->fsm.have_rx_map); 718 vg_assert(di->fsm.have_rw_map); 720 for (i = 0; i < VG_(sizeXA)(di->fsm.maps); i++) { 721 const DebugInfoMapping* map = VG_(indexXA)(di->fsm.maps, i); 734 "%s (rx at %#lx, rw at %#lx)\n", di->fsm.filename, 739 msli = map_image_aboard( di, di->fsm.filename ); [all...] |
readelf.c | 652 vg_assert(di->fsm.have_rx_map); [all...] |
readpdb.c | [all...] |
/external/ppp/pppd/plugins/pppoatm/ |
pppoatm.c | 21 #include "fsm.h" /* Needed for lcp.h to include cleanly */
|
/system/connectivity/shill/shims/ |
ppp.cc | 25 #include <pppd/fsm.h>
|