Searched refs:cleanup (Results 1 - 25 of 474) 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
/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/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/android-clat/
H A Dsetif.c45 goto cleanup;
51 goto cleanup;
60 goto cleanup;
65 goto cleanup;
71 goto cleanup;
77 goto cleanup;
81 goto cleanup;
86 cleanup:
106 goto cleanup;
114 goto cleanup;
[all...]
H A Dsetroute.c55 goto cleanup;
60 goto cleanup;
91 goto cleanup;
99 goto cleanup;
104 goto cleanup;
109 goto cleanup;
113 goto cleanup;
117 goto cleanup;
124 goto cleanup;
129 goto cleanup;
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dmkdir.c52 goto cleanup;
60 goto cleanup;
67 goto cleanup;
75 goto cleanup;
95 goto cleanup;
98 goto cleanup;
109 goto cleanup;
112 goto cleanup;
115 goto cleanup;
125 goto cleanup;
[all...]
H A Dopenfs.c111 goto cleanup;
128 goto cleanup;
131 goto cleanup;
136 goto cleanup;
141 goto cleanup;
146 goto cleanup;
165 goto cleanup;
176 goto cleanup;
181 goto cleanup;
191 goto cleanup;
[all...]
/external/compiler-rt/test/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/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...]
/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/dropbear/
H A Dlistener.h39 void (*cleanup)(struct Listener*); member in struct:Listener
56 void (*cleanup)(struct Listener*));
/external/chromium_org/tools/gyp/test/library_dirs/
H A Dgyptest-library-dirs.py33 test.cleanup()
/external/libsepol/tests/
H A Dtest-cond.c42 goto cleanup;
46 goto cleanup;
51 goto cleanup;
56 cleanup:
/external/valgrind/main/drd/
H A Ddrd_clientobj.h57 void (*cleanup)(union drd_clientobj*); member in struct:any
66 void (*cleanup)(union drd_clientobj*); member in struct:mutex_info
81 void (*cleanup)(union drd_clientobj*); member in struct:cond_info
93 void (*cleanup)(union drd_clientobj*); member in struct:hb_info
103 void (*cleanup)(union drd_clientobj*); member in struct:semaphore_info
118 void (*cleanup)(union drd_clientobj*); member in struct:barrier_info
135 void (*cleanup)(union drd_clientobj*); member in struct:rwlock_info
/external/chromium/base/
H A Dsync_socket_posix.cc36 // Create the two SyncSocket objects first to avoid ugly cleanup issues.
39 goto cleanup;
43 goto cleanup;
46 goto cleanup;
55 goto cleanup;
65 cleanup:
/external/llvm/lib/Support/
H A DCrashRecoveryContext.cpp50 // cleanup code crashes.
105 void CrashRecoveryContext::registerCleanup(CrashRecoveryContextCleanup *cleanup) argument
107 if (!cleanup)
110 head->prev = cleanup;
111 cleanup->next = head;
112 head = cleanup;
116 CrashRecoveryContext::unregisterCleanup(CrashRecoveryContextCleanup *cleanup) { argument
117 if (!cleanup)
119 if (cleanup == head) {
120 head = cleanup
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DFlyCamAppState.java87 public void cleanup() { method in class:FlyCamAppState
88 super.cleanup();
/external/bluetooth/bluedroid/hci/include/
H A Dhci.h68 tHCI_CLEANUP cleanup; member in struct:__anon1035
/external/bzip2/
H A Dxmlproc.sh62 cleanup() { function
84 cleanup $xmlfmtfile
93 cleanup $OUT $xmlfmtfile *.aux *.fo *.log *.out
103 cleanup $OUT $xmlfmtfile $pdffile *.aux *.fo *.log *.out
/external/chromium_org/third_party/icu/source/i18n/
H A Dregexst.h40 static UBool cleanup();
/external/emma/core/java12/com/vladium/emma/report/
H A DIReportGenerator.java32 void cleanup (); method in interface:IReportGenerator
/external/icu4c/i18n/
H A Dregexst.h40 static UBool cleanup();
H A Dsmpdtfst.h38 static UBool cleanup();

Completed in 3020 milliseconds

1234567891011>>