HomeSort by: relevance | last modified time | path
    Searched defs:once (Results 1 - 22 of 22) sorted by relevancy

  /src/sys/arch/riscv/riscv/
mainbus.c 95 static int once = 0; local in function:mainbus_match
97 if (once != 0)
99 once = 1;
  /src/lib/libc/include/
arc4random.h 53 once_t once; member in struct:arc4random_global_state
  /src/games/hack/
def.trap.h 71 unsigned once:1; member in struct:trap
  /src/sys/arch/arm/gemini/
obio_timer.c 206 static int once=1; local in function:obiotimer_attach
230 if (once) {
231 once = 0;
  /src/sys/arch/mips/cavium/
mainbus.c 72 static int once = 0; local in function:mainbus_match
74 if (once != 0)
76 once = 1;
  /src/sbin/devpubd/
devpubd.c 263 bool once = false; local in function:main
272 once = true;
303 if (!once)
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
emutls.c 122 static pthread_once_t once = PTHREAD_ONCE_INIT; local in function:emutls_get_index
123 pthread_once(&once, emutls_init);
  /src/usr.bin/vmstat/
drvstats.c 302 static int once = 0; local in function:drvinit
305 if (once)
398 once = 1;
  /src/sys/arch/mips/rmi/
rmixl_cpu.c 174 static bool once = false; local in function:cpu_rmixl_attach
177 if (once == false) {
179 once = true;
rmixl_fmn.c 406 static bool once=false; local in function:rmixl_fmn_init
412 if (once == true)
413 panic("%s: call only once!", __func__);
414 once = true;
  /src/tests/lib/libpthread/
t_once.c 48 static pthread_once_t once = PTHREAD_ONCE_INIT; variable in typeref:typename:pthread_once_t
77 PTHREAD_REQUIRE(pthread_once(&once, ofunc));
78 PTHREAD_REQUIRE(pthread_once(&once, ofunc));
97 PTHREAD_REQUIRE(pthread_once(&once, once2_ofunc));
150 PTHREAD_REQUIRE(pthread_once(&once, once3_ofunc));
191 PTHREAD_REQUIRE(pthread_once(&once, ofunc));
213 (void)pthread_once(&once, &ofunc_silent);
251 once = once0;
257 (void)pthread_once(&once, &ofunc_silent);
  /src/sys/dev/acpi/
acpi_cpu.c 275 * must run only once, after interrupts have been enabled,
740 static bool once = false; local in function:acpicpu_debug_print
744 if (once != true) {
792 once = true;
  /src/sys/external/bsd/drm2/dist/drm/
drm_mm.c 609 bool once; local in function:drm_mm_insert_node_in_range
622 once = mode & DRM_MM_INSERT_ONCE;
628 hole = once ? NULL : next_hole(mm, hole, mode)) {
  /src/sys/netinet/
sctp_timer.c 218 int once; local in function:sctp_find_alternate_net
225 once = 0;
233 once++;
234 if (once > 1) {
259 once = 0;
264 once++;
265 if (once > 1) {
  /src/common/dist/zlib/
crc32.c 210 Define a once() function depending on the availability of atomics. If this is
217 /* Definition of once functionality. */
226 /* Structure for once(), which must be initialized with ONCE_INIT. */
234 Run the provided init() function exactly once, even if multiple threads
235 invoke once() at the same time. The state must be a once_t initialized with
238 local void once(once_t *state, void (*init)(void)) { function in typeref:typename:local void
252 /* Structure for once(), which must be initialized with ONCE_INIT. */
269 /* Run the provided init() function once. This is not thread-safe. */
270 local void once(once_t *state, void (*init)(void)) { function in typeref:typename:local void
284 /* State for once(). *
    [all...]
  /src/lib/libtelnet/
enc_des.c 73 int once; member in struct:fb
394 if (fbp->once == 0) {
396 fbp->once = 1;
  /src/sbin/routed/
if.c 208 * new interface. So just once look for new interfaces.
230 * new interface. So just once look for new interfaces.
248 int once = 0; local in function:iflookup
272 if (maybe != 0 || once || IF_RESCAN_DELAY())
274 once = 1;
277 * new interface. So just once look for new interfaces.
  /src/bin/ksh/
history.c 738 static int once; local in function:hist_finish
744 if (once++)
  /src/sys/arch/mips/cavium/dev/
if_cnmac.c 196 static int once; local in function:cnmac_buf_init
201 if (once == 1)
203 once = 1;
1163 static int once; local in function:cnmac_configure_common
1165 if (once == 1)
1167 once = 1;
  /src/usr.bin/make/
meta.c 157 /* we don't need these once we exec */
573 static bool once = false; local in function:meta_mode_init
607 if (once)
609 once = true;
654 /* compat mode we open the filemon dev once per command */
main.c 1901 * Major exception once jobs are being created.
2139 static bool once = true; local in function:Main_ExportMAKEFLAGS
2143 if (once != first)
2145 once = false;
2183 * Otherwise unlink the file once open.
  /src/sys/dev/pci/
if_iwnreg.h 752 struct iwn5000_calib_elem once; member in struct:iwn5000_calib_status

Completed in 26 milliseconds