Home
last modified time | relevance | path

Searched refs:dispose (Results 1 – 25 of 59) sorted by relevance

123

/netbsd/external/gpl3/gdb/dist/gdb/testsuite/gdb.multi/
H A Dwatchpoint-multi-exit.exp29 proc do_test {dispose} { argument
47 if {$dispose == "kill"} {
50 } elseif {$dispose == "detach"} {
52 } elseif {$dispose == "exit"} {
55 perror "unhandled dispose: $dispose"
61 if {$dispose == "kill"} {
85 foreach_with_prefix dispose {"kill" "detach" "exit"} {
86 do_test $dispose
/netbsd/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.multi/
H A Dwatchpoint-multi-exit.exp29 proc do_test {dispose} { argument
47 if {$dispose == "kill"} {
50 } elseif {$dispose == "detach"} {
52 } elseif {$dispose == "exit"} {
55 perror "unhandled dispose: $dispose"
61 if {$dispose == "kill"} {
85 foreach_with_prefix dispose {"kill" "detach" "exit"} {
86 do_test $dispose
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A Dsimple_ilist.h173 void cloneFrom(const simple_ilist &L2, Cloner clone, Disposer dispose) { in cloneFrom() argument
174 clearAndDispose(dispose); in cloneFrom()
187 void removeAndDispose(reference N, Disposer dispose) { in removeAndDispose() argument
189 dispose(&N); in removeAndDispose()
212 iterator eraseAndDispose(iterator I, Disposer dispose) { in eraseAndDispose() argument
215 dispose(&*I); in eraseAndDispose()
221 iterator eraseAndDispose(iterator First, iterator Last, Disposer dispose) { in eraseAndDispose() argument
223 First = eraseAndDispose(First, dispose); in eraseAndDispose()
233 template <class Disposer> void clearAndDispose(Disposer dispose) { in clearAndDispose() argument
234 eraseAndDispose(begin(), end(), dispose); in clearAndDispose()
/netbsd/external/bsd/openldap/dist/servers/lloadd/
H A Depoch.c48 dispose_cb *dispose; member
92 old->dispose( old->object ); in epoch_shutdown()
102 old->dispose( old->object ); in epoch_shutdown()
159 old->dispose( old->object ); in epoch_join()
254 p->dispose( p->object ); in epoch_leave()
261 p->dispose( p->object ); in epoch_leave()
286 new->dispose = cb; in epoch_append()
/netbsd/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/
H A Dtyped.d376 void dispose(T)(T* p) in TypedAllocator()
378 return .dispose(allocatorFor!T, p); in TypedAllocator()
381 void dispose(T)(T p) in TypedAllocator()
384 return .dispose(allocatorFor!T, p); in TypedAllocator()
387 void dispose(T)(T[] array) in TypedAllocator()
389 return .dispose(allocatorFor!(T[]), array); in TypedAllocator()
418 scope(exit) a.dispose(p);
420 scope(exit) a.dispose(arr);
H A Dpackage.d1734 void dispose(A, T)(auto ref A alloc, T* p)
1744 void dispose(A, T)(auto ref A alloc, T p)
1797 theAllocator.dispose(a);
1803 theAllocator.dispose(b);
1809 theAllocator.dispose(i);
1813 theAllocator.dispose(arr);
1827 Mallocator.instance.dispose(foo);
1897 dispose(alloc, array);
2490 theAllocator.dispose(p);
2497 processAllocator.dispose(p);
[all …]
/netbsd/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/
H A Dtyped.d379 void dispose(T)(T* p) in TypedAllocator()
381 return .dispose(allocatorFor!T, p); in TypedAllocator()
384 void dispose(T)(T p) in TypedAllocator()
387 return .dispose(allocatorFor!T, p); in TypedAllocator()
390 void dispose(T)(T[] array) in TypedAllocator()
392 return .dispose(allocatorFor!(T[]), array); in TypedAllocator()
422 scope(exit) a.dispose(p);
424 scope(exit) a.dispose(arr);
H A Dpackage.d2468 theAllocator.dispose(a);
2474 theAllocator.dispose(b);
2480 theAllocator.dispose(i);
2484 theAllocator.dispose(arr);
2493 Mallocator.instance.dispose(i);
2497 Mallocator.instance.dispose(o);
2505 Mallocator.instance.dispose(ua);
2591 dispose(alloc, array); in disposeMultidimensionalArray()
3300 theAllocator.dispose(p);
3307 processAllocator.dispose(p);
[all …]
/netbsd/external/gpl3/gdb/dist/gas/testsuite/gas/v850/
H A Dv850e1.s13 dispose 7, {r24}
14 dispose 7, {r25 - r27}, r5
H A Dv850e1.d19 0x0+20 4e 06 00 80 [ ]*dispose 7, {r24}, r0
20 0x0+24 4e 06 05 70 [ ]*dispose 7, {r25 - r27}, r5
/netbsd/external/gpl3/gdb.old/dist/gas/testsuite/gas/v850/
H A Dv850e1.s13 dispose 7, {r24}
14 dispose 7, {r25 - r27}, r5
H A Dv850e1.d19 0x0+20 4e 06 00 80 [ ]*dispose 7, {r24}, r0
20 0x0+24 4e 06 05 70 [ ]*dispose 7, {r25 - r27}, r5
/netbsd/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndexUSRs.cpp56 buf->dispose(); in clang_getCursorUSR()
79 buf->dispose(); in clang_getCursorUSR()
H A DCXString.cpp148 void CXStringBuf::dispose() { in dispose() function in clang::cxstring::CXStringBuf
180 const_cast<void *>(string.data))->dispose(); in clang_disposeString()
H A DCXString.h92 void dispose();
/netbsd/external/apache2/llvm/dist/llvm/bindings/ocaml/executionengine/
H A Dllvm_executionengine.mli43 engine is not garbage collected and must be destroyed with [dispose ee].
50 (** [dispose ee] releases the memory used by the execution engine and must be
52 val dispose : llexecutionengine -> unit val
H A Dllvm_executionengine.ml33 external dispose : llexecutionengine -> unit
/netbsd/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dscoped_allocator.d219 alloc.dispose(foo);
220 alloc.dispose(bar); // segfault here
/netbsd/external/apache2/llvm/dist/llvm/utils/vscode/llvm/src/
H A Dextension.ts13 litTaskProvider.dispose();
/netbsd/external/apache2/llvm/dist/clang/docs/
H A DBlock-ABI-Apple.rst254 The first case where copy and dispose helper functions are required is for the
327 second case where that requires copy and dispose helper functions to be
329 ``_Block_object_assign`` runtime helper function and in the dispose helper the
616 ``Block`` has copy and dispose helpers for this structure that call:
833 copy/dispose helpers:
858 requires copy/dispose helpers if it imports any block variables, ``__block``
876 in the dispose helper where ``<apropos>`` is:
887 BLOCK_BYREF_CALLER = 128, // called from byref copy/dispose helpers
892 The ``block_byref`` data structure similarly requires copy/dispose helpers for
901 ``block_byref`` copy/dispose helper calls.
[all …]
/netbsd/external/apache2/llvm/dist/clang/lib/DirectoryWatcher/mac/
H A DDirectoryWatcher-mac.cpp91 static void dispose(const void *ctx) { in dispose() function
194 Context.release = EventStreamContextData::dispose; in createFSEventStream()
/netbsd/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dscoped_allocator.d242 alloc.dispose(foo);
243 alloc.dispose(bar); // segfault here
/netbsd/external/gpl3/gcc.old/dist/libgcc/config/v850/
H A Dlib1funcs.S1785 dispose 0, {r20-r29}
1821 dispose 0, {r20 - r29, r31}
1950 dispose 0, {r20 - r29, r31}
2017 dispose 0, { START - r29 }, r31 ;\
2044 dispose 0, { START - r29, r31}, r31 ;\
2134 dispose 0, {r31}, r31
/netbsd/external/gpl3/gcc/dist/libgcc/config/v850/
H A Dlib1funcs.S1785 dispose 0, {r20-r29}
1821 dispose 0, {r20 - r29, r31}
1950 dispose 0, {r20 - r29, r31}
2017 dispose 0, { START - r29 }, r31 ;\
2044 dispose 0, { START - r29, r31}, r31 ;\
2134 dispose 0, {r31}, r31
/netbsd/games/quiz/datfiles/
H A Ducc126 9-504:secured party's right to dispose of collateral after default

123