Lines Matching refs:once
14 * once. It takes no arguments and returns and int result (1 for success or
37 * once that has been defined in another file via DEFINE_RUN_ONCE().
45 * exactly once. This function will be declared as static within the file. It
75 * ever be called - and that function will be called exactly once. Definition
109 * @once: pointer to static object of type CRYPTO_ONCE
118 #define RUN_ONCE(once, init) \
119 (CRYPTO_THREAD_run_once(once, init##_ossl_) ? init##_ossl_ret_ : 0)
124 * @once: pointer to static object of type CRYPTO_ONCE
136 #define RUN_ONCE_ALT(once, initalt, init) \
137 (CRYPTO_THREAD_run_once(once, initalt##_ossl_) ? init##_ossl_ret_ : 0)