Searched refs:timer (Results 76 - 100 of 239) sorted by relevance

12345678910

/freebsd-current/sys/arm/ti/cpsw/
H A Dif_cpswvar.h113 int timer; member in struct:cpsw_softc::__anon1099
/freebsd-current/usr.sbin/ppp/
H A DMakefile12 tcpmss.c throughput.c timer.c tty.c tun.c udp.c vjcomp.c
H A Ddatalink.h102 struct pppTimer timer; /* For timing between close & open */ member in struct:datalink::__anon6733
H A Ddatalink.c48 #include "timer.h"
90 timer_Stop(&dl->dial.timer);
92 log_Printf(LogCHAT, "%s: Redial timer expired.\n", dl->name);
100 timer_Stop(&dl->dial.timer);
103 dl->dial.timer.load = result ? result * SECTICKS : 1;
104 dl->dial.timer.func = datalink_OpenTimeout;
105 dl->dial.timer.name = "dial";
106 dl->dial.timer.arg = dl;
107 timer_Start(&dl->dial.timer);
275 if (dl->dial.timer
[all...]
/freebsd-current/contrib/bsnmp/snmpd/
H A Dsnmpd.h90 struct timer { struct
93 evTimerID id; /* timer id */
94 struct lmodule *owner; /* owner of the timer */
95 LIST_ENTRY(timer) link;
99 extern LIST_HEAD(timer_list, timer) timer_list;
/freebsd-current/contrib/googletest/googletest/test/
H A Dgoogletest-death-test-test.cc384 // Sets SIGPROF action and ITIMER_PROF timer (interval: 1ms).
392 // timer comes second, to avoid SIGPROF premature delivery, as suggested at
394 struct itimerval timer; local
395 timer.it_interval.tv_sec = 0;
396 timer.it_interval.tv_usec = 1;
397 timer.it_value = timer.it_interval;
398 ASSERT_EQ(0, setitimer(ITIMER_PROF, &timer, nullptr));
401 // Disables ITIMER_PROF timer and ignores SIGPROF signal.
403 struct itimerval timer; local
[all...]
/freebsd-current/sys/compat/linuxkpi/common/src/
H A Dlinux_compat.c83 #include <linux/timer.h>
1919 struct timer_list *timer; local
1921 timer = context;
1923 /* the timer is about to be shutdown permanently */
1924 if (timer->function == NULL)
1929 callout_reset(&timer->callout, 1,
1930 &linux_timer_callback_wrapper, timer);
1934 timer->function(timer->data);
1938 mod_timer(struct timer_list *timer, in argument
1953 add_timer(struct timer_list *timer) argument
1962 add_timer_on(struct timer_list *timer, int cpu) argument
1971 del_timer(struct timer_list *timer) argument
1980 del_timer_sync(struct timer_list *timer) argument
1989 timer_delete_sync(struct timer_list *timer) argument
1996 timer_shutdown_sync(struct timer_list *timer) argument
[all...]
/freebsd-current/contrib/ofed/opensm/complib/
H A Dcl_event_wheel.c161 /* We need to restart the timer only if the list is not empty now */
168 /* start the timer to the timeout [msec] */
171 CL_DBG("__cl_event_wheel_callback: Restart timer in: "
173 cl_status = cl_timer_start(&p_event_wheel->timer, new_timeout);
176 "Failed to start timer\n");
193 cl_timer_construct(&(p_event_wheel->timer));
209 /* init the timer with timeout */
210 cl_status = cl_timer_init(&p_event_wheel->timer, __cl_event_wheel_callback, p_event_wheel); /* cb context */
275 /* destroy the timer */
276 cl_timer_destroy(&p_event_wheel->timer);
[all...]
/freebsd-current/sys/dev/sound/pci/
H A Demu10kx.c365 int timer[EMU_MAX_IRQ_CONSUMERS]; /* timer */ member in struct:emu_sc_info
804 * emu_timer_ - HW timer management
809 int i, timer; local
811 timer = -1;
815 if (sc->timer[i] == 0) {
816 sc->timer[i] = -1; /* disable it */
817 timer = i;
819 return (timer);
827 emu_timer_set(struct emu_sc_info *sc, int timer, in argument
851 emu_timer_enable(struct emu_sc_info *sc, int timer, int go) argument
893 emu_timer_clear(struct emu_sc_info *sc, int timer) argument
[all...]
/freebsd-current/sys/netinet/
H A Digmp.c840 uint16_t timer; local
884 timer = igmp->igmp_code * IGMP_FASTHZ / IGMP_TIMER_SCALE;
885 if (timer == 0)
886 timer = 1;
891 * interface, kick the report timer.
899 igmp_v2_update_group(inm, timer);
911 igmp_v2_update_group(inm, timer);
923 * Update the report timer on a group in response to an IGMPv2 query.
925 * If we are becoming the reporting member for this group, start the timer.
926 * If we already are the reporting member for this group, and timer i
938 igmp_v2_update_group(struct in_multi *inm, const int timer) argument
991 uint16_t timer; local
1148 igmp_input_v3_group_query(struct in_multi *inm, struct igmp_ifsoftc *igi, int timer, struct igmpv3 *igmpv3) argument
[all...]
/freebsd-current/sys/netinet6/
H A Dmld6.c608 uint16_t timer; local
669 timer = (ntohs(mld->mld_maxdelay) * MLD_FASTHZ) / MLD_TIMER_SCALE;
670 if (timer == 0)
671 timer = 1;
676 * interface, kick the report timer.
684 mld_v1_update_group(inm, timer);
697 mld_v1_update_group(inm, timer);
710 * Update the report timer on a group in response to an MLDv1 query.
712 * If we are becoming the reporting member for this group, start the timer.
713 * If we already are the reporting member for this group, and timer i
725 mld_v1_update_group(struct in6_multi *inm, const int timer) argument
785 uint16_t timer; local
954 mld_v2_process_group_query(struct in6_multi *inm, struct mld_ifsoftc *mli, int timer, struct mbuf *m0, struct mldv2_query *mld, const int off) argument
[all...]
/freebsd-current/contrib/ntp/sntp/libevent/test/
H A Dtest-ratelim.c284 struct event *timer = NULL; local
297 timer = event_new(base, -1, EV_PERSIST, timer_bias_cb, event_self_cbarg());
298 if (!timer || event_add(timer, &tv)) {
309 if (timer)
310 event_free(timer);
/freebsd-current/contrib/libevent/test/
H A Dtest-ratelim.c284 struct event *timer = NULL; local
297 timer = event_new(base, -1, EV_PERSIST, timer_bias_cb, event_self_cbarg());
298 if (!timer || event_add(timer, &tv)) {
309 if (timer)
310 event_free(timer);
/freebsd-current/contrib/unbound/services/
H A Dauthzone.h306 struct comm_timer* timer; member in struct:auth_nextprobe
358 struct comm_timer* timer; member in struct:auth_probe
429 struct comm_timer* timer; member in struct:auth_transfer
H A Doutside_network.h326 struct comm_timer* timer; member in struct:pending
388 /** timeout event; timer keeps running whether the query is
390 struct comm_timer* timer; member in struct:waiting_tcp
526 /** flash timer to start the net I/O as a separate event */
527 struct comm_timer* timer; member in struct:serviced_query
827 /** callback for outgoing TCP timer event */
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats_timing.h61 #error Must have high resolution timer defined
H A Dkmp_stats.cpp276 // initialize the partitioned timers to an initial timer
277 void partitionedTimers::init(explicitTimer timer) { argument
279 timer_stack.push_back(timer);
283 // stop/save the current timer, and start the new timer (timer_pair)
284 // There is a special condition where if the current timer is equal to
286 // and it won't stop/start the currently running timer.
287 void partitionedTimers::push(explicitTimer timer) { argument
288 // get the current timer
289 // pause current timer
321 exchange(explicitTimer timer) argument
498 time_t timer; local
[all...]
/freebsd-current/sys/dev/aic7xxx/
H A Daic_osm_lib.h153 #define aic_timer_init(timer) callout_init(timer, /*mpsafe*/1)
162 aic_timer_reset(aic_timer_t *timer, u_int msec, aic_callback_t *func, void *arg) argument
169 callout_reset(timer, time, func, arg);
/freebsd-current/sys/dev/isci/scil/
H A Dscif_sas_domain.h175 * This is the timer handle that is utilized to time the discovery
178 void * timer; member in struct:SCIF_SAS_DOMAIN::__anon2757
/freebsd-current/sys/contrib/dev/mediatek/mt76/
H A Dmt76x02_usb_core.c225 static enum hrtimer_restart mt76x02u_pre_tbtt_interrupt(struct hrtimer *timer) argument
228 container_of(timer, struct mt76x02_dev, pre_tbtt_timer);
/freebsd-current/lib/libc/isc/
H A Deventlib_p.h132 evTimerID timer; member in struct:evStream
134 #define EV_STR_TIMEROK 0x0001 /*%< IFF timer valid. */
176 struct { evTimer *this; } timer; member in union:evEvent_p::__anon144
/freebsd-current/usr.sbin/bhyve/
H A Dlibslirp.h83 /* For now libslirp creates only a timer for the IPv6 RA */
108 /* Create a new timer with the given callback and opaque data. Not
111 /* Remove and free a timer */
112 void (*timer_free)(void *timer, void *opaque);
113 /* Modify a timer to expire at @expire_time (ms) */
114 void (*timer_mod)(void *timer, int64_t expire_time, void *opaque);
129 /* Create a new timer. When the timer fires, the application passes
271 /* This is called by the application when a timer expires, if it provides
/freebsd-current/sys/arm/mv/armada/
H A Dwdt.c205 mv_set_timer(uint32_t timer, uint32_t val) argument
208 bus_write_4(wdt_softc->wdt_res, CPU_TIMER0 + timer * 0x8, val);
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dworkqueue.h34 #include <linux/timer.h>
94 } timer; member in struct:delayed_work
/freebsd-current/sys/dev/mlx5/mlx5_core/
H A Dmlx5_health.c643 mod_timer(&health->timer, get_next_poll_jiffies());
650 init_timer(&health->timer);
658 setup_timer(&health->timer, poll_health, (unsigned long)dev);
659 mod_timer(&health->timer,
679 del_timer_sync(&health->timer);

Completed in 308 milliseconds

12345678910