Home
last modified time | relevance | path

Searched refs:pause (Results 1 – 25 of 358) sorted by relevance

12345678910>>...15

/freebsd/tools/test/stress2/misc/
H A Dpause.sh36 sed '1,/^EOF/d' < $odir/$0 > $dir/pause.c
37 mycc -o pause -Wall -Wextra -O0 -g pause.c || exit 1
38 rm -f pause.c
40 pkill pause
41 $dir/pause &
44 while pgrep -q pause; do
47 { echo "Timed out"; pgrep pause | xargs ps -lp; exit 1; }
53 rm -rf $dir/pause
97 pause(); function
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/raidz/
H A Draidz_expand_005_pos.ksh148 pause=$((((RANDOM << 15) + RANDOM) % reflow_size / 2))
149 log_must set_tunable64 RAIDZ_EXPAND_MAX_REFLOW_BYTES $pause
160 pause=$((pause + (((RANDOM << 15) + RANDOM) % \
162 log_must set_tunable64 RAIDZ_EXPAND_MAX_REFLOW_BYTES $pause
168 pause=$((devs*dev_size_mb*1024*1024))
169 log_must set_tunable64 RAIDZ_EXPAND_MAX_REFLOW_BYTES $pause
H A Draidz_expand_003_pos.ksh116 pause=$((reflow_size/2))
117 log_must set_tunable64 RAIDZ_EXPAND_MAX_REFLOW_BYTES $pause
132 pause=$((devs*dev_size_mb*1024*1024))
133 log_must set_tunable64 RAIDZ_EXPAND_MAX_REFLOW_BYTES $pause
/freebsd/sys/dev/cxgb/common/
H A Dcxgb_vsc8211.c135 int err, sp = -1, dplx = -1, pause = 0; in vsc8211_get_link_status() local
185 pause = PAUSE_RX | PAUSE_TX; in vsc8211_get_link_status()
189 pause = PAUSE_TX; in vsc8211_get_link_status()
192 pause = PAUSE_RX; in vsc8211_get_link_status()
200 *fc = pause; in vsc8211_get_link_status()
208 int err, sp = -1, dplx = -1, pause = 0; in vsc8211_get_link_status_fiber() local
253 pause = PAUSE_RX | PAUSE_TX; in vsc8211_get_link_status_fiber()
256 pause = PAUSE_TX; in vsc8211_get_link_status_fiber()
259 pause = PAUSE_RX; in vsc8211_get_link_status_fiber()
267 *fc = pause; in vsc8211_get_link_status_fiber()
H A Dcxgb_tn1010.c135 int err, sp = -1, pause = 0; in tn1010_get_link_status() local
157 pause = PAUSE_RX | PAUSE_TX; in tn1010_get_link_status()
161 pause = PAUSE_TX; in tn1010_get_link_status()
164 pause = PAUSE_RX; in tn1010_get_link_status()
172 *fc = pause; in tn1010_get_link_status()
H A Dcxgb_mv88e1xxx.c191 int sp = -1, dplx = -1, pause = 0; in mv88e1xxx_get_link_status() local
196 pause |= PAUSE_RX; in mv88e1xxx_get_link_status()
198 pause |= PAUSE_TX; in mv88e1xxx_get_link_status()
216 *fc = pause; in mv88e1xxx_get_link_status()
/freebsd/contrib/ntp/sntp/libevent/
H A Devrpc.c97 struct evrpc_hook_ctx *pause; in evrpc_free() local
104 while ((pause = TAILQ_FIRST(&base->paused_requests)) != NULL) { in evrpc_free()
105 TAILQ_REMOVE(&base->paused_requests, pause, next); in evrpc_free()
106 mm_free(pause); in evrpc_free()
542 struct evrpc_hook_ctx *pause; in evrpc_pool_free() local
551 while ((pause = TAILQ_FIRST(&pool->paused_requests)) != NULL) { in evrpc_pool_free()
552 TAILQ_REMOVE(&pool->paused_requests, pause, next); in evrpc_pool_free()
553 mm_free(pause); in evrpc_pool_free()
767 struct evrpc_hook_ctx *pause = mm_malloc(sizeof(*pause)); in evrpc_pause_request() local
768 if (pause == NULL) in evrpc_pause_request()
[all …]
/freebsd/contrib/libevent/
H A Devrpc.c97 struct evrpc_hook_ctx *pause; in evrpc_free() local
104 while ((pause = TAILQ_FIRST(&base->paused_requests)) != NULL) { in evrpc_free()
105 TAILQ_REMOVE(&base->paused_requests, pause, next); in evrpc_free()
106 mm_free(pause); in evrpc_free()
542 struct evrpc_hook_ctx *pause; in evrpc_pool_free() local
551 while ((pause = TAILQ_FIRST(&pool->paused_requests)) != NULL) { in evrpc_pool_free()
552 TAILQ_REMOVE(&pool->paused_requests, pause, next); in evrpc_pool_free()
553 mm_free(pause); in evrpc_pool_free()
767 struct evrpc_hook_ctx *pause = mm_malloc(sizeof(*pause)); in evrpc_pause_request() local
768 if (pause == NULL) in evrpc_pause_request()
[all …]
/freebsd/sys/dev/usb/
H A Dusb_dynamic.c133 pause("WAIT", hz); in usb_quirk_unload()
149 pause("WAIT", hz); in usb_temp_unload()
163 pause("WAIT", hz); in usb_bus_unload()
178 pause("WAIT", hz); in usb_linux_unload()
/freebsd/sys/contrib/device-tree/src/arm/mediatek/
H A Dmt7623a.dtsi27 pause;
38 pause;
102 pause;
115 pause;
H A Dmt7623n-bananapi-bpi-r2.dts181 pause;
192 pause;
248 pause;
261 pause;
/freebsd/usr.sbin/ppp/
H A Dchat.c90 timer_Stop(&c->pause); in chat_PauseTimer()
91 c->pause.load = 0; in chat_PauseTimer()
97 timer_Stop(&c->pause); in chat_Pause()
98 c->pause.load += load; in chat_Pause()
99 c->pause.func = chat_PauseTimer; in chat_Pause()
100 c->pause.name = "chat pause"; in chat_Pause()
101 c->pause.arg = c; in chat_Pause()
102 timer_Start(&c->pause); in chat_Pause()
147 if (c->pause.state == TIMER_RUNNING) in chat_UpdateSet()
565 memset(&c->pause, '\0', sizeof c->pause); in chat_Init()
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/
H A Dmt7986b-rfb.dts44 pause;
56 pause;
106 pause;
119 pause;
H A Dmt7986a-rfb.dts64 pause;
76 pause;
311 pause;
324 pause;
/freebsd/contrib/netbsd-tests/rump/rumpkern/h_server/
H A Dh_simpleserver.c57 pause(); in main()
60 pause(); in main()
/freebsd/contrib/bsddialog/
H A DREADME.md34 --pause, --radiolist, --rangebox, --textbox, --timebox, --treeview, --yesno.
47 % ./bsddialog --ascii-lines --pause "Hello World!" 8 50 10
69 % sh ./examples_utility/pause.sh
106 % ./pause
/freebsd/contrib/netbsd-tests/lib/libc/gen/
H A Dt_pause.c67 if (pause() != -1 || fail != false) in ATF_TC_BODY()
89 (void)pause(); in ATF_TC_BODY()
/freebsd/sys/dev/ipmi/
H A Dipmi_ssif.c177 pause("ssifwt", hz / 10); in ssif_polled_request()
192 pause("ssifwt", hz / 100); in ssif_polled_request()
330 pause("retry", 60 * hz / 1000); in ssif_loop()
345 pause("delay", hz / 100); in ssif_loop()
/freebsd/contrib/netbsd-tests/lib/libc/sys/
H A Dt_kill.c66 pause(); in ATF_TC_BODY()
234 pause(); in ATF_TC_BODY()
281 pause(); in ATF_TC_BODY()
/freebsd/tests/sys/file/
H A Dflock_helper.c213 pause(); in test2()
284 pause(); in test3()
353 pause(); in test4()
525 pause(); in test6()
628 pause(); in test7()
700 pause(); in test8()
777 pause(); in test9()
852 pause(); in test10()
1366 pause(); in test15()
1474 pause(); in test16()
/freebsd/sys/contrib/device-tree/src/mips/cavium-octeon/
H A Docteon_3xxx.dtsi137 cavium,t-pause = <0>;
154 cavium,t-pause = <320>;
171 cavium,t-pause = <0>;
188 cavium,t-pause = <0>;
/freebsd/sys/contrib/device-tree/src/arm/broadcom/
H A Dbcm47094-asus-rt-ac88u.dts89 pause;
123 pause;
/freebsd/tests/sys/kern/
H A Dreaper.c421 pause(); in ATF_TC_BODY()
609 pause(); in ATF_TC_BODY()
612 pause(); in ATF_TC_BODY()
668 pause(); in ATF_TC_BODY()
671 pause(); in ATF_TC_BODY()
685 pause(); in ATF_TC_BODY()
688 pause(); in ATF_TC_BODY()
760 pause(); in ATF_TC_BODY()
/freebsd/contrib/dialog/package/freebsd/
H A Dpkg-plist145 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pause
146 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pause-both
147 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pause-extra
148 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pause-help
/freebsd/sys/dev/irdma/
H A Dicrdma_hw.c292 u32 pause; in irdma_is_pfc_set() local
295 pause = (rd32(vsi->dev->hw, in irdma_is_pfc_set()
298 pause &= (rd32(vsi->dev->hw, in irdma_is_pfc_set()
303 pause; in irdma_is_pfc_set()

12345678910>>...15