Searched refs:cleanup (Results 1 - 25 of 531) sorted by relevance

1234567891011>>

/openbsd-current/usr.bin/sdiff/
H A Dcommon.h8 __dead void cleanup(const char *);
H A Dcommon.c15 cleanup(const char *filename) function
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dcleanup-6.c3 /* Verify that a cleanup marked "inline" gets inlined. */
11 int x __attribute__((cleanup (xyzzy)));
H A Dcleanup-2.c3 /* Verify that cleanup works in the most basic of ways. */
15 int x __attribute__((cleanup (handler)));
H A Dcleanup-7.c17 int x __attribute__((cleanup (xyzzy)));
H A Dcleanup-3.c3 /* Verify that the cleanup handler receives the proper contents
25 int r __attribute__((cleanup (handler)));
H A Dcleanup-4.c3 /* Verify cleanup execution on non-trivial exit from a block. */
26 int dummy __attribute__((cleanup (handler))) = i;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dstatic13.C12 static Cleaner cleanup; local
/openbsd-current/regress/lib/csu/callbacks/libaa/
H A Daa.c30 CALLBACK(stdout, cleanup)
35 atexit(cleanup);
/openbsd-current/regress/lib/csu/callbacks/libab/
H A Dab.c30 CALLBACK(stdout, cleanup)
35 atexit(cleanup);
/openbsd-current/regress/usr.sbin/vmd/diskfmt/
H A DMakefile18 REGRESS_CLEANUP= cleanup
19 cleanup:
23 setup: cleanup
/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h54 /// Register cleanup handler, which is used when the recovery context is
57 void registerCleanup(CrashRecoveryContextCleanup *cleanup);
59 void unregisterCleanup(CrashRecoveryContextCleanup *cleanup);
120 /// Abstract base class of cleanup handlers.
148 /// Base class of cleanup handler that controls recovery of resources of the
157 /// This class factors out creation of a cleanup handler. The latter requires
167 /// Creates cleanup handler.
246 /// destructor of CrashRecoveryContextCleanupRegistrar removes cleanup code from
249 /// and the resource is reclaimed by cleanup object registered in the recovery
253 CrashRecoveryContextCleanup *cleanup;
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/mi/
H A Dmi-cmd-var.c48 struct cleanup *old_cleanups;
59 /* Add cleanup for name. Must be free_current_contents as
119 struct cleanup *old_cleanups;
125 /* Add cleanup for name. Must be free_current_contents as
256 struct cleanup *cleanup_children;
293 struct cleanup *cleanup_child;
426 struct cleanup *cleanup; local
442 cleanup = make_cleanup_ui_out_tuple_begin_end (uiout, "changelist");
444 cleanup
485 struct cleanup *cleanup = NULL; local
[all...]
/openbsd-current/sys/arch/i386/include/
H A Dcpuvar.h70 void (*cleanup)(struct cpu_info *); member in struct:cpu_functions
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Ddie_except.t11 my($cleanup) = @_;
12 return bless(sub { $cleanup->() }, "End");
/openbsd-current/gnu/usr.bin/perl/t/lib/
H A Dcommon.pl46 my $cleanup = 1;
49 if ($cleanup) {
50 chdir '..' or die "Couldn't chdir .. for cleanup: $!";
/openbsd-current/gnu/usr.bin/perl/cpan/Memoize/t/lib/
H A DDBMTest.pm73 sub cleanup { 1 while unlink @file } subroutine
86 cleanup;
90 *{$pkg.'::'.$_} = \&$_ for qw(test_dbm cleanup);
95 cleanup;
/openbsd-current/regress/lib/libc/sys/
H A Datf-c.c33 int cleanup; variable
48 cleanup = 1;
69 if (cleanup + count + inspect + run > 1)
72 if (cleanup || inspect || run) {
79 else if (cleanup)
/openbsd-current/regress/sys/kern/ptrace2/
H A Datf-c.c18 int cleanup; variable
33 cleanup = 1;
54 if (cleanup + count + inspect + run > 1)
57 if (cleanup || inspect || run) {
64 else if (cleanup)
/openbsd-current/regress/lib/libm/msun/
H A Datf-c.c33 int cleanup; variable
48 cleanup = 1;
69 if (cleanup + count + inspect + run > 1)
72 if (cleanup || inspect || run) {
79 else if (cleanup)
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DCrashRecoveryContext.cpp64 // cleanup code crashes.
157 void CrashRecoveryContext::registerCleanup(CrashRecoveryContextCleanup *cleanup) argument
159 if (!cleanup)
162 head->prev = cleanup;
163 cleanup->next = head;
164 head = cleanup;
168 CrashRecoveryContext::unregisterCleanup(CrashRecoveryContextCleanup *cleanup) { argument
169 if (!cleanup)
171 if (cleanup == head) {
172 head = cleanup
[all...]
/openbsd-current/usr.sbin/pkg_add/OpenBSD/
H A DError.pm86 my $cleanup = {};
88 sub cleanup($class, $sig) subroutine
90 # XXX note that order of cleanup is "unpredictable"
91 for my $v (values %$cleanup) {
97 # XXX localize $? so that cleanup doesn't fuck up our exit code
108 $cleanup->{$code} = $code;
113 $cleanup->{$code} = $code;
118 __PACKAGE__->cleanup($sig);
119 # after cleanup, just propagate the signal
/openbsd-current/sbin/isakmpd/
H A Dpf_key_v2.c130 goto cleanup;
133 goto cleanup;
143 cleanup:
223 goto cleanup;
228 goto cleanup;
235 goto cleanup;
241 goto cleanup;
247 goto cleanup;
255 goto cleanup;
261 goto cleanup;
[all...]
/openbsd-current/sys/dev/pci/drm/i915/selftests/
H A Di915_gem_evict.c118 goto cleanup;
130 goto cleanup;
145 goto cleanup;
148 cleanup:
168 goto cleanup;
173 goto cleanup;
182 goto cleanup;
185 cleanup:
205 goto cleanup;
214 goto cleanup;
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Ddefs.h247 /* the cleanup list records things that have to be undone
252 Use make_cleanup to add an element to the cleanup chain.
253 Use do_cleanups to do all cleanup actions back to a given
257 struct cleanup struct
259 struct cleanup *next;
339 extern void do_cleanups (struct cleanup *);
340 extern void do_final_cleanups (struct cleanup *);
341 extern void do_run_cleanups (struct cleanup *);
342 extern void do_exec_cleanups (struct cleanup *);
343 extern void do_exec_error_cleanups (struct cleanup *);
[all...]

Completed in 609 milliseconds

1234567891011>>