HomeSort by relevance Sort by last modified time
    Searched refs:cleanup (Results 1 - 25 of 505) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
cleanup.c 2 * 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 != NULL
    [all...]
  /external/clang/test/CodeGenCXX/
new-array-init-exceptions.cpp 11 void cleanup(int n) { function
29 void cleanup() { function
attr-cleanup.cpp 9 void *fp __attribute__((cleanup(N::free)));
  /external/clang/test/Sema/
attr-cleanup.c 5 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' attribute takes one argument}
    [all...]
  /external/libunwind/src/unwind/
DeleteException.c 31 _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/
attr-cleanup.c 6 __attribute__((cleanup(f))) void *g;
cleanup-stack.c 17 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/
attr-cleanup.cpp 12 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}}
attr-cleanup-gcc.cpp 13 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/
bump_compiler_version 12 cleanup() { function
16 trap cleanup SIGINT SIGHUP SIGTERM
28 cleanup
36 cleanup
  /external/compiler-rt/test/builtins/Unit/
gcc_personality_test.c 26 * 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/
mkdir.c 53 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...]
symlink.c 48 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...]
openfs.c 124 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...]
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
quick_exit.c 39 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();
  /external/android-clat/
setif.c 48 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/llvm/include/llvm/Support/
CrashRecoveryContext.h 55 void registerCleanup(CrashRecoveryContextCleanup *cleanup);
56 void unregisterCleanup(CrashRecoveryContextCleanup *cleanup);
189 template <typename T, typename Cleanup = CrashRecoveryContextDeleteCleanup<T> >
191 CrashRecoveryContextCleanup *cleanup;
194 : cleanup(Cleanup::create(x)) {
195 if (cleanup)
196 cleanup->getContext()->registerCleanup(cleanup);
204 if (cleanup && !cleanup->cleanupFired
    [all...]
  /external/llvm/unittests/
Makefile.unittest 19 .PHONY: cleanup-local
20 cleanup-local:
25 all:: cleanup-local
26 clean:: cleanup-local
  /external/chromium_org/third_party/icu/source/i18n/
smpdtfst.h 35 static UBool cleanup();
  /external/chromium_org/tools/gyp/test/library_dirs/
gyptest-library-dirs.py 50 test.cleanup()
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
DataFetcher.java 11 * {@link #loadData(Priority)} is called, then so {@link #cleanup()} will be called.
30 * Cleanup or recycle any resources used by this data fetcher. This method will be called in a finally block
33 public void cleanup(); method in interface:DataFetcher
  /external/icu/icu4c/source/i18n/
smpdtfst.h 35 static UBool cleanup();
  /external/libsepol/tests/
test-cond.c 42 goto cleanup;
46 goto cleanup;
51 goto cleanup;
56 cleanup:
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 52 // cleanup code crashes.
107 void CrashRecoveryContext::registerCleanup(CrashRecoveryContextCleanup *cleanup)
109 if (!cleanup)
112 head->prev = cleanup;
113 cleanup->next = head;
114 head = cleanup;
118 CrashRecoveryContext::unregisterCleanup(CrashRecoveryContextCleanup *cleanup) {
119 if (!cleanup)
121 if (cleanup == head) {
122 head = cleanup->next
    [all...]
  /external/bluetooth/bluedroid/hci/include/
hci.h 68 tHCI_CLEANUP cleanup; member in struct:__anon5782

Completed in 1776 milliseconds

1 2 3 4 5 6 7 8 91011>>