Searched refs:once (Results 26 - 50 of 121) sorted by relevance

12345

/freebsd-11-stable/stand/efi/libefi/
H A Ddevpath.c66 static int once = 1; local
71 if (once) {
76 once = 0;
/freebsd-11-stable/usr.bin/systat/
H A Dswap.c119 static int once = 0; local
121 if (once)
137 once = 1;
/freebsd-11-stable/contrib/gcc/
H A Dgthr-tpf.h103 __gthread_once (__gthread_once_t *once, void (*func) (void)) argument
106 return __gthrw_(pthread_once) (once, func);
H A Dgthr-vxworks.h113 extern int __gthread_once (__gthread_once_t *once, void (*func)(void));
H A Dunwind-sjlj.c73 /* These are filled in once by the target function before any
119 static __gthread_once_t once = __GTHREAD_ONCE_INIT;
120 if (__gthread_once (&once, fc_key_init) != 0 || use_fc_key < 0)
118 static __gthread_once_t once = __GTHREAD_ONCE_INIT; local
H A Dgthr-posix.c37 pthread_once (pthread_once_t *once ATTRIBUTE_UNUSED,
H A Dgthr-dce.h433 __gthread_once (__gthread_once_t *once, void (*func) (void)) argument
436 return __gthrw_(pthread_once) (once, func);
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dlib.c31 #include <isc/once.h>
H A Dmem_api.c23 #include <isc/once.h>
35 static isc_once_t once = ISC_ONCE_INIT; variable
47 RUNTIME_CHECK(isc_once_do(&once, initialize) == ISC_R_SUCCESS);
H A Dsocket_api.c24 #include <isc/once.h>
29 static isc_once_t once = ISC_ONCE_INIT; variable
41 RUNTIME_CHECK(isc_once_do(&once, initialize) == ISC_R_SUCCESS);
H A Dtask_api.c26 #include <isc/once.h>
31 static isc_once_t once = ISC_ONCE_INIT; variable
43 RUNTIME_CHECK(isc_once_do(&once, initialize) == ISC_R_SUCCESS);
/freebsd-11-stable/contrib/gcclibs/libdecnumber/
H A DdecNumberLocal.h34 /* etc. It must only be included once, and should not need to be */
135 #error decNumberLocal included more than once
/freebsd-11-stable/usr.bin/cpuset/
H A Dcpuset.c153 int once; local
156 for (once = 0, cpu = 0; cpu < CPU_SETSIZE; cpu++) {
158 if (once == 0) {
160 once = 1;
/freebsd-11-stable/contrib/apr/include/arch/unix/
H A Dapr_arch_threadproc.h75 pthread_once_t once; member in struct:apr_thread_once_t
/freebsd-11-stable/contrib/libxo/
H A Dwarnings.mk56 WARNINGS += -fno-inline-functions-called-once
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Diostream.cpp87 static bool once = []() { local
96 ((void)once);
152 static DoIOSInit init_the_streams; // gets initialized once
/freebsd-11-stable/contrib/libpcap/
H A Dsockutils.h37 #pragma once
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Demutls.c124 static pthread_once_t once = PTHREAD_ONCE_INIT; local
125 pthread_once(&once, emutls_init);
207 static INIT_ONCE once; local
208 InitOnceExecuteOnce(&once, emutls_init, NULL, NULL);
/freebsd-11-stable/contrib/ntp/lib/isc/win32/
H A Dnet.c28 #include <isc/once.h>
59 static isc_once_t once = ISC_ONCE_INIT; variable
116 RUNTIME_CHECK(isc_once_do(&once, initialize_action) == ISC_R_SUCCESS);
/freebsd-11-stable/gnu/usr.bin/gdb/kgdb/
H A Dtrgt.c386 static int once = 0; local
388 if (stoppcbs == 0 && !once) {
389 once = 1;
H A Dmain.c159 static int once = 1; local
167 if (once && objfile != NULL && objfile == symfile_objfile) {
172 once = 0;
355 warnx("option %c: can only be specified once",
383 warnx("option %c: can only be specified once",
/freebsd-11-stable/sys/kern/
H A Dvfs_init.c172 static int once; local
177 if (!once) {
179 once = 1;
/freebsd-11-stable/contrib/ntp/lib/isc/unix/
H A Dnet.c37 #include <isc/once.h>
115 static isc_once_t once = ISC_ONCE_INIT; variable
221 RUNTIME_CHECK(isc_once_do(&once, initialize_action) == ISC_R_SUCCESS);
/freebsd-11-stable/contrib/apr/threadproc/unix/
H A Dthread.c309 (*control)->once = once_init;
316 return pthread_once(&control->once, func);
/freebsd-11-stable/share/mk/
H A Dlocal.sys.env.mk6 # some things we do only once

Completed in 178 milliseconds

12345