Lines Matching refs:once
12 # pragma once
25 * once. It takes no arguments and returns an int result (1 for success or
48 * once that has been defined in another file via DEFINE_RUN_ONCE().
56 * exactly once. This function will be declared as static within the file. It
86 * ever be called - and that function will be called exactly once. Definition
120 * @once: pointer to static object of type CRYPTO_ONCE
129 # define RUN_ONCE(once, init) \
130 (CRYPTO_THREAD_run_once(once, init##_ossl_) ? init##_ossl_ret_ : 0)
135 * @once: pointer to static object of type CRYPTO_ONCE
147 # define RUN_ONCE_ALT(once, initalt, init) \
148 (CRYPTO_THREAD_run_once(once, initalt##_ossl_) ? init##_ossl_ret_ : 0)