HomeSort by: relevance | last modified time | path
    Searched defs:init_done (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/lib/libcurses/
ctrace.c 54 static int init_done = 0; variable
79 init_done = 1;
89 if (!init_done)
  /src/external/lgpl2/userspace-rcu/dist/include/urcu/
tls-compat.h 89 int init_done; member in struct:urcu_tls
107 .init_done = 0, \
110 if (!__tls_ ## name.init_done) { \
113 if (!__tls_ ## name.init_done) { \
116 cmm_smp_wmb(); /* create key before write init_done */ \
117 __tls_ ## name.init_done = 1; \
121 cmm_smp_rmb(); /* read init_done before getting key */ \
  /src/external/mpl/dhcp/bind/dist/lib/isc/
tls.c 39 static atomic_bool init_done = false; variable
65 REQUIRE(!atomic_load(&init_done));
115 REQUIRE(atomic_compare_exchange_strong(&init_done, &(bool){ false },
123 REQUIRE(atomic_load(&init_done));
128 REQUIRE(atomic_load(&init_done));
  /src/sys/kern/
subr_evcnt.c 112 static bool init_done; variable
132 KASSERT(!init_done);
136 init_done = true;
154 KASSERTMSG(init_done,
  /src/crypto/external/apache2/openssl/dist/engines/
e_afalg.h 84 int init_done; member in struct:afalg_ctx_st
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_obj_local.h 106 unsigned int init_done : 1; member in struct:quic_obj_st
191 assert(obj->init_done);
200 assert(obj->init_done);
313 assert(obj->init_done);
326 assert(obj->init_done);
  /src/crypto/external/bsd/openssl/dist/engines/
e_afalg.h 85 int init_done; member in struct:afalg_ctx_st
  /src/crypto/external/bsd/openssl.old/dist/engines/
e_afalg.h 85 int init_done; member in struct:afalg_ctx_st
  /src/external/lgpl2/userspace-rcu/dist/src/
urcu.c 75 static int init_done; variable
543 if (init_done)
545 init_done = 1;
  /src/external/ibm-public/postfix/dist/src/global/
dict_mongodb.c 130 static bool init_done = false; variable
539 if (!init_done) {
541 init_done = true;
  /src/sbin/efi/
certs.c 299 static bool init_done = false; local
308 if (!init_done) {
310 init_done = true;
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
rand-fortuna.c 439 static int init_done; variable
464 if (!init_done)
542 if (!init_done)
545 init_done = 1;
549 return (init_done && have_entropy);
596 init_done = 0;
  /src/external/gpl3/binutils/dist/opcodes/
nds32-dis.c 1239 static unsigned init_done = 0; local
1248 if (init_done)
1266 init_done = 1;
  /src/external/gpl3/binutils.old/dist/opcodes/
nds32-dis.c 1239 static unsigned init_done = 0; local
1248 if (init_done)
1266 init_done = 1;
  /src/external/gpl3/gdb.old/dist/opcodes/
nds32-dis.c 1239 static unsigned init_done = 0; local
1248 if (init_done)
1266 init_done = 1;
  /src/external/gpl3/gdb/dist/opcodes/
nds32-dis.c 1239 static unsigned init_done = 0; local
1248 if (init_done)
1266 init_done = 1;
  /src/lib/librumpclient/
rumpclient.c 858 static pid_t init_done = 0; variable
876 if (init_done == (mypid = getpid()))
883 init_done = mypid;
985 init_done = 0;
  /src/crypto/external/bsd/openssh/dist/
sshd.c 600 static int init_done; local
608 if (!init_done) {
609 init_done = 1;
sftp-server.c 76 static int init_done; variable
1807 init_done = 1;
1810 if (!init_done)
1817 if (!init_done)
  /src/sys/arch/vax/vsa/
spx.c 1449 static int init_done; local
1451 if (init_done)
1605 init_done = 1;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios/
nouveau_nvkm_subdev_bios_init.c 611 * INIT_DONE - opcode 0x71
615 init_done(struct nvbios_init *init) function
1528 init_done(init);
1577 init_done(init);
1611 init_done(init);
2279 [0x71] = { init_done },
  /src/external/gpl3/gcc.old/dist/libgomp/plugin/
plugin-nvptx.c 676 static bool init_done = false; local
677 if (!init_done)
680 init_done = true;
  /src/external/ibm-public/postfix/dist/src/tls/
tls_misc.c 699 static int init_done; local
701 if (init_done)
703 init_done = 1;
  /src/libexec/ld.elf_so/
rtld.h 210 init_done:1, /* True if .init has been added */ member in struct:Struct_Obj_Entry
  /src/external/bsd/less/dist/
screen.c 233 static int init_done = 0; variable
1779 init_done = 1;
1809 init_done = 1;
1820 if (!init_done)
1849 init_done = 0;
1857 return (is_tty && init_done);

Completed in 50 milliseconds

1 2