Searched defs:thread_proc (Results 1 - 7 of 7) sorted by relevance

/external/compiler-rt/test/asan/TestCases/Windows/
H A Dbeginthreadex.cc7 unsigned WINAPI thread_proc(void *) { function
15 HANDLE thr = (HANDLE)_beginthreadex(NULL, 0, thread_proc, NULL, 0, NULL);
H A Dthread_simple.cc6 DWORD WINAPI thread_proc(void *) { function
15 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);
H A Dthread_stack_array_left_oob.cc6 DWORD WINAPI thread_proc(void *) { function
12 // CHECK: {{#0 .* thread_proc .*thread_stack_array_left_oob.cc}}:[[@LINE-3]]
14 // CHECK: thread_proc
19 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);
H A Dthread_stack_array_right_oob.cc6 DWORD WINAPI thread_proc(void *) { function
12 // CHECK: {{#0 .* thread_proc .*thread_stack_array_right_oob.cc}}:[[@LINE-3]]
14 // CHECK: thread_proc
19 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);
H A Dthread_stress.cc6 DWORD WINAPI thread_proc(void *) { function
18 thr[i] = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);
H A Dthread_suspended.cc6 DWORD WINAPI thread_proc(void *) { function
15 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, CREATE_SUSPENDED, NULL);
H A Ddll_thread_stack_array_left_oob.cc8 DWORD WINAPI thread_proc(void *context) { function
14 // CHECK-NEXT: thread_proc {{.*}}dll_thread_stack_array_left_oob.cc:[[@LINE-3]]
17 // CHECK-NEXT: thread_proc {{.*}}dll_thread_stack_array_left_oob.cc
26 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);

Completed in 458 milliseconds