Home
last modified time | relevance | path

Searched refs:cleanups (Results 1 – 25 of 293) sorted by relevance

12345678910>>...12

/netbsd-src/external/bsd/nsd/dist/
H A Dregion-allocator.c72 cleanup_type *cleanups; member
115 result->cleanups = (cleanup_type *) allocator( in alloc_region_base()
117 if (!result->cleanups) { in alloc_region_base()
137 deallocator(result->cleanups); in region_create()
164 deallocator(result->cleanups); in region_create_custom()
194 deallocator(region->cleanups); in region_destroy()
216 cleanup_type *cleanups = (cleanup_type *) region->allocator( in region_add_cleanup() local
218 if (!cleanups) in region_add_cleanup()
221 memcpy(cleanups, region->cleanups, in region_add_cleanup()
223 region->deallocator(region->cleanups); in region_add_cleanup()
[all …]
/netbsd-src/external/bsd/libc++/dist/libcxxrt/test/
H A Dtest_exception.cc58 int cleanups = cleanup_count;\
60 TEST(cleanup_count == cleanups+1, "Cleanup ran correctly");\
/netbsd-src/external/gpl3/gcc/dist/libcody/
H A DCONTRIB.md9 Code cleanups
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp245 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange()); in EmitTryCatchStmt() local
272 cleanups.ForceCleanup(); in EmitTryCatchStmt()
329 CodeGenFunction::RunCleanupsScope cleanups(CGF); in EmitAtSynchronizedStmt() local
H A DCGExprAgg.cpp1374 CodeGenFunction::RunCleanupsScope cleanups(CGF); in VisitExprWithCleanups() local
1630 SmallVector<EHScopeStack::stable_iterator, 16> cleanups; in VisitInitListExpr() local
1633 cleanups.push_back(cleanup); in VisitInitListExpr()
1758 assert((cleanupDominator || cleanups.empty()) && in VisitInitListExpr()
1760 for (unsigned i = cleanups.size(); i != 0; --i) in VisitInitListExpr()
1761 CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator); in VisitInitListExpr()
/netbsd-src/external/gpl3/gdb.old/dist/readline/readline/examples/rlfe/
H A DChangeLog12 * rlfe.c: Various cleanups on comments and names.
/netbsd-src/external/gpl3/gdb/dist/readline/readline/examples/rlfe/
H A DChangeLog12 * rlfe.c: Various cleanups on comments and names.
/netbsd-src/external/bsd/nsd/dist/doc/
H A DCREDITS26 Colm MacCárthaigh, - IPv6 binding and cleanups.
/netbsd-src/external/mit/libcbor/dist/doc/source/api/
H A Ditem_reference_counting.rst29 As CBOR items may require complex cleanups at the end of their lifetime, there is a reference count…
/netbsd-src/external/bsd/openldap/dist/servers/slapd/
H A Dslap-config.h180 ConfigDriver *cleanups[SLAP_CONFIG_CLEANUP_MAX]; member
/netbsd-src/external/gpl3/binutils/dist/include/
H A Dgcc-c-fe.def92 cleanups in GCC. */
113 be "finished". This does some final cleanups in GCC. */
/netbsd-src/external/gpl3/gcc/dist/include/
H A Dgcc-c-fe.def92 cleanups in GCC. */
113 be "finished". This does some final cleanups in GCC. */
/netbsd-src/external/gpl3/gcc.old/dist/include/
H A Dgcc-c-fe.def92 cleanups in GCC. */
113 be "finished". This does some final cleanups in GCC. */
/netbsd-src/external/gpl3/binutils.old/dist/include/
H A Dgcc-c-fe.def92 cleanups in GCC. */
113 be "finished". This does some final cleanups in GCC. */
/netbsd-src/external/gpl2/grep/dist/
H A Dgrep.spec164 - spec file cleanups
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaLambda.cpp681 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(retValue); in adjustBlockReturnsToEnum() local
683 Expr *E = (cleanups ? cleanups->getSubExpr() : retValue); in adjustBlockReturnsToEnum()
687 if (cleanups) { in adjustBlockReturnsToEnum()
688 cleanups->setSubExpr(E); in adjustBlockReturnsToEnum()
/netbsd-src/lib/libc/db/
H A Dchangelog32 all: Minor cleanups of 1.78 for porting reasons; only
/netbsd-src/external/bsd/kyua-atf-compat/dist/
H A Dlib.subr52 # Catch unexpected exits and perform the required cleanups. In particular,
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DExceptionHandling.rst51 blocks or cleanups --- that function registers itself on a global frame
259 provide a variety of different kinds of cleanups. In general, a landing pad may
261 block. To indicate the presence of cleanups, a :ref:`i_landingpad` should have
273 When all cleanups are finished, if the exception is not handled by the current
302 that they will stop to perform cleanups. For example, the GNU C++ unwinder
555 cleanups by calling back into a "funclet" contained in the parent function.
596 before cleanups run, making it very difficult to build a faithful control flow
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtimevar.def44 DEFTIMEVAR (TV_PHASE_LATE_PARSING_CLEANUPS, "phase late parsing cleanups")
229 DEFTIMEVAR (TV_POST_EXPAND , "post expand cleanups")
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dconstexpr.c1052 vec<tree> *cleanups; member
1057 : constexpr_ops_count (0), cleanups (NULL), heap_dealloc_count (0) {} in constexpr_global_ctx()
6022 ctx->global->cleanups->safe_push (TARGET_EXPR_CLEANUP (t)); in cxx_eval_constant_expression()
6101 auto_vec<tree, 2> cleanups; in cxx_eval_constant_expression() local
6102 vec<tree> *prev_cleanups = ctx->global->cleanups; in cxx_eval_constant_expression()
6103 ctx->global->cleanups = &cleanups; in cxx_eval_constant_expression()
6108 ctx->global->cleanups = prev_cleanups; in cxx_eval_constant_expression()
6112 FOR_EACH_VEC_ELT_REVERSE (cleanups, i, cleanup) in cxx_eval_constant_expression()
6979 auto_vec<tree, 16> cleanups; variable
6980 global_ctx.cleanups = &cleanups;
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/
H A Dcontrib.texi819 cleanups in the compiler.
1385 Jeroen Frijters for @code{ClassLoader} and nio cleanups, serialization fixes,
1434 Simon Kitching for @code{String} cleanups and optimization suggestions.
1446 cleanups.
1495 Christian Schlichtherle for zip fixes and cleanups.
1506 Christian Thalinger for 64-bit cleanups, Configuration and VM
1518 Dalibor Topic for better @code{DEBUG} support, build cleanups and
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/
H A Dcontrib.texi819 cleanups in the compiler.
1385 Jeroen Frijters for @code{ClassLoader} and nio cleanups, serialization fixes,
1434 Simon Kitching for @code{String} cleanups and optimization suggestions.
1446 cleanups.
1495 Christian Schlichtherle for zip fixes and cleanups.
1506 Christian Thalinger for 64-bit cleanups, Configuration and VM
1518 Dalibor Topic for better @code{DEBUG} support, build cleanups and
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtimevar.def44 DEFTIMEVAR (TV_PHASE_LATE_PARSING_CLEANUPS, "phase late parsing cleanups")
234 DEFTIMEVAR (TV_POST_EXPAND , "post expand cleanups")
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dconstexpr.cc1107 vec<tree> *cleanups; member
1112 : constexpr_ops_count (0), cleanups (NULL), heap_dealloc_count (0) {} in constexpr_global_ctx()
6867 ctx->global->cleanups->safe_push (TARGET_EXPR_CLEANUP (t)); in cxx_eval_constant_expression()
6946 auto_vec<tree, 2> cleanups; in cxx_eval_constant_expression() local
6947 vec<tree> *prev_cleanups = ctx->global->cleanups; in cxx_eval_constant_expression()
6948 ctx->global->cleanups = &cleanups; in cxx_eval_constant_expression()
6953 ctx->global->cleanups = prev_cleanups; in cxx_eval_constant_expression()
6957 FOR_EACH_VEC_ELT_REVERSE (cleanups, i, cleanup) in cxx_eval_constant_expression()
7909 auto_vec<tree, 16> cleanups; in cxx_eval_outermost_constant_expr() local
7910 global_ctx.cleanups = &cleanups; in cxx_eval_outermost_constant_expr()
[all …]

12345678910>>...12