/freebsd/crypto/openssl/include/internal/ |
H A D | thread_once.h | 12 # pragma once 129 # define RUN_ONCE(once, init) \ argument 130 (CRYPTO_THREAD_run_once(once, init##_ossl_) ? init##_ossl_ret_ : 0) 147 # define RUN_ONCE_ALT(once, initalt, init) \ argument 148 (CRYPTO_THREAD_run_once(once, initalt##_ossl_) ? init##_ossl_ret_ : 0)
|
/freebsd/usr.bin/procstat/ |
H A D | procstat_cs.c | 51 int once, twice, lastcpu, cpu; in procstat_cs() local 85 once = 0; in procstat_cs() 90 if (once == 0) { in procstat_cs() 93 once = 1; in procstat_cs() 106 if (once && twice) in procstat_cs()
|
/freebsd/contrib/netbsd-tests/lib/libpthread/ |
H A D | t_once.c | 46 static pthread_once_t once = PTHREAD_ONCE_INIT; variable 69 PTHREAD_REQUIRE(pthread_once(&once, ofunc)); in ATF_TC_BODY() 70 PTHREAD_REQUIRE(pthread_once(&once, ofunc)); in ATF_TC_BODY() 89 PTHREAD_REQUIRE(pthread_once(&once, once2_ofunc)); in once2_threadfunc() 142 PTHREAD_REQUIRE(pthread_once(&once, once3_ofunc)); in once3_threadfunc() 183 PTHREAD_REQUIRE(pthread_once(&once, ofunc)); in ATF_TC_BODY()
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock_output_test_golden.txt | 41 Expected: to be called once 55 Expected: to be called once 64 Expected: to be called once 72 Expected: to be called once 102 Expected: to be called once 103 Actual: called once - saturated and retired 109 Expected: to be called once 124 Expected: to be called once 131 Expected: to be called once 146 Expected: to be called once [all …]
|
/freebsd/lib/libsecureboot/openpgp/ |
H A D | opgp_key.c | 203 static int once = 0; in openpgp_trust_add() local 205 if (!once) { in openpgp_trust_add() 206 once = 1; in openpgp_trust_add() 352 static int once = -1; in openpgp_trust_init() local 360 if (once < 0) { in openpgp_trust_init() 361 once = 0; in openpgp_trust_init() 370 once++; in openpgp_trust_init() 376 return (once); in openpgp_trust_init()
|
/freebsd/crypto/heimdal/base/ |
H A D | heimbase.c | 320 heim_base_once_f(heim_base_once_t *once, void *ctx, void (*func)(void *)) in heim_base_once_f() argument 323 dispatch_once_f(once, ctx, func); in heim_base_once_f() 327 if (*once == 0) { in heim_base_once_f() 328 *once = 1; in heim_base_once_f() 332 *once = 2; in heim_base_once_f() 334 } else if (*once == 2) { in heim_base_once_f() 342 if (*once == 2) in heim_base_once_f() 412 static heim_base_once_t once = HEIM_BASE_ONCE_INIT; in autorel_tls() local 416 heim_base_once_f(&once, NULL, init_ar_tls); in autorel_tls()
|
/freebsd/libexec/rc/ |
H A D | hooks.sh | 131 once|--once) HOOKS_ADD_DEFAULT=once;; 147 --once) shift; hooks_add_once "$@";;
|
/freebsd/lib/libsecureboot/efi/ |
H A D | efi_init.c | 40 static int once = 0; in ve_efi_init() local 42 if (once > 0) in ve_efi_init() 45 once = 1; in ve_efi_init()
|
/freebsd/lib/libsecureboot/ |
H A D | vets.c | 427 static int once = -1; in ve_trust_init() local 429 if (once >= 0) in ve_trust_init() 430 return (once); in ve_trust_init() 431 once = 0; /* to be sure */ in ve_trust_init() 446 once = (int) VEC_LEN(trust_anchors); in ve_trust_init() 448 once += openpgp_trust_init(); in ve_trust_init() 450 return (once); in ve_trust_init() 1091 static int once = -1; in ve_self_tests() local 1102 if (once >= 0) in ve_self_tests() 1103 return (once); in ve_self_tests() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/watchdog/ |
H A D | of-xilinx-wdt.txt | 13 - xlnx,wdt-enable-once : 0 - Watchdog can be restarted 14 1 - Watchdog can be enabled just once 24 xlnx,wdt-enable-once = <0x0>;
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | opt-debug-file.mk | 44 . info This goes to stderr only, once. 47 . info This goes to stderr only, once. 62 # expect: make: Unterminated quoted string [make 'This goes to stderr only, once.]
|
H A D | include-main.mk | 20 .for i in once 38 .for i in once
|
H A D | varname.mk | 70 ASDZguv= once 82 ASDZguv.param= once
|
H A D | include-sub.inc | 12 .for i in once 43 .for i in once
|
/freebsd/crypto/openssl/crypto/ |
H A D | threads_none.c | 65 int CRYPTO_THREAD_run_once(CRYPTO_ONCE *once, void (*init)(void)) in CRYPTO_THREAD_run_once() argument 67 if (*once != 0) in CRYPTO_THREAD_run_once() 71 *once = 1; in CRYPTO_THREAD_run_once()
|
/freebsd/crypto/openssl/test/ssl-tests/ |
H A D | 18-dtls-renegotiate.cnf | 9 test-4 = 4-renegotiate-client-auth-once 129 [4-renegotiate-client-auth-once] 130 ssl_conf = 4-renegotiate-client-auth-once-ssl 132 [4-renegotiate-client-auth-once-ssl] 133 server = 4-renegotiate-client-auth-once-server 134 client = 4-renegotiate-client-auth-once-client 136 [4-renegotiate-client-auth-once-server] 143 [4-renegotiate-client-auth-once-client]
|
/freebsd/crypto/openssl/ms/ |
H A D | applink.c | 105 static int once = 1; in OPENSSL_Applink() local 109 if (once) { in OPENSSL_Applink() 135 once = 0; in OPENSSL_Applink()
|
/freebsd/usr.bin/systat/ |
H A D | swap.c | 89 static int once = 0; in initswap() local 91 if (once) in initswap() 101 once = 1; in initswap()
|
/freebsd/sys/contrib/device-tree/src/arm64/exynos/google/ |
H A D | gs101-oriole.dts | 57 /* TODO: Remove this once PMIC is implemented */ 63 /* TODO: Remove this once S2MPG11 slave PMIC is implemented */ 92 /* TODO: add the devices once drivers exist */ 148 /* TODO: Update these once PMIC is implemented */
|
/freebsd/contrib/ntp/libntp/lib/isc/unix/ |
H A D | strerror.c | 53 static isc_once_t once = ISC_ONCE_INIT; in isc__strerror() local 57 RUNTIME_CHECK(isc_once_do(&once, init_lock) == ISC_R_SUCCESS); in isc__strerror()
|
/freebsd/contrib/bmake/ |
H A D | sigaction.c | 279 static int once = 0; in sigprocmask() local 281 if (!once) { in sigprocmask() 287 once++; in sigprocmask()
|
/freebsd/contrib/ntp/libntp/lib/isc/ |
H A D | random.c | 39 static isc_once_t once = ISC_ONCE_INIT; variable 60 RUNTIME_CHECK(isc_once_do(&once, initialize_rand) == ISC_R_SUCCESS); in initialize()
|
/freebsd/bin/cpuset/ |
H A D | cpuset.c | 223 int once; in printset() local 226 for (once = 0, bit = 0; bit < size; bit++) { in printset() 228 if (once == 0) { in printset() 230 once = 1; in printset()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
H A D | emutls.c | 124 static pthread_once_t once = PTHREAD_ONCE_INIT; in emutls_init_once() local 125 pthread_once(&once, emutls_init); in emutls_init_once() 208 static INIT_ONCE once; in emutls_init_once() local 209 InitOnceExecuteOnce(&once, emutls_init, NULL, NULL); in emutls_init_once()
|
/freebsd/sys/contrib/zlib/ |
H A D | crc32.c | 236 local void once(once_t *state, void (*init)(void)) { in once() function 268 local void once(once_t *state, void (*init)(void)) { in once() function 551 once(&made, make_crc_table); in get_crc_table() 588 once(&made, make_crc_table); in crc32_z() 700 once(&made, make_crc_table); in crc32_z() 1023 once(&made, make_crc_table); in crc32_combine64() 1036 once(&made, make_crc_table); in crc32_combine_gen64()
|