Searched refs:cleanups (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-10.2-release/contrib/jemalloc/src/
H A Dtsd.c8 static malloc_tsd_cleanup_t cleanups[MALLOC_TSD_CLEANUPS_MAX]; variable
51 pending[i] = cleanups[i]();
65 cleanups[ncleanups] = f;
/freebsd-10.2-release/contrib/gdb/gdb/
H A Dcomplaints.c199 struct cleanup *cleanups; local
201 cleanups = make_cleanup (xfree, msg);
219 do_cleanups (cleanups);
H A Dmipsread.c130 /* Perform any local cleanups required when we are done with a
243 struct cleanup *cleanups; local
264 cleanups = make_cleanup (free, sym_secptr);
424 do_cleanups (cleanups);
H A Dsymmisc.c540 struct cleanup *cleanups;
557 cleanups = make_cleanup_freeargv (argv);
582 do_cleanups (cleanups);
780 struct cleanup *cleanups;
796 cleanups = make_cleanup_freeargv (argv);
821 do_cleanups (cleanups);
928 struct cleanup *cleanups;
943 cleanups = make_cleanup_freeargv (argv);
969 do_cleanups (cleanups);
539 struct cleanup *cleanups; local
779 struct cleanup *cleanups; local
927 struct cleanup *cleanups; local
H A Dinfcmd.c589 struct cleanup *cleanups = 0;
616 cleanups = make_cleanup (disable_longjmp_breakpoint_cleanup, 0 /*ignore*/);
672 do_cleanups (cleanups);
1148 struct cleanup *cleanups;
1152 cleanups = (struct cleanup *) arg->next->next->data.pointer;
1168 do_exec_cleanups (cleanups);
1179 do_exec_cleanups (cleanups);
1292 /* FIXME: Shouldn't we do the cleanups before returning? */
584 struct cleanup *cleanups = 0; local
1139 struct cleanup *cleanups; local
H A Dsolib-svr4.c615 struct cleanup *cleanups = make_cleanup (xfree, r_map_buf); local
626 do_cleanups (cleanups);
662 struct cleanup *cleanups = make_cleanup (xfree, l_name_buf); local
683 do_cleanups (cleanups);
H A Ddisasm.c358 struct cleanup *cleanups = make_cleanup_ui_out_stream_delete (stb); local
383 do_cleanups (cleanups);
H A Dbreakpoint.c610 struct cleanup *cleanups = make_cleanup (xfree, tmpbuf);
612 do_cleanups (cleanups);
1042 struct cleanup *cleanups = make_cleanup (xfree, message);
1050 do_cleanups (cleanups);
1074 struct cleanup *cleanups = make_cleanup (xfree, prefix);
1077 do_cleanups (cleanups);
2711 struct cleanup *cleanups = make_cleanup (xfree, message);
2714 do_cleanups (cleanups);
2786 struct cleanup *cleanups = make_cleanup (xfree, message);
2789 do_cleanups (cleanups);
608 struct cleanup *cleanups = make_cleanup (xfree, tmpbuf); local
1038 struct cleanup *cleanups = make_cleanup (xfree, message); local
1070 struct cleanup *cleanups = make_cleanup (xfree, prefix); local
2705 struct cleanup *cleanups = make_cleanup (xfree, message); local
2780 struct cleanup *cleanups = make_cleanup (xfree, message); local
6030 struct cleanup *cleanups; local
6893 struct cleanup *cleanups = make_cleanup (xfree, message); local
7333 struct cleanup *cleanups = make_cleanup (xfree, message); local
[all...]
H A Dtop.c376 /* MAYBE: cagney/1999-11-05: Should the catch_errors and cleanups code
420 /* Prevent error/quit during FUNC from calling cleanups established
647 struct cleanup *cleanups;
649 cleanups = make_cleanup (do_restore_instream_cleanup, instream);
652 do_cleanups (cleanups);
1508 do_final_cleanups (ALL_CLEANUPS); /* Do any final cleanups before exiting */
645 struct cleanup *cleanups; local
H A Dframe.c466 struct cleanup *cleanups; local
483 struct cleanup *cleanups = make_cleanup_regcache_xfree (scratch); local
496 do_cleanups (cleanups);
H A Dgdbarch.sh1532 struct cleanup *cleanups;
1536 cleanups = make_cleanup_ui_file_delete (log);
1587 do_cleanups (cleanups);
H A Dregcache.c1461 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL); local
1661 do_cleanups (cleanups);
H A Dsymfile.c730 /* Discard cleanups as symbol reading was successful. */
1139 struct cleanup *cleanups;
1154 cleanups = make_cleanup_freeargv (argv);
1174 do_cleanups (cleanups);
1961 /* Discard cleanups as symbol reading was successful. */
1138 struct cleanup *cleanups; local
/freebsd-10.2-release/contrib/pam_modules/pam_passwdqc/
H A Dpam_passwdqc.spec40 code cleanups (thanks to Dag-Erling Smorgrav).
/freebsd-10.2-release/contrib/apr/memory/unix/
H A Dapr_pools.c505 cleanup_t *cleanups; member in struct:apr_pool_t
761 /* Run pre destroy cleanups */
771 /* Run cleanups */
772 run_cleanups(&pool->cleanups);
773 pool->cleanups = NULL;
803 /* Run pre destroy cleanups */
813 /* Run cleanups */
814 run_cleanups(&pool->cleanups);
909 pool->cleanups = NULL;
998 pool->cleanups
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp131 // layout object. However, this is blocked on other cleanups to the
241 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange());
282 // Leave any cleanups associated with the catch.
283 cleanups.ForceCleanup();
316 CodeGenFunction::RunCleanupsScope cleanups(CGF);
319 // ARC release and lock-release cleanups.
H A DCGExprAgg.cpp968 CodeGenFunction::RunCleanupsScope cleanups(CGF);
1162 SmallVector<EHScopeStack::stable_iterator, 16> cleanups; local
1201 // initialized, we can end up pushing a linear number of cleanups.
1212 cleanups.push_back(CGF.EHStack.stable_begin());
1226 // Deactivate all the partial cleanups in reverse order, which
1228 for (unsigned i = cleanups.size(); i != 0; --i)
1229 CGF.DeactivateCleanupBlock(cleanups[i-1], cleanupDominator);
H A DCGBlocks.cpp556 /// a full-expression so that the block's cleanups are pushed at the
568 // pushing cleanups as necessary.
579 // If there are cleanups to emit, enter them (but inactive).
636 ArrayRef<ExprWithCleanups::CleanupObject> cleanups = E->getObjects(); local
638 i = cleanups.begin(), e = cleanups.end(); i != e; ++i) {
1497 CodeGenFunction::RunCleanupsScope cleanups(*this);
1572 cleanups.ForceCleanup();
H A DCGStmt.cpp238 // We can't return an RValue here because there might be cleanups at
341 // normal cleanups. Jumps "in" to this label --- when permitted by
342 // the language --- may need to be routed around such cleanups.
381 // Reparent the labels if the new scope also has cleanups.
639 // Create a cleanup scope for the condition variable cleanups.
650 // If there are any cleanups between here and the loop-exit scope,
729 // If there are any cleanups between here and the loop-exit scope,
802 // statements following block literals with non-trivial cleanups.
804 if (const ExprWithCleanups *cleanups =
806 enterFullExpression(cleanups);
[all...]
H A DCGObjC.cpp774 // The constructor might require cleanups (in which case it's never
2702 if (const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(e)) {
2703 enterFullExpression(cleanups);
2705 return EmitARCRetainScalarExpr(cleanups->getSubExpr());
2718 if (const ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(e)) {
2719 enterFullExpression(cleanups);
2721 return EmitARCRetainAutoreleaseScalarExpr(cleanups->getSubExpr());
2754 // Do so before running any cleanups for the full-expression.
2762 // only running cleanups after the throw has started, and when it
/freebsd-10.2-release/contrib/gdb/gdb/tui/
H A Dtui-regs.c654 struct cleanup *cleanups; local
669 cleanups = make_cleanup (tui_restore_gdbout, (void*) old_stdout);
696 do_cleanups (cleanups);
/freebsd-10.2-release/contrib/gdb/gdb/cli/
H A Dcli-script.c223 struct cleanup *cleanups = make_cleanup (clear_hook_in_cleanup, c);
226 do_cleanups (cleanups);
235 struct cleanup *cleanups = make_cleanup (clear_hook_in_cleanup, c);
238 do_cleanups (cleanups);
222 struct cleanup *cleanups = make_cleanup (clear_hook_in_cleanup, c); local
234 struct cleanup *cleanups = make_cleanup (clear_hook_in_cleanup, c); local
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaLambda.cpp518 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(retValue); local
520 Expr *E = (cleanups ? cleanups->getSubExpr() : retValue);
523 if (cleanups) {
524 cleanups->setSubExpr(E);
1030 // cleanups from the enclosing full-expression.
/freebsd-10.2-release/contrib/gdb/gdb/mi/
H A Dmi-main.c798 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL); local
989 do_cleanups (cleanups);
/freebsd-10.2-release/contrib/ldns/packaging/fedora/
H A Dldns.spec206 - minor cleanups

Completed in 167 milliseconds

12