Searched defs:thread_proc (Results 1 - 7 of 7) sorted by relevance
/external/compiler-rt/test/asan/TestCases/Windows/ |
H A D | beginthreadex.cc | 7 unsigned WINAPI thread_proc(void *) { function 15 HANDLE thr = (HANDLE)_beginthreadex(NULL, 0, thread_proc, NULL, 0, NULL);
|
H A D | thread_simple.cc | 6 DWORD WINAPI thread_proc(void *) { function 15 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);
|
H A D | thread_stack_array_left_oob.cc | 6 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 D | thread_stack_array_right_oob.cc | 6 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 D | thread_stress.cc | 6 DWORD WINAPI thread_proc(void *) { function 18 thr[i] = CreateThread(NULL, 0, thread_proc, NULL, 0, NULL);
|
H A D | thread_suspended.cc | 6 DWORD WINAPI thread_proc(void *) { function 15 HANDLE thr = CreateThread(NULL, 0, thread_proc, NULL, CREATE_SUSPENDED, NULL);
|
H A D | dll_thread_stack_array_left_oob.cc | 8 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 637 milliseconds