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

1234567891011>>

/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 };
H A Dexceptions-seh-finally.c6 void cleanup(void);
12 cleanup();
32 // CHECK: call void @cleanup()
49 cleanup();
68 // CHECK: call void @cleanup()
/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/strace/tests/
H A Ddetach-running.test49 cleanup() function
62 cleanup
72 cleanup
79 cleanup
84 cleanup
89 cleanup
H A Ddetach-sleeping.test50 cleanup() function
63 cleanup
73 cleanup
80 cleanup
85 cleanup
90 cleanup
H A Ddetach-stopped.test56 cleanup() function
70 cleanup
78 cleanup
88 cleanup
95 cleanup
100 cleanup
105 cleanup
H A Dipc_msgbuf.c56 goto cleanup;
58 goto cleanup;
63 cleanup:
/external/autotest/client/tests/error_cleanup/
H A Derror_cleanup.py11 def cleanup(self): member in class:error_cleanup
12 raise NameError("test a bug in 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...]
/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/glide/library/src/main/java/com/bumptech/glide/load/data/
H A DDataFetcher.java9 * not be called. If {@link #loadData(Priority)} is called, then so {@link #cleanup()} will be called.
28 * @see #cleanup() where the data retuned will be cleaned up
42 void cleanup(); method in interface:DataFetcher
/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.h50 void registerCleanup(CrashRecoveryContextCleanup *cleanup);
51 void unregisterCleanup(CrashRecoveryContextCleanup *cleanup);
184 CrashRecoveryContextCleanup *cleanup;
188 : cleanup(Cleanup::create(x)) {
189 if (cleanup)
190 cleanup->getContext()->registerCleanup(cleanup);
196 if (cleanup && !cleanup->cleanupFired)
197 cleanup
[all...]
/external/selinux/libsemanage/src/
H A Ddirect_api.c588 goto cleanup;
606 cleanup:
623 goto cleanup;
638 cleanup:
700 * Another sigaction is called in cleanup to restore the original behavior when a SIGPIPE is received.
707 goto cleanup;
712 goto cleanup;
717 goto cleanup;
724 goto cleanup;
729 goto cleanup;
[all...]
/external/libdivsufsort/
H A Dgenerate_includes.sh23 cleanup() { function
26 trap cleanup INT TERM ERR EXIT
/external/llvm/unittests/
H A DMakefile.unittest19 .PHONY: cleanup-local
20 cleanup-local:
25 all:: cleanup-local
26 clean:: cleanup-local
/external/elfutils/src/
H A Delfcompress.c292 int cleanup (int res) function
331 return cleanup (-1);
339 return cleanup (-1);
350 return cleanup (-1);
357 return cleanup (-1);
364 return cleanup (-1);
373 return cleanup (-1);
381 return cleanup (-1);
387 return cleanup (-1);
396 return cleanup (
[all...]

Completed in 1007 milliseconds

1234567891011>>