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

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dcleanup.c2 * cleanup.c
54 * This function pops the most recently pushed cleanup
55 * handler. If execute is nonzero, then the cleanup handler
60 * if nonzero, execute the cleanup handler
64 * This function pops the most recently pushed cleanup
65 * handler. If execute is nonzero, then the cleanup handler
68 * of common cleanup code.
76 ptw32_cleanup_t *cleanup; local
78 cleanup = (ptw32_cleanup_t *) pthread_getspecific (ptw32_cleanupKey);
80 if (cleanup !
99 ptw32_push_cleanup(ptw32_cleanup_t * cleanup, ptw32_cleanup_callback_t routine, void *arg) argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dnew-array-init-exceptions.cpp11 void cleanup(int n) { function
29 void cleanup() { function
H A Dattr-cleanup.cpp9 void *fp __attribute__((cleanup(N::free)));
/external/clang/test/Sema/
H A Dattr-cleanup.c5 extern int g1 __attribute((cleanup(c1))); // expected-warning {{'cleanup' attribute ignored}}
6 int g2 __attribute((cleanup(c1))); // expected-warning {{'cleanup' attribute ignored}}
7 static int g3 __attribute((cleanup(c1))); // expected-warning {{'cleanup' attribute ignored}}
11 int v1 __attribute((cleanup)); // expected-error {{'cleanup' attribute takes one argument}}
12 int v2 __attribute((cleanup(1, 2))); // expected-error {{'cleanup' attribut
[all...]
/external/libunwind/src/unwind/
H A DDeleteException.c31 _Unwind_Exception_Cleanup_Fn cleanup = exception_object->exception_cleanup; local
33 if (cleanup)
34 (*cleanup) (_URC_FOREIGN_EXCEPTION_CAUGHT, exception_object);
/external/clang/test/CodeGen/
H A Dattr-cleanup.c6 __attribute__((cleanup(f))) void *g;
H A Dcleanup-stack.c17 struct s0 x __attribute__((cleanup(f0))) = { &var, 2 };
18 struct s0 y __attribute__((cleanup(f0))) = { &var, 3 };
20 struct s0 y __attribute__((cleanup(f0))) = { &var, 4 };
/external/clang/test/SemaCXX/
H A Dattr-cleanup.cpp12 int v1 __attribute__((cleanup(N::c1)));
13 int v2 __attribute__((cleanup(N::c2))); // expected-error {{no member named 'c2' in namespace 'N'}}
14 int v3 __attribute__((cleanup(C::c2))); // expected-error {{'c2' is a private member of 'C'}}
19 int v1 __attribute__((cleanup(c2))); // expected-error {{'c2' is a private member of 'C'}}
27 int v1 __attribute__((cleanup(c3))); // expected-error {{'c3' is not a single function}}
H A Dattr-cleanup-gcc.cpp13 int v1 __attribute__((cleanup(N::c1))); // expected-warning {{GCC does not allow the 'cleanup' attribute argument to be anything other than a simple identifier}}
14 int v2 __attribute__((cleanup(c2)));
15 int v3 __attribute__((cleanup(c3<int>))); // expected-warning {{GCC does not allow the 'cleanup' attribute argument to be anything other than a simple identifier}}
/external/chromium_org/third_party/closure_compiler/
H A Dbump_compiler_version12 cleanup() { function
16 trap cleanup SIGINT SIGHUP SIGTERM
28 cleanup
36 cleanup
/external/compiler-rt/test/builtins/Unit/
H A Dgcc_personality_test.c26 * main() will catch the exception and verify that the cleanup
32 int x __attribute__((cleanup(bar_clean))) = 0;
38 int x __attribute__((cleanup(foo_clean))) = 0;
/external/e2fsprogs/lib/ext2fs/
H A Dmkdir.c53 goto cleanup;
61 goto cleanup;
68 goto cleanup;
76 goto cleanup;
99 goto cleanup;
102 goto cleanup;
107 goto cleanup;
111 goto cleanup;
123 goto cleanup;
126 goto cleanup;
[all...]
H A Dsymlink.c48 goto cleanup;
58 goto cleanup;
61 goto cleanup;
71 goto cleanup;
109 goto cleanup;
115 goto cleanup;
119 goto cleanup;
130 goto cleanup;
133 goto cleanup;
136 goto cleanup;
[all...]
H A Dopenfs.c124 goto cleanup;
141 goto cleanup;
144 goto cleanup;
149 goto cleanup;
154 goto cleanup;
159 goto cleanup;
178 goto cleanup;
189 goto cleanup;
194 goto cleanup;
204 goto cleanup;
[all...]
/external/strace/tests/
H A Ddetach-stopped.test24 cleanup() function
37 { cat $LOG; cleanup; fail_ 'strace -p does not work'; }
43 { cat $LOG; cleanup; fail_ 'strace -p does not work'; }
51 { cat $LOG; cleanup; fail_ 'strace -p failed to detach'; }
56 { cat $LOG; cleanup; fail_ 'tracee died after detach'; }
60 cleanup
65 cleanup
H A Ddetach-running.test22 cleanup() function
34 { cat $LOG; cleanup; fail_ 'strace -p does not work'; }
42 { cat $LOG; cleanup; fail_ 'strace -p failed to detach'; }
47 { cat $LOG; cleanup; fail_ 'tracee died after detach'; }
51 cleanup
56 cleanup
H A Ddetach-sleeping.test23 cleanup() function
35 { cat $LOG; cleanup; fail_ 'strace -p does not work'; }
43 { cat $LOG; cleanup; fail_ 'strace -p failed to detach'; }
48 { cat $LOG; cleanup; fail_ 'tracee died after detach'; }
52 cleanup
57 cleanup
/external/android-clat/
H A Dsetif.c48 goto cleanup;
54 goto cleanup;
63 goto cleanup;
68 goto cleanup;
74 goto cleanup;
80 goto cleanup;
84 goto cleanup;
89 cleanup:
109 goto cleanup;
117 goto cleanup;
[all...]
/external/ppp/pppd/plugins/radius/
H A Dradattr.c26 static void cleanup(void *opaque, int arg);
45 /* calling cleanup() on link down is problematic because print_attributes()
48 add_notifier(&link_down_notifier, cleanup, NULL);
52 add_notifier(&exitnotify, cleanup, NULL);
94 * %FUNCTION: cleanup
104 cleanup(void *opaque, int arg) function
/external/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h55 void registerCleanup(CrashRecoveryContextCleanup *cleanup);
56 void unregisterCleanup(CrashRecoveryContextCleanup *cleanup);
191 CrashRecoveryContextCleanup *cleanup;
194 : cleanup(Cleanup::create(x)) {
195 if (cleanup)
196 cleanup->getContext()->registerCleanup(cleanup);
204 if (cleanup && !cleanup->cleanupFired)
205 cleanup
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/Layout/resources/
H A Dcharacter_fallback_test.js27 function cleanup() { function
33 PerfTestRunner.measureTime({ run: test, done: cleanup, description: "Per-character font fallback" });
/external/llvm/unittests/
H A DMakefile.unittest19 .PHONY: cleanup-local
20 cleanup-local:
25 all:: cleanup-local
26 clean:: cleanup-local
/external/chromium_org/third_party/icu/source/i18n/
H A Dsmpdtfst.h35 static UBool cleanup();
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
H A DDataFetcher.java11 * {@link #loadData(Priority)} is called, then so {@link #cleanup()} will be called.
33 public void cleanup(); method in interface:DataFetcher
/external/icu/icu4c/source/i18n/
H A Dsmpdtfst.h35 static UBool cleanup();

Completed in 611 milliseconds

1234567891011>>