Searched refs:callout (Results 1 - 25 of 609) sorted by relevance

1234567891011>>

/freebsd-12-stable/sys/sys/
H A D_callout.h36 * @(#)callout.h 8.2 (Berkeley) 1/21/94
47 LIST_HEAD(callout_list, callout);
48 SLIST_HEAD(callout_slist, callout);
49 TAILQ_HEAD(callout_tailq, callout);
53 struct callout { struct
55 LIST_ENTRY(callout) le;
56 SLIST_ENTRY(callout) sle;
57 TAILQ_ENTRY(callout) tqe;
H A Dcallout.h36 * @(#)callout.h 8.2 (Berkeley) 1/21/94
46 #define CALLOUT_ACTIVE 0x0002 /* callout is currently active */
47 #define CALLOUT_PENDING 0x0004 /* callout is waiting for timeout */
50 #define CALLOUT_SHAREDLOCK 0x0020 /* callout lock held in shared mode */
51 #define CALLOUT_DFRMIGRATION 0x0040 /* callout in deferred migration mode */
52 #define CALLOUT_PROCESSED 0x0080 /* callout in wheel or processing list? */
55 #define C_DIRECT_EXEC 0x0001 /* direct execution of callout */
66 struct callout *callout; member in struct:callout_handle
72 the callout wa
[all...]
/freebsd-12-stable/sys/cddl/compat/opensolaris/sys/
H A Dcallo.h32 #include_next <sys/callout.h>
34 #define CALLOUT_REALTIME 0 /* realtime callout type */
35 #define CALLOUT_NORMAL 1 /* normal callout type */
/freebsd-12-stable/sys/dev/wtap/wtap_hal/
H A Dhandler.h40 struct callout cb;
/freebsd-12-stable/contrib/amd/amd/
H A Dclock.c59 typedef struct callout callout; typedef in typeref:struct:callout
60 struct callout { struct
61 callout *c_next; /* List of callouts */
68 static callout callouts; /* List of pending callouts */
69 static callout *free_callouts; /* Cache of free callouts */
71 static int callout_id; /* Next free callout identifier */
77 * Number of callout slots we keep on the free list
88 static callout *
91 callout *c
[all...]
/freebsd-12-stable/sys/compat/linuxkpi/common/include/linux/
H A Dtimer.h38 #include <sys/callout.h>
41 struct callout callout; member in struct:timer_list
61 callout_init(&(timer)->callout, 1); \
67 callout_init(&(timer)->callout, 1); \
78 callout_init(&(timer)->callout, 1); \
87 #define timer_pending(timer) callout_pending(&(timer)->callout)
H A Dhrtimer.h50 struct callout callout; member in struct:hrtimer
/freebsd-12-stable/sys/net80211/
H A Dieee80211_dfs.h44 struct callout nol_timer; /* NOL list processing */
45 struct callout cac_timer; /* CAC timer */
/freebsd-12-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_hrtimer.c49 callout_schedule_sbt(&hrtimer->callout,
52 callout_deactivate(&hrtimer->callout);
62 ret = callout_active(&hrtimer->callout);
76 return (callout_drain(&hrtimer->callout) > 0);
86 callout_init_mtx(&hrtimer->callout, &hrtimer->mtx, 0);
109 callout_reset_sbt(&hrtimer->callout, nstosbt(ktime_to_ns(time)),
119 callout_reset_sbt(&hrtimer->callout, nstosbt(ktime_to_ns(interval)),
/freebsd-12-stable/sys/dev/smc/
H A Dif_smcvar.h55 struct callout smc_watchdog;
59 struct callout smc_mii_tick_ch;
/freebsd-12-stable/sys/dev/isci/
H A Disci_timer.c84 callout_reset_sbt(&isci_timer->callout, SBT_1MS * milliseconds, 0,
104 callout_stop(&isci_timer->callout);
137 callout_init_mtx(&timer->callout, &isci_controller->lock, FALSE);
/freebsd-12-stable/sys/netinet/
H A Dtcp_timer.h150 struct callout tt_rexmt; /* retransmit timer */
151 struct callout tt_persist; /* retransmit persistence */
152 struct callout tt_keep; /* keepalive */
153 struct callout tt_2msl; /* 2*msl TIME_WAIT timer */
154 struct callout tt_delack; /* delayed ACK timer */
/freebsd-12-stable/sys/amd64/vmm/io/
H A Dvatpit.c90 struct callout callout; member in struct:channel
148 struct callout *callout; local
153 callout = &c->callout;
159 if (callout_pending(callout)) /* callout was reset */
162 if (!callout_active(callout)) /* callout wa
[all...]
/freebsd-12-stable/sys/arm/ti/cpsw/
H A Dif_cpswvar.h116 struct callout callout; member in struct:cpsw_softc::__anon9461
140 struct callout mii_callout;
/freebsd-12-stable/sys/dev/netfpga10g/nf10bmac/
H A Dif_nf10bmacreg.h58 struct callout nf10bmac_tick;
/freebsd-12-stable/sys/dev/vnic/
H A Dthunder_bgx_var.h48 struct callout check_link;
/freebsd-12-stable/sys/dev/xilinx/
H A Dif_xaevar.h58 struct callout xae_callout;
/freebsd-12-stable/sys/dev/rndtest/
H A Drndtest.h45 struct callout rs_to;
/freebsd-12-stable/sys/dev/rp/
H A Drpvar.h48 struct callout rp_timer;
/freebsd-12-stable/sys/dev/vx/
H A Dif_vxvar.h55 struct callout vx_callout; /* Callout for timeouts */
56 struct callout vx_watchdog;
/freebsd-12-stable/sys/dev/xe/
H A Dif_xevar.h40 struct callout media_timer;
41 struct callout wdog_timer;
/freebsd-12-stable/sys/kern/
H A Dkern_timeout.c52 #include <sys/callout.h>
81 SDT_PROBE_DEFINE1(callout_execute, , , callout__start, "struct callout *");
82 SDT_PROBE_DEFINE1(callout_execute, , , callout__end, "struct callout *");
136 * The callout cpu exec entities represent informations necessary for
138 * necessary for migrating callouts to the new callout cpu. In particular,
139 * the first entry of the array cc_exec_entity holds informations for callout
141 * for callout running directly from hardware interrupt context.
143 * the migrating callout is already running.
146 struct callout *cc_curr;
161 * state for the callout processin
[all...]
/freebsd-12-stable/sys/dev/dwc/
H A Dif_dwcvar.h68 struct callout dwc_callout;
/freebsd-12-stable/sys/net/
H A Dif_sppp.h159 struct callout ch[IDX_COUNT]; /* per-proto and if callouts */
160 struct callout pap_my_to_ch; /* PAP needs one more... */
161 struct callout keepalive_callout; /* keepalive callout */
204 struct callout ifstart_callout; /* if_start () scheduler */
/freebsd-12-stable/sys/dev/cs/
H A Dif_csvar.h67 struct callout timer;

Completed in 378 milliseconds

1234567891011>>