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

1234567891011>>

/freebsd-9.3-release/share/examples/sunrpc/
H A DMakefile14 clean cleanup:
15 cd dir; $(MAKE) ${MFLAGS} cleanup
16 cd msg; $(MAKE) ${MFLAGS} cleanup
17 cd sort; $(MAKE) ${MFLAGS} cleanup
/freebsd-9.3-release/share/examples/printing/
H A Dhpdf13 cleanup() {
24 cleanup
32 trap cleanup 1 2 15
37 cleanup
58 cleanup
/freebsd-9.3-release/contrib/openpam/lib/libpam/
H A Dpam_set_data.c60 void (*cleanup)(pam_handle_t *pamh,
71 if (dp->cleanup)
72 (dp->cleanup)(pamh, dp->data, PAM_SUCCESS);
74 dp->cleanup = cleanup;
85 dp->cleanup = cleanup;
103 * If not =NULL, the =cleanup argument should point to a function
H A Dpam_end.c68 if (dp->cleanup)
69 (dp->cleanup)(pamh, dp->data, status);
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dlog.c100 goto cleanup;
104 goto cleanup;
108 cleanup:
138 goto cleanup;
147 goto cleanup;
157 cleanup:
174 goto cleanup;
191 goto cleanup;
196 cleanup:
208 goto cleanup;
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h53 void registerCleanup(CrashRecoveryContextCleanup *cleanup);
54 void unregisterCleanup(CrashRecoveryContextCleanup *cleanup);
180 CrashRecoveryContextCleanup *cleanup; member in class:llvm::CrashRecoveryContextCleanupRegistrar
183 : cleanup(Cleanup::create(x)) {
184 if (cleanup)
185 cleanup->getContext()->registerCleanup(cleanup);
193 if (cleanup && !cleanup->cleanupFired)
194 cleanup
[all...]
/freebsd-9.3-release/lib/libc/stdlib/
H A Dquick_exit.c39 void (*cleanup)(void); member in struct:quick_exit_handler
47 * Stack of cleanup handlers. These will be invoked in reverse order when
60 h->cleanup = func;
78 h->cleanup();
/freebsd-9.3-release/lib/libkse/thread/
H A Dthr_clean.c54 new->next = curthread->cleanup;
56 curthread->cleanup = new;
66 if ((old = curthread->cleanup) != NULL) {
67 curthread->cleanup = old->next;
/freebsd-9.3-release/lib/libthr/thread/
H A Dthr_clean.c59 newbuf->prev = curthread->cleanup;
60 curthread->cleanup = newbuf;
69 if ((old = curthread->cleanup) != NULL) {
70 curthread->cleanup = old->prev;
91 newbuf->prev = curthread->cleanup;
92 curthread->cleanup = newbuf;
/freebsd-9.3-release/contrib/groff/src/utils/indxbib/
H A Dsignal.c39 extern void cleanup(void);
44 cleanup();
/freebsd-9.3-release/crypto/openssl/crypto/evp/
H A Devp_locl.h107 key_len, iv_len, flags, init_key, cleanup, \
114 cleanup, \
123 iv_len, flags, init_key, cleanup, set_asn1, \
126 iv_len, flags, init_key, cleanup, set_asn1, get_asn1, ctrl)
129 iv_len, cbits, flags, init_key, cleanup, \
132 key_len, iv_len, flags, init_key, cleanup, set_asn1, \
136 iv_len, cbits, flags, init_key, cleanup, \
139 key_len, iv_len, flags, init_key, cleanup, set_asn1, \
143 flags, init_key, cleanup, set_asn1, \
146 0, flags, init_key, cleanup, set_asn
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/mi/
H A Dmi-cmd-var.c48 struct cleanup *old_cleanups;
60 /* Add cleanup for name. Must be free_current_contents as
120 struct cleanup *old_cleanups;
126 /* Add cleanup for name. Must be free_current_contents as
257 struct cleanup *cleanup_children;
294 struct cleanup *cleanup_child;
427 struct cleanup *cleanup; local
443 cleanup = make_cleanup_ui_out_tuple_begin_end (uiout, "changelist");
445 cleanup
486 struct cleanup *cleanup = NULL; local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.freopen.ksh52 cleanup() function
84 cleanup
94 cleanup
103 cleanup
/freebsd-9.3-release/libexec/rpc.rusersd/
H A Drusersd.c51 cleanup(int sig __unused) function
80 (void) signal(SIGINT, cleanup);
81 (void) signal(SIGTERM, cleanup);
82 (void) signal(SIGHUP, cleanup);
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DCrashRecoveryContext.cpp51 // cleanup code crashes.
106 void CrashRecoveryContext::registerCleanup(CrashRecoveryContextCleanup *cleanup) argument
108 if (!cleanup)
111 head->prev = cleanup;
112 cleanup->next = head;
113 head = cleanup;
117 CrashRecoveryContext::unregisterCleanup(CrashRecoveryContextCleanup *cleanup) { argument
118 if (!cleanup)
120 if (cleanup == head) {
121 head = cleanup
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Ddefs.h256 /* the cleanup list records things that have to be undone
261 Use make_cleanup to add an element to the cleanup chain.
262 Use do_cleanups to do all cleanup actions back to a given
266 struct cleanup struct
268 struct cleanup *next;
354 extern void do_cleanups (struct cleanup *);
355 extern void do_final_cleanups (struct cleanup *);
356 extern void do_run_cleanups (struct cleanup *);
357 extern void do_exec_cleanups (struct cleanup *);
358 extern void do_exec_error_cleanups (struct cleanup *);
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dverify_init.c106 goto cleanup;
113 goto cleanup;
122 goto cleanup;
127 goto cleanup;
132 goto cleanup;
151 goto cleanup;
167 goto cleanup;
179 cleanup:
/freebsd-9.3-release/lib/csu/amd64/
H A Dcrt1.c64 _start(char **ap, void (*cleanup)(void)) argument
84 atexit(cleanup);
/freebsd-9.3-release/lib/csu/i386-elf/
H A Dcrt1_c.c67 _start1(fptr cleanup, int argc, char *argv[]) argument
83 atexit(cleanup);
/freebsd-9.3-release/usr.sbin/pkg_install/lib/
H A Dmsg.c32 cleanup(0);
54 cleanup(0);
/freebsd-9.3-release/contrib/gdb/gdb/cli/
H A Dcli-script.h50 struct cleanup *make_cleanup_free_command_lines (struct command_line **arg);
/freebsd-9.3-release/libexec/rpc.rstatd/
H A Drstatd.c51 cleanup(int sig __unused) function
87 (void) signal(SIGINT, cleanup);
88 (void) signal(SIGTERM, cleanup);
89 (void) signal(SIGHUP, cleanup);
/freebsd-9.3-release/tools/regression/lib/libc/stdio/
H A Dtest-perror.c44 static void cleanup(void);
59 atexit(cleanup);
103 cleanup(void) function
/freebsd-9.3-release/tools/regression/security/access/
H A Dtestaccess.c149 cleanup(void) function
180 cleanup();
188 cleanup();
195 cleanup();
202 cleanup();
213 cleanup();
236 cleanup();
243 cleanup();
282 cleanup();
289 cleanup();
[all...]
/freebsd-9.3-release/contrib/bind9/lib/irs/
H A Ddnsconf.c142 goto cleanup;
157 goto cleanup;
162 goto cleanup;
169 goto cleanup;
180 cleanup:
211 goto cleanup;
215 goto cleanup;
220 goto cleanup;
224 cleanup:

Completed in 162 milliseconds

1234567891011>>