| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DiagnosticSerializationKinds.td | 195 "%select{method %5|constructor|destructor}4|" 196 "%select{method %5|constructor|destructor}4 " 198 "%select{method %5|constructor|destructor}4 " 200 "%select{method %5|constructor|destructor}4 " 202 "%select{method %5|constructor|destructor}4 " 204 "%select{method %5|constructor|destructor}4 " 206 "%select{method %5|constructor|destructor}4 " 208 "%select{method %5|constructor|destructor}4 " 210 "%select{method %5|constructor|destructor}4 " 212 "%select{method %5|constructor|destructor}4 " [all …]
|
| /freebsd-13.1/cddl/compat/opensolaris/lib/libumem/ |
| H A D | umem.c | 35 umem_constructor_t *constructor; member 106 …te(char *debug_name, size_t bufsize, size_t align, umem_constructor_t *constructor, umem_destructo… in umem_cache_create() argument 114 cache->constructor = constructor; in umem_cache_create() 137 if(cache->constructor != NULL) { in umem_cache_alloc() 138 if(cache->constructor(buf, cache->callback_data, flags) != 0) { in umem_cache_alloc()
|
| /freebsd-13.1/contrib/netbsd-tests/lib/csu/ |
| H A D | t_crt0.sh | 36 constructor executed 52 constructor executed 68 constructor executed 89 constructor executed
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CXXRecordDeclDefinitionBits.def | 123 /// even if the class has a trivial default constructor. 193 /// constructor which is neither the copy nor move constructor. 197 /// constructor. 200 /// True if a defaulted default constructor for this class would 204 /// True if this class has a constexpr default constructor. 206 /// This is true for either a user-declared constexpr default constructor 207 /// or an implicitly declared constexpr default constructor. 220 /// Whether we have a C++11 user-provided default constructor (not 228 /// Whether an implicit copy constructor could have a const-qualified 237 /// Whether any declared copy constructor has a const-qualified
|
| /freebsd-13.1/contrib/libarchive/libarchive/test/ |
| H A D | test_archive_read_support.c | 34 typedef struct archive *constructor(void); typedef 50 test_success(constructor new_, enabler enable_, destructor free_) in test_success() 66 test_failure(constructor new_, enabler enable_, destructor free_) in test_failure()
|
| /freebsd-13.1/sbin/nvmecontrol/ |
| H A D | comnd.h | 90 static void cmd_register_##c(void) __attribute__((constructor)); \ 93 static void cmd_register_##c_##sc(void) __attribute__((constructor)); \
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | config_file.c | 59 svn_config__constructor_t *constructor; member 119 if (ctx->constructor->open_section) in open_section() 121 svn_error_t *err = ctx->constructor->open_section( in open_section() 147 if (ctx->constructor->close_section) in close_section() 149 svn_error_t *err = ctx->constructor->close_section( in close_section() 172 if (ctx->constructor->add_value) in add_value() 174 svn_error_t *err = ctx->constructor->add_value( in add_value() 760 svn_config__constructor_t *constructor, in svn_config__parse_stream() argument 770 ctx->constructor = constructor; in svn_config__parse_stream()
|
| /freebsd-13.1/sys/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | spl_kmem.c | 160 int (*constructor)(void *, void *, int), void (*destructor)(void *, void *), in kmem_cache_create() 169 cache->kc_constructor = constructor; in kmem_cache_create() 174 constructor != NULL ? kmem_std_constructor : NULL, in kmem_cache_create()
|
| /freebsd-13.1/sys/contrib/openzfs/lib/libspl/include/ |
| H A D | umem.h | 144 umem_constructor_t *constructor, in umem_cache_create() argument 156 cp->cache_constructor = constructor; in umem_cache_create()
|
| /freebsd-13.1/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.
|
| /freebsd-13.1/lib/libthr/thread/ |
| H A D | thr_autoinit.c | 48 void _thread_init_hack(void) __attribute__ ((constructor));
|
| /freebsd-13.1/usr.bin/mkimg/ |
| H A D | format.h | 41 static void format_register_##nm(void) __attribute__((constructor)); \
|
| H A D | scheme.h | 82 static void scheme_register_##nm(void) __attribute__((constructor)); \
|
| /freebsd-13.1/contrib/apr-util/misc/ |
| H A D | apr_reslist.c | 52 apr_reslist_constructor constructor; member 123 rv = reslist->constructor(&res->opaque, reslist->params, reslist->pool); in create_resource() 286 rl->constructor = con; in apr_reslist_create()
|
| /freebsd-13.1/lib/libnetmap/ |
| H A D | nmctx-pthreads.c | 66 void __attribute__ ((constructor))
|
| /freebsd-13.1/lib/libcasper/libcasper/ |
| H A D | libcasper_service.h | 57 #define __constructor __attribute__((constructor))
|
| /freebsd-13.1/contrib/subversion/subversion/include/private/ |
| H A D | svn_config_private.h | 109 svn_config__constructor_t *constructor,
|
| /freebsd-13.1/sys/netgraph/ |
| H A D | ng_ip_input.c | 101 .constructor = ngipi_cons,
|
| H A D | ng_echo.c | 69 .constructor = nge_cons,
|
| /freebsd-13.1/contrib/googletest/googletest/docs/ |
| H A D | faq.md | 102 if all these implementations have a public default constructor (such that 318 between using the test fixture constructor/destructor or `SetUp()/TearDown()`. 325 constructor is guaranteed to call the base class' constructor *first*, and 333 * In the body of a constructor (or destructor), it's not possible to use the 336 use a `CHECK` macro or to use `SetUp()` instead of a constructor. 349 * In a constructor or destructor, you cannot make a virtual function call on 467 content of your constructor/destructor to a private void member function, or 603 * If you explicitly declare a non-default constructor for class `FooTest` 605 default constructor, even if it would be empty. 607 default constructor *and* initialize the const member in the initializer [all …]
|
| /freebsd-13.1/lib/csu/common/ |
| H A D | crtbegin.c | 108 __attribute__((constructor))
|
| /freebsd-13.1/sbin/hastd/ |
| H A D | proto_impl.h | 42 #define __constructor __attribute__((constructor))
|
| /freebsd-13.1/contrib/openbsm/bin/auditdistd/ |
| H A D | proto_impl.h | 38 #define __constructor __attribute__((constructor))
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CallGraph.cpp | 190 if (auto constructor = dyn_cast<CXXConstructorDecl>(D)) { in addNodeForDecl() local 191 for (CXXCtorInitializer *init : constructor->inits()) { in addNodeForDecl()
|
| /freebsd-13.1/lib/libstdbuf/ |
| H A D | stdbuf.c | 102 __attribute__ ((constructor)) static void
|