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

1234567891011>>

/freebsd-10.0-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-10.0-release/share/examples/printing/
H A Dhpdf13 cleanup() {
24 cleanup
32 trap cleanup 1 2 15
37 cleanup
58 cleanup
/freebsd-10.0-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-10.0-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-10.0-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-10.0-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-10.0-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-10.0-release/contrib/apr/include/arch/unix/
H A Dapr_arch_inherit.h24 #define APR_IMPLEMENT_INHERIT_SET(name, flag, pool, cleanup) \
39 cleanup, apr_pool_cleanup_null); \
44 #define APR_IMPLEMENT_INHERIT_UNSET(name, flag, pool, cleanup) \
59 cleanup, cleanup); \
/freebsd-10.0-release/contrib/groff/src/utils/indxbib/
H A Dsignal.c39 extern void cleanup(void);
44 cleanup();
/freebsd-10.0-release/lib/csu/amd64/
H A Dcrt1.c55 _start(char **ap, void (*cleanup)(void)) argument
67 atexit(cleanup);
/freebsd-10.0-release/lib/csu/i386-elf/
H A Dcrt1_c.c59 _start1(fptr cleanup, int argc, char *argv[]) argument
66 atexit(cleanup);
/freebsd-10.0-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-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.freopen.ksh52 cleanup() function
84 cleanup
94 cleanup
103 cleanup
/freebsd-10.0-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-10.0-release/contrib/llvm/lib/Support/
H A DCrashRecoveryContext.cpp43 // cleanup code crashes.
98 void CrashRecoveryContext::registerCleanup(CrashRecoveryContextCleanup *cleanup) argument
100 if (!cleanup)
103 head->prev = cleanup;
104 cleanup->next = head;
105 head = cleanup;
109 CrashRecoveryContext::unregisterCleanup(CrashRecoveryContextCleanup *cleanup) { argument
110 if (!cleanup)
112 if (cleanup == head) {
113 head = cleanup
[all...]
/freebsd-10.0-release/contrib/atf/test-programs/
H A Dsh_helpers.sh34 atf_test_case cleanup_pass cleanup
45 if [ $(atf_config_get cleanup no) = yes ]; then
50 atf_test_case cleanup_fail cleanup
62 if [ $(atf_config_get cleanup no) = yes ]; then
67 atf_test_case cleanup_skip cleanup
79 if [ $(atf_config_get cleanup no) = yes ]; then
84 atf_test_case cleanup_curdir cleanup
98 atf_test_case cleanup_sigterm cleanup
114 atf_test_case cleanup_fork cleanup
/freebsd-10.0-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-10.0-release/crypto/heimdal/lib/krb5/
H A Dverify_init.c104 goto cleanup;
111 goto cleanup;
121 goto cleanup;
126 goto cleanup;
131 goto cleanup;
150 goto cleanup;
166 goto cleanup;
178 cleanup:
/freebsd-10.0-release/lib/csu/mips/
H A Dcrt1.c63 void (*cleanup)(void), /* from shared loader */
77 atexit(cleanup);
62 __start(char **ap, void (*cleanup)(void), struct Struct_Obj_Entry *obj __unused, struct ps_strings *ps_strings __unused) argument
/freebsd-10.0-release/lib/csu/powerpc/
H A Dcrt1.c80 const struct Struct_Obj_Entry *obj __unused, void (*cleanup)(void),
91 atexit(cleanup);
79 _start(int argc, char **argv, char **env, const struct Struct_Obj_Entry *obj __unused, void (*cleanup)(void), struct ps_strings *ps_strings) argument
/freebsd-10.0-release/lib/csu/powerpc64/
H A Dcrt1.c80 const struct Struct_Obj_Entry *obj __unused, void (*cleanup)(void),
90 atexit(cleanup);
79 _start(int argc, char **argv, char **env, const struct Struct_Obj_Entry *obj __unused, void (*cleanup)(void), struct ps_strings *ps_strings) argument
/freebsd-10.0-release/lib/csu/sparc64/
H A Dcrt1.c78 _start(char **ap, void (*cleanup)(void), struct Struct_Obj_Entry *obj __unused, argument
91 atexit(cleanup);
/freebsd-10.0-release/usr.sbin/pkg_install/lib/
H A Dmsg.c32 cleanup(0);
54 cleanup(0);
/freebsd-10.0-release/contrib/atf/atf-run/
H A Dfs.hpp51 void cleanup(const atf::fs::path&);

Completed in 499 milliseconds

1234567891011>>