| /src/external/bsd/am-utils/dist/amd/ |
| clock.c | 61 typedef struct callout callout; typedef in typeref:struct:callout 62 struct callout { struct 63 callout *c_next; /* List of callouts */ 70 static callout callouts; /* List of pending callouts */ 71 static callout *free_callouts; /* Cache of free callouts */ 73 static int callout_id; /* Next free callout identifier */ 79 * Number of callout slots we keep on the free list 90 static callout * 93 callout *cp = free_callouts [all...] |
| amfs_generic.c | 80 int callout; /* Callout identifier */ member in struct:continuation 655 if (cp->callout) 656 untimeout(cp->callout); 847 if (cp->callout) { 848 untimeout(cp->callout); 849 cp->callout = 0; 879 if (cp->callout) 880 untimeout(cp->callout); 881 cp->callout = timeout(RETRY_INTERVAL, wakeup [all...] |
| /src/sys/arch/arm/s3c2xx0/ |
| s3c2440_touch.c | 34 #include <sys/callout.h> 69 callout_t callout; member in struct:sstouch_softc 156 callout_init(&sc->callout, 0); 157 callout_setfunc(&sc->callout, sstouch_callout, sc); 241 callout_schedule(&sc->callout, hz/50);
|
| /src/sys/arch/mips/rmi/ |
| rmixl_pcixvar.h | 56 callout_t callout; /* for delayed free of this struct */ member in struct:rmixl_pcix_intr
|
| rmixl_pcievar.h | 74 callout_t callout; /* for delayed free of this struct */ member in struct:rmixl_pcie_link_intr
|
| /src/sys/sys/ |
| callout.h | 1 /* $NetBSD: callout.h,v 1.32 2015/02/07 19:36:42 christos Exp $ */ 39 * The callout implementation is private to kern_timeout.c yet uses 40 * caller-supplied storage, as lightweight callout operations are 48 typedef struct callout { struct 54 #define CALLOUT_PENDING 0x0002 /* callout is on the queue */ 55 #define CALLOUT_FIRED 0x0004 /* callout has fired */ 56 #define CALLOUT_INVOKING 0x0008 /* callout function is being invoked */ 96 int c_time; /* when callout fires */
|
| /src/sys/altq/ |
| altq_var.h | 164 /* use callout */ 165 #include <sys/callout.h> 179 /* callout structure as a wrapper of struct timeout */ 180 struct callout { struct 191 /* dummy callout structure */ 192 struct callout { struct
|
| /src/sys/arch/evbarm/g42xxeb/ |
| g42xxeb_kmkbd.c | 46 #include <sys/callout.h> 71 struct callout callout; member in struct:kmkbd_softc 217 callout_init(&sc->callout, 0); 521 /* callout routine to watch key release */ 551 callout_stop(&sc->callout); 564 callout_reset(&sc->callout, DEBOUNCE_TICKS, kmkbd_debounce, sc); 568 callout_reset(&sc->callout, RELEASE_WATCH_TICKS, kmkbd_watch, sc);
|
| /src/sys/external/bsd/vchiq/dist/interface/compat/ |
| vchi_bsd.h | 45 #include <sys/callout.h> 130 callout_t callout; member in struct:timer_list
|
| /src/external/bsd/ppp/dist/pppd/ |
| main.c | 1401 struct callout { struct 1405 struct callout *c_next; 1408 static struct callout *callout = NULL; /* Callout list */ variable in typeref:struct:callout 1417 struct callout *newp, *p, **pp; 1422 if ((newp = (struct callout *) malloc(sizeof(struct callout))) == NULL) 1437 for (pp = &callout; (p = *pp); pp = &p->c_next) 1453 struct callout **copp, *freep [all...] |