/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/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/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/external/bsd/vchiq/dist/interface/compat/ |
vchi_bsd.h | 45 #include <sys/callout.h> 130 callout_t callout; member in struct:timer_list
|
/src/sys/kern/ |
vfs_bio.c | 1683 void (*callout)(buf_t *); local in function:biodone2 1702 if ((callout = bp->b_iodone) != NULL) { 1703 BIOHIST_LOG(biohist, "callout %#jx", (uintptr_t)callout, 1706 /* Note callout done, then call out. */ 1710 (*callout)(bp);
|