/external/valgrind/main/cachegrind/tests/ |
chdir.vgtest | 2 cleanup: rm cachegrind.out.*
|
clreq.vgtest | 3 cleanup: rm cachegrind.out.*
|
dlclose.vgtest | 3 cleanup: rm cachegrind.out.*
|
wrap5.vgtest | 2 cleanup: rm cachegrind.out.*
|
notpower2.vgtest | 3 cleanup: rm cachegrind.out.*
|
/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 {{attribute takes one argument}} 12 int v2 __attribute((cleanup(1, 2))); // expected-error {{attribute takes one argument}} 14 static int v3 __attribute((cleanup(c1))); // expected-warning {{cleanup attribute ignored} [all...] |
/external/valgrind/main/drd/tests/ |
pth_cleanup_handler.stderr.exp | 2 Cleanup handler has been called. 3 Cleanup handler has been called.
|
/external/valgrind/main/cachegrind/tests/x86/ |
fpu-28-108.vgtest | 2 cleanup: rm cachegrind.out.*
|
/external/valgrind/main/callgrind/tests/ |
clreq.vgtest | 3 cleanup: rm callgrind.out.*
|
simwork1.vgtest | 3 cleanup: rm callgrind.out.*
|
simwork3.vgtest | 3 cleanup: rm callgrind.out.*
|
simwork2.vgtest | 3 cleanup: rm callgrind.out.*
|
threads.vgtest | 3 cleanup: rm callgrind.out.*
|
notpower2.vgtest | 3 cleanup: rm callgrind.out.*
|
threads-use.vgtest | 3 cleanup: rm callgrind.out.*
|
/external/valgrind/main/memcheck/tests/ |
badjump.vgtest | 2 cleanup: rm -f vgcore.pid*
|
supp_unknown.vgtest | 3 cleanup: rm -f vgcore.pid*
|
/external/llvm/test/CodeGen/X86/ |
asm-label.ll | 8 ; CHECK: LBB0_9: ## %cleanup 21 br label %cleanup 24 br label %cleanup 26 cleanup: ; preds = %if.end, %if.then9 28 i32 0, label %cleanup.cont 32 cleanup.cont: ; preds = %cleanup 35 if.end11: ; preds = %cleanup.cont, %cleanup, %land.lhs.true, %entry 38 unreachable: ; preds = %cleanup [all...] |
2010-04-30-LocalAlloc-LandingPad.ll | 22 %cleanup.dst = alloca i32 ; <i32*> [#uses=3] 23 %cleanup.dst7 = alloca i32 ; <i32*> [#uses=6] 29 store i32 1, i32* %cleanup.dst7 54 store i32 1, i32* %cleanup.dst 61 store i32 2, i32* %cleanup.dst 64 cleanup.pad: ; preds = %cleanup.switch 65 store i32 1, i32* %cleanup.dst7 68 cleanup.pad4: ; preds = %cleanup.switc [all...] |
/external/clang/test/SemaObjC/ |
attr-cleanup.m | 9 NSString *s __attribute((cleanup(c1)));
|
/external/valgrind/main/massif/tests/ |
malloc_usable.vgtest | 3 cleanup: rm massif.out
|
/external/icu4c/common/ |
ucln.h | 22 /** These are the functions used to register a library's memory cleanup 26 * None of the cleanup functions should use a mutex to clean up an API's 27 * allocated memory because a cleanup function is not meant to be thread safe, 31 * In order to make a cleanup function get called when u_cleanup is called, 32 * You should add your function to the library specific cleanup function. 33 * If the cleanup function is not in the common library, the code that 34 * allocates the memory should call the library specific cleanup function. 37 * cleanup functions are needed in order to prevent a circular dependency 40 * The order of the cleanup is very important. In general, an API that 51 * Data Type for cleanup function selector. These roughly correspond to libraries [all...] |
/external/dbus/tools/ |
dbus-cleanup-sockets.1 | 2 .\" dbus-cleanup-sockets manual page. 5 .TH dbus-cleanup-sockets 1 7 dbus-cleanup-sockets \- clean up leftover sockets in a directory 10 .B dbus-cleanup-sockets [DIRECTORY] 14 The \fIdbus-cleanup-sockets\fP command cleans up unused D-Bus 19 If given no arguments, \fIdbus-cleanup-sockets\fP cleans up sockets 33 dbus-cleanup-sockets in a cron job to mop up any leaked sockets. 38 dbus-cleanup-sockets was adapted by Havoc Pennington from 39 linc-cleanup-sockets written by Michael Meeks.
|
/external/clang/test/CodeGen/ |
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 };
|
attr-cleanup.c | 6 __attribute__((cleanup(f))) void *g;
|