Home
last modified time | relevance | path

Searched refs:once (Results 1 – 25 of 117) sorted by relevance

12345

/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/include/
H A Dk5-platform.h202 typedef struct { k5_once_t once; int error, did_run; void (*fn)(void); } k5_init_t; member
215 int k5int_err = k5_once(&k5int_i->once, k5int_i->fn); \
226 err = k5_once(&i->once, i->fn); \
238 static k5_init_t JOIN__2(NAME, once) = \
243 JOIN__2(NAME, once).did_run = 1; \
244 JOIN__2(NAME, once).error = NAME(); \
249 k5_call_init_function(& JOIN__2(NAME, once))
260 (JOIN__2(NAME, once).did_run && JOIN__2(NAME, once).error == 0)
/illumos-gate/usr/src/lib/libresolv2/common/irs/
H A Dgai_strerror.c59 static int once = 0; in gai_strerror()
67 if (!once) { in gai_strerror()
70 if (!once) { in gai_strerror()
75 once = 1; in gai_strerror()
H A Dirs_data.c56 static int once = 0; variable
131 if (!once) { in net_data_init()
134 if (!once) { in net_data_init()
139 once = 1; in net_data_init()
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dpthread.c195 __once_t *once = (__once_t *)once_control; in pthread_once() local
197 if (once == NULL || init_routine == NULL) in pthread_once()
200 if (once->once_flag == PTHREAD_ONCE_NOTDONE) { in pthread_once()
201 (void) mutex_lock(&once->mlock); in pthread_once()
202 if (once->once_flag == PTHREAD_ONCE_NOTDONE) { in pthread_once()
203 pthread_cleanup_push(_mutex_unlock_wrap, &once->mlock); in pthread_once()
207 once->once_flag = PTHREAD_ONCE_DONE; in pthread_once()
209 (void) mutex_unlock(&once->mlock); in pthread_once()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dvthread.h156 _vtonce_t once; member
169 #define vtonceerror(once) ((once)->error) argument
215 #define vtonceerror(once) (0) argument
/illumos-gate/usr/src/cmd/svc/startd/
H A Dspecials.c61 static int once; in special_fsroot_post_online() local
89 if (once) in special_fsroot_post_online()
95 once++; in special_fsroot_post_online()
/illumos-gate/usr/src/boot/efi/libefi/
H A Ddevpath.c85 static bool once = true; in efi_devpath_name() local
90 if (once) { in efi_devpath_name()
95 once = false; in efi_devpath_name()
/illumos-gate/usr/src/contrib/zlib/
H A Dcrc32.c167 local void once OF((once_t *, void (*)(void)));
187 local void once(state, init) in once() function
225 local void once(state, init) in once() function
582 once(&made, make_crc_table); in get_crc_table()
622 once(&made, make_crc_table);
737 once(&made, make_crc_table); in crc32_z()
1062 once(&made, make_crc_table); in crc32_combine64()
1077 once(&made, make_crc_table); in crc32_combine_gen64()
/illumos-gate/usr/src/cmd/sa/
H A DREADME39 sadc is executed once, such that a special record is written to
46 If t and n are not specified, it writes data once.
58 minutes interval from 8:00 to 17:00 and once at other times.
/illumos-gate/usr/src/cmd/tbl/
H A Dt8.c21 int once; variable
42 if (i==0) once=0; in putline()
106 if (allflg && once>0 ) in putline()
108 once=1; in putline()
/illumos-gate/usr/src/psm/stand/boot/sparc/common/
H A Dboot_plat.c253 static int once; in openfile() local
256 if (once == 0) { in openfile()
258 ++once; in openfile()
/illumos-gate/usr/src/tools/smatch/src/validation/
H A Dpragma-once.c1 #pragma once
/illumos-gate/usr/src/cmd/bhyve/
H A Dkernemu_dev.h28 #pragma once
H A Dvmgenc.h27 #pragma once
H A Dtpm_device.h8 #pragma once
H A Dtpm_ppi.h8 #pragma once
H A Dqemu_fwcfg.h11 #pragma once
H A Dtpm_emul.h8 #pragma once
H A Dtpm_intf.h8 #pragma once
H A De820.h8 #pragma once
H A Dqemu_loader.h8 #pragma once
H A Dacpi_device.h8 #pragma once
/illumos-gate/usr/src/cmd/mail/
H A DSTD_VAC_MSG7 receive it only once, although all the messages you send
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dtclsqlite.c71 int once; /* Set for first callback only */ member
96 assert( cbData->once ); in DbEvalCallback()
97 cbData->once = 0; in DbEvalCallback()
182 if( azCol==0 || (cbData->once && cbData->zArray[0]) ){ in DbEvalCallback()
194 cbData->once = 0; in DbEvalCallback()
793 cbData.once = 1; in DbObjCmd()
/illumos-gate/usr/src/common/ficl/test/
H A Dtestcase.fr62 .( You should once more see [3] 1 2 3 -> )

12345