| /src/cddl/compat/opensolaris/lib/libumem/ |
| H A D | umem.c | 33 umem_constructor_t *constructor; member 104 …te(char *debug_name, size_t bufsize, size_t align, umem_constructor_t *constructor, umem_destructo… in umem_cache_create() argument 112 cache->constructor = constructor; in umem_cache_create() 135 if(cache->constructor != NULL) { in umem_cache_alloc() 136 if(cache->constructor(buf, cache->callback_data, flags) != 0) { in umem_cache_alloc()
|
| /src/contrib/netbsd-tests/lib/csu/ |
| H A D | t_crt0.sh | 36 constructor executed 52 constructor executed 68 constructor executed 89 constructor executed
|
| /src/crypto/openssl/doc/man3/ |
| H A D | OSSL_DECODER_CTX.pod | 106 For every decoding done, even an intermediary one, a constructor provided by 109 The constructor is set with OSSL_DECODER_CTX_set_construct(). 112 decoder that was just used, and that may be useful for the constructor. 150 OSSL_DECODER_CTX_set_construct() sets the constructor I<construct>. 152 OSSL_DECODER_CTX_set_construct_data() sets the constructor data that is 153 passed to the constructor every time it's called. 155 OSSL_DECODER_CTX_set_cleanup() sets the constructor data I<cleanup> 165 decode instance I<decoder_inst> that the constructor got and an object 185 The B<OSSL_DECODER_INSTANCE> for the decoder from which the constructor gets 200 The constructor is expected to return 1 when the data it receives can be [all …]
|
| H A D | OSSL_ENCODER_CTX.pod | 83 At the beginning of the encoding process, a constructor provided by the 86 The constructor is set with OSSL_ENCODER_CTX_set_construct(). 90 constructor. There are some functions to extract data from this type, 125 OSSL_ENCODER_CTX_set_construct() sets the constructor I<construct>. 127 OSSL_ENCODER_CTX_set_construct_data() sets the constructor data that is 128 passed to the constructor every time it's called. 130 OSSL_ENCODER_CTX_set_cleanup() sets the constructor data I<cleanup> 148 The B<OSSL_ENCODER_INSTANCE> for the encoder from which the constructor gets 157 The constructor is expected to return a valid (non-NULL) pointer to a 161 These utility functions may be used by a constructor:
|
| /src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CXXRecordDeclDefinitionBits.def | 126 /// even if the class has a trivial default constructor. 196 /// constructor which is neither the copy nor move constructor. 200 /// constructor. 203 /// True if a defaulted default constructor for this class would 207 /// True if this class has a constexpr default constructor. 209 /// This is true for either a user-declared constexpr default constructor 210 /// or an implicitly declared constexpr default constructor. 223 /// Whether we have a C++11 user-provided default constructor (not 231 /// Whether an implicit copy constructor could have a const-qualified 240 /// Whether any declared copy constructor has a const-qualified
|
| /src/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DiagnosticASTKinds.td | 32 "%select{non-constexpr|undefined}0 %select{function|constructor}1 %2 cannot " 35 "constructor inherited from base class %0 cannot be used in a " 74 "constructor of base class %0 is not called">; 264 "in implicit initialization for inherited constructor of %0">; 691 "%select{method %5|constructor|destructor}4|" 692 "%select{method %5|constructor|destructor}4 " 694 "%select{method %5|constructor|destructor}4 " 696 "%select{method %5|constructor|destructor}4 " 698 "%select{method %5|constructor|destructor}4 " 700 "%select{method %5|constructor|destructor}4 " [all …]
|
| /src/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/ |
| H A D | cpu_model.h | 24 #if __has_attribute(constructor) 34 #define CONSTRUCTOR_ATTRIBUTE __attribute__((constructor(90)))
|
| /src/contrib/libarchive/libarchive/test/ |
| H A D | test_archive_read_support.c | 33 typedef struct archive *constructor(void); typedef 49 test_success(constructor new_, enabler enable_, destructor free_) in test_success() 65 test_failure(constructor new_, enabler enable_, destructor free_) in test_failure()
|
| /src/sbin/nvmecontrol/ |
| H A D | comnd.h | 88 static void cmd_register_##c(void) __attribute__((constructor)); \ 91 static void cmd_register_##c_##sc(void) __attribute__((constructor)); \
|
| /src/sys/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | spl_kmem.c | 158 int (*constructor)(void *, void *, int), void (*destructor)(void *, void *), in kmem_cache_create() 167 cache->kc_constructor = constructor; in kmem_cache_create() 172 constructor != NULL ? kmem_std_constructor : NULL, in kmem_cache_create()
|
| /src/sys/contrib/openzfs/lib/libspl/include/ |
| H A D | umem.h | 164 umem_constructor_t *constructor, in umem_cache_create() argument 176 cp->cache_constructor = constructor; in umem_cache_create()
|
| /src/contrib/llvm-project/lldb/source/Commands/ |
| H A D | OptionsBase.td | 25 // - `Option` constructor: Already set by constructor. 33 // - `Option` constructor: Already set by constructor.
|
| /src/contrib/googletest/docs/ |
| H A D | faq.md | 106 if all these implementations have a public default constructor (such that 285 ## Should I use the constructor/destructor of the test fixture or SetUp()/TearDown()? {#CtorVsSetUp} 293 between using the test fixture constructor/destructor or `SetUp()`/`TearDown()`. 296 * By initializing a member variable in the constructor, we have the option to 300 constructor is guaranteed to call the base class' constructor *first*, and 310 dispatch. It will use the definition from the class the constructor of which 312 derived class constructor has a chance to run is very dangerous - the 316 * In the body of a constructor (or destructor), it's not possible to use the 320 executable, or to use `SetUp()` instead of a constructor. 370 ## My compiler complains that a constructor (or destructor) cannot return a value. What's going on? [all …]
|
| /src/lib/libthr/thread/ |
| H A D | thr_autoinit.c | 45 void _thread_init_hack(void) __attribute__ ((constructor));
|
| /src/lib/csu/tests/errno/ |
| H A D | errno_test.c | 10 static void __attribute__((constructor))
|
| /src/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/ |
| H A D | sme-abi-vg.c | 16 __attribute__((constructor(90))) static void get_aarch64_cpu_features(void) { in get_aarch64_cpu_features()
|
| H A D | sme-abi-init.c | 49 __attribute__((constructor(90)))
|
| /src/usr.bin/mkimg/ |
| H A D | format.h | 41 static void format_register_##nm(void) __attribute__((constructor)); \
|
| /src/lib/libc/gen/ |
| H A D | uexterr_gettext.c | 24 static void uexterr_ctr(void) __attribute__((constructor));
|
| /src/lib/libcasper/libcasper/ |
| H A D | libcasper_service.h | 55 #define __constructor __attribute__((constructor))
|
| /src/lib/libnetmap/ |
| H A D | nmctx-pthreads.c | 64 void __attribute__ ((constructor))
|
| /src/sys/netgraph/ |
| H A D | ng_ip_input.c | 99 .constructor = ngipi_cons,
|
| H A D | ng_echo.c | 67 .constructor = nge_cons,
|
| /src/sbin/hastd/ |
| H A D | proto_impl.h | 39 #define __constructor __attribute__((constructor))
|
| /src/libexec/flua/ |
| H A D | linit_flua.c | 64 static void __attribute__((constructor)) flua_init_env(void) { in flua_init_env()
|