/prebuilts/go/darwin-x86/src/runtime/testdata/testprogcgo/ |
threadpanic_windows.c | 21 if(_beginthreadex(0, 0, die, 0, 0, 0) != 0) 22 printf("_beginthreadex failed\n");
|
/prebuilts/go/linux-x86/src/runtime/testdata/testprogcgo/ |
threadpanic_windows.c | 21 if(_beginthreadex(0, 0, die, 0, 0, 0) != 0) 22 printf("_beginthreadex failed\n");
|
/external/compiler-rt/test/asan/TestCases/Windows/ |
beginthreadex.cc | 15 HANDLE thr = (HANDLE)_beginthreadex(NULL, 0, thread_proc, NULL, 0, NULL);
|
/prebuilts/go/darwin-x86/misc/cgo/test/ |
cthread_windows.c | 32 thread_id[i] = _beginthreadex(0, 0, addThread, &max, 0, 0);
|
/prebuilts/go/linux-x86/misc/cgo/test/ |
cthread_windows.c | 32 thread_id[i] = _beginthreadex(0, 0, addThread, &max, 0, 0);
|
/external/lzma/C/ |
Threads.c | 34 /* Windows Me/98/95: threadId parameter may not be NULL in _beginthreadex/CreateThread functions */
44 *p = (HANDLE)_beginthreadex(NULL, 0, func, param, 0, &threadId);
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/ |
Threads.c | 29 unsigned threadId; /* Windows Me/98/95: threadId parameter may not be NULL in _beginthreadex/CreateThread functions */
32 (HANDLE)_beginthreadex(NULL, 0, startAddress, parameter, 0, &threadId);
|
/external/v8/src/base/ |
win32-headers.h | 61 #include <process.h> // For _beginthreadex().
|
/external/curl/lib/ |
curl_threads.c | 110 t = (curl_thread_t)_beginthreadex(NULL, 0, func, arg, 0, NULL);
|
/external/libusb/libusb/os/ |
windows_common.h | 44 // _beginthreadex is MSVCRT => unavailable for cygwin. Fallback to using CreateThread 45 #define _beginthreadex(a, b, c, d, e, f) CreateThread(a, b, (LPTHREAD_START_ROUTINE)c, d, e, (LPDWORD)f) macro
|
/external/llvm/lib/Support/ |
Threading.cpp | 96 HANDLE hThread = (HANDLE)::_beginthreadex(NULL,
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
Threading.cpp | 97 HANDLE hThread = (HANDLE)::_beginthreadex(NULL,
|
/external/icu/icu4c/source/test/intltest/ |
simplethread.cpp | 152 // Destructor. Because we start the thread running with _beginthreadex(), 174 imp->fHandle = (HANDLE) _beginthreadex(
|
/external/valgrind/drd/tests/ |
annotate_smart_pointer.cpp | 34 #include <process.h> // _beginthreadex() 83 m_thread = reinterpret_cast<HANDLE>(_beginthreadex(NULL, 0, wrapper,
|
/external/webp/src/utils/ |
thread_utils.c | 66 // _beginthreadex requires __stdcall 86 *thread = (pthread_t)_beginthreadex(NULL, /* void *security */
|
/prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/ |
SDL_thread.h | 116 #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) 118 #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
|
/prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/ |
SDL_thread.h | 116 #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) 118 #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
|
/prebuilts/misc/windows/sdl2/include/ |
SDL_thread.h | 116 #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) 118 #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
|
/prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/ |
SDL_thread.h | 116 #define SDL_CreateThread(fn, name, data) SDL_CreateThread_REAL(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex) 118 #define SDL_CreateThread(fn, name, data) SDL_CreateThread(fn, name, data, (pfnSDL_CurrentBeginThread)_beginthreadex, (pfnSDL_CurrentEndThread)_endthreadex)
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
Threading.cpp | 125 HANDLE hThread = (HANDLE)::_beginthreadex(NULL,
|
/external/libvpx/libvpx/vpx_util/ |
vpx_thread.h | 60 // _beginthreadex requires __stdcall 84 *thread = (pthread_t)_beginthreadex(NULL, /* void *security */
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
thread_nt.h | 148 hThread = (HANDLE)_beginthreadex(0,
|
/external/libcups/cups/ |
thread.c | 342 return (_beginthreadex(NULL, 0, (LPTHREAD_START_ROUTINE)func, arg, 0, NULL));
|
/external/python/cpython2/Python/ |
thread_nt.h | 148 hThread = (HANDLE)_beginthreadex(0,
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
process.h | 33 _CRTIMP uintptr_t __cdecl _beginthreadex(void *_Security,unsigned _StackSize,unsigned (__stdcall *_StartAddress) (void *),void *_ArgList,unsigned _InitFlag,unsigned *_ThrdAddr);
|