HomeSort by relevance Sort by last modified time
    Searched refs:fsm (Results 26 - 50 of 61) sorted by null

12 3

  /external/libppp/src/
datalink.c 49 #include "fsm.h"
129 log_Printf(LogPHASE, "Call peer back on %s\n", dl->cbcp.fsm.phone);
131 strncpy(dl->cfg.phone.list, dl->cbcp.fsm.phone,
143 /* if dial.timeout is < 0 (random), we don't override fsm.delay */
144 if (dl->cbcp.fsm.delay < dl->cfg.dial.timeout)
145 dl->cbcp.fsm.delay = dl->cfg.dial.timeout;
146 datalink_StartDialTimer(dl, dl->cbcp.fsm.delay);
245 fsm_Up(&dl->physical->link.lcp.fsm);
246 fsm_Open(&dl->physical->link.lcp.fsm);
560 datalink_LayerStart(void *v, struct fsm *fp
    [all...]
auth.h 51 struct fsm_retry fsm; /* How often/frequently to resend requests */ member in struct:authinfo::__anon22777
lqr.c 46 #include "fsm.h"
77 struct hdlc *hdlc = &link2physical(lcp->fsm.link)->hdlc;
83 fsm_Output(&lcp->fsm, CODE_ECHOREQ, hdlc->lqm.echo.seq_sent++,
88 lqr_RecvEcho(struct fsm *fp, struct mbuf *bp)
157 link_PushPacket(lcp->fsm.link, bp, lcp->fsm.bundle,
158 LINK_QUEUES(lcp->fsm.link) - 1, PROTO_LQR);
165 struct physical *p = link2physical(lcp->fsm.link);
173 lcp->fsm.link->name);
175 lcp->fsm.link->name)
    [all...]
physical.c 66 #include "fsm.h"
569 if (p->link.lcp.fsm.state <= ST_CLOSED) {
618 p->link.lcp.fsm.bundle = dl->bundle;
619 p->link.lcp.fsm.link = &p->link;
620 memset(&p->link.lcp.fsm.FsmTimer, '\0', sizeof p->link.lcp.fsm.FsmTimer);
621 memset(&p->link.lcp.fsm.OpenTimer, '\0', sizeof p->link.lcp.fsm.OpenTimer);
622 memset(&p->link.lcp.fsm.StoppedTimer, '\0',
623 sizeof p->link.lcp.fsm.StoppedTimer)
    [all...]
pred.c 43 #include "fsm.h"
150 return 1; /* Ask FSM to ACK */
241 fsm_Reopen(&ccp->fsm);
250 fsm_Reopen(&ccp->fsm);
283 ccp->fsm.link->name, pre);
284 fsm_Reopen(&ccp->fsm);
auth.c 57 #include "fsm.h"
406 authp->cfg.fsm.timeout = DEF_FSMRETRY;
407 authp->cfg.fsm.maxreq = DEF_FSMAUTHTRIES;
408 authp->cfg.fsm.maxtrm = 0; /* not used */
421 authp->authtimer.load = authp->cfg.fsm.timeout * SECTICKS;
423 authp->retry = authp->cfg.fsm.maxreq;
command.c 67 #include "fsm.h"
848 "Close an FSM", "close [lcp|ccp]", NULL},
878 "Open an FSM", "open! [lcp|ccp|ipcp]", (void *)1},
937 if (!arg->cx->physical->link.lcp.fsm.StoppedTimer.load)
941 arg->cx->physical->link.lcp.fsm.StoppedTimer.load / SECTICKS);
944 if (!arg->cx->physical->link.ccp.fsm.StoppedTimer.load)
948 arg->cx->physical->link.ccp.fsm.StoppedTimer.load / SECTICKS);
    [all...]
mppe.c 47 #include "fsm.h"
127 return 0; /* Ask FSM not to ACK */
315 fsm_Output(&ccp->fsm, CODE_RESETREQ, ccp->fsm.reqid++, NULL, 0,
330 fsm_Output(&ccp->fsm, CODE_RESETREQ, ccp->fsm.reqid++, NULL, 0,
430 MPPEUsable(struct fsm *fp)
458 MPPERequired(struct fsm *fp)
Makefile 8 command.c datalink.c deflate.c defs.c exec.c filter.c fsm.c hdlc.c \
bundle.h 99 struct fsm_parent fsm; /* Our callback functions */ member in struct:bundle
deflate.c 38 #include "fsm.h"
65 return 1; /* Ask FSM to ACK */
227 ccp_SendResetReq(&ccp->fsm);
264 ccp_SendResetReq(&ccp->fsm);
306 ccp_SendResetReq(&ccp->fsm);
389 ccp_SendResetReq(&ccp->fsm);
mp.c 59 #include "fsm.h"
164 mp_LayerStart(void *v __unused, struct fsm *fp __unused)
166 /* The given FSM (ccp) is about to start up ! */
170 mp_LayerUp(void *v __unused, struct fsm *fp)
172 /* The given fsm (ccp) is now up */
178 mp_LayerDown(void *v __unused, struct fsm *fp __unused)
180 /* The given FSM (ccp) has been told to come down */
184 mp_LayerFinish(void *v __unused, struct fsm *fp)
186 /* The given fsm (ccp) is now down */
368 fsm_Up(&mp->link.ccp.fsm);
    [all...]
  /external/ppp/pppd/
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...]
lcp.h 99 extern fsm lcp_fsm[];
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...]
ipv6cp.c 164 #include "fsm.h"
183 * Callbacks for fsm code. (CI = Configuration Information)
185 static void ipv6cp_resetci __P((fsm *)); /* Reset our CI */
186 static int ipv6cp_cilen __P((fsm *)); /* Return length of our CI */
187 static void ipv6cp_addci __P((fsm *, u_char *, int *)); /* Add our CI */
188 static int ipv6cp_ackci __P((fsm *, u_char *, int)); /* Peer ack'd our CI */
189 static int ipv6cp_nakci __P((fsm *, u_char *, int, int));/* Peer nak'd our CI */
190 static int ipv6cp_rejci __P((fsm *, u_char *, int)); /* Peer rej'd our CI */
191 static int ipv6cp_reqci __P((fsm *, u_char *, int *, int)); /* Rcv CI */
192 static void ipv6cp_up __P((fsm *)); /* We're UP *
    [all...]
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...]
Makefile.sol2 11 OBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap-new.o eap.o md5.o \
ipcp.c 60 #include "fsm.h"
100 * Callbacks for fsm code. (CI = Configuration Information)
102 static void ipcp_resetci __P((fsm *)); /* Reset our CI */
103 static int ipcp_cilen __P((fsm *)); /* Return length of our CI */
104 static void ipcp_addci __P((fsm *, u_char *, int *)); /* Add our CI */
105 static int ipcp_ackci __P((fsm *, u_char *, int)); /* Peer ack'd our CI */
106 static int ipcp_nakci __P((fsm *, u_char *, int, int));/* Peer nak'd our CI */
107 static int ipcp_rejci __P((fsm *, u_char *, int)); /* Peer rej'd our CI */
108 static int ipcp_reqci __P((fsm *, u_char *, int *, int)); /* Rcv CI */
109 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 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 \
  /external/valgrind/main/coregrind/m_debuginfo/
readmacho.c 688 vg_assert(di->fsm.have_rx_map);
689 vg_assert(di->fsm.have_rw_map);
691 for (i = 0; i < VG_(sizeXA)(di->fsm.maps); i++) {
692 struct _DebugInfoMapping* map = VG_(indexXA)(di->fsm.maps, i);
705 "%s (rx at %#lx, rw at %#lx)\n", di->fsm.filename,
712 ok = map_image_aboard( di, &ii, di->fsm.filename );
    [all...]
debuginfo.c 180 di->fsm.filename = ML_(dinfo_strdup)("di.debuginfo.aDI.2", filename);
181 di->fsm.maps = VG_(newXA)(
210 if (di->fsm.maps) VG_(deleteXA)(di->fsm.maps);
211 if (di->fsm.filename) ML_(dinfo_free)(di->fsm.filename);
315 curr->fsm.filename ? curr->fsm.filename
398 for (i = 0; i < VG_(sizeXA)(di1->fsm.maps); i++) {
399 struct _DebugInfoMapping* map1 = VG_(indexXA)(di1->fsm.maps, i)
    [all...]
readelf.c 569 vg_assert(di->fsm.have_rx_map);
    [all...]
readpdb.c     [all...]
  /external/chromium_org/third_party/codesighs/
msmap2tsv.c 1128 MSMap_ReadState fsm; local
    [all...]

Completed in 265 milliseconds

12 3