Searched refs:_beginthreadex (Results 1 - 25 of 25) sorted by relevance

/external/compiler-rt/test/asan/TestCases/Windows/
H A Dbeginthreadex.cc15 HANDLE thr = (HANDLE)_beginthreadex(NULL, 0, thread_proc, NULL, 0, NULL);
/external/llvm/lib/Support/
H A DThreading.cpp90 HANDLE hThread = (HANDLE)::_beginthreadex(NULL,
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_thread.h85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
/external/chromium_org/ppapi/tests/
H A Dpp_thread.h105 uintptr_t raw_handle = ::_beginthreadex(NULL,
/external/qemu/distrib/sdl-1.2.15/src/thread/win32/
H A DSDL_systhread.c108 pfnSDL_CurrentBeginThread pfnBeginThread = _beginthreadex;
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dcreate.c196 * after _beginthreadex returns us the handle. Otherwise we set up a
207 (HANDLE) _beginthreadex ((void *) NULL, /* No security info */
245 * Make the return code match _beginthreadex's.
H A Dimplement.h717 _CRTIMP unsigned long __cdecl _beginthreadex (void *, unsigned,
944 #define _beginthreadex(security, \ macro
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dthread_win.cc77 thread_ = (HANDLE)_beginthreadex(NULL, 1024 * 1024, StartThread, (void*)this,
/external/lzma/C/
H A DThreads.c32 unsigned threadId; /* Windows Me/98/95: threadId parameter may not be NULL in _beginthreadex/CreateThread functions */
37 (HANDLE)_beginthreadex(NULL, 0, func, param, 0, &threadId);
/external/webrtc/src/system_wrappers/source/
H A Dthread_win.cc81 _thread=(HANDLE)_beginthreadex(NULL, 1024*1024, StartThread, (void*)this, 0,
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_thread.h42 // _beginthreadex requires __stdcall
50 *thread = (pthread_t)_beginthreadex(NULL, /* void *security */
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_thread.h43 // _beginthreadex requires __stdcall
51 *thread = (pthread_t)_beginthreadex(NULL, /* void *security */
/external/chromium_org/base/time/
H A Dtime_win_unittest.cc90 _beginthreadex(NULL, 0, RolloverTestThreadMain, argument, 0,
102 // Since using _beginthreadex() (as opposed to _beginthread),
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dsimplethread.cpp183 // Destructor. Because we start the thread running with _beginthreadex(),
205 imp->fHandle = (HANDLE) _beginthreadex(
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dthreading.h31 #define pthread_create(thhandle,attr,thfunc,tharg) (int)((*thhandle=(HANDLE)_beginthreadex(NULL,0,(unsigned int (__stdcall *)(void *))thfunc,tharg,0,NULL))==NULL)
/external/chromium_org/third_party/libwebp/utils/
H A Dthread.c51 // _beginthreadex requires __stdcall
58 *thread = (pthread_t)_beginthreadex(NULL, /* void *security */
/external/icu/icu4c/source/test/intltest/
H A Dsimplethread.cpp183 // Destructor. Because we start the thread running with _beginthreadex(),
205 imp->fHandle = (HANDLE) _beginthreadex(
/external/libvpx/libvpx/vp8/common/
H A Dthreading.h31 #define pthread_create(thhandle,attr,thfunc,tharg) (int)((*thhandle=(HANDLE)_beginthreadex(NULL,0,(unsigned int (__stdcall *)(void *))thfunc,tharg,0,NULL))==NULL)
/external/qemu/util/
H A Dqemu-thread-win32.c313 * discard the handle that _beginthreadex gives back, and
345 hThread = (HANDLE) _beginthreadex(NULL, 0, win32_start_routine,
/external/valgrind/main/drd/tests/
H A Dannotate_smart_pointer.cpp34 #include <process.h> // _beginthreadex()
83 m_thread = reinterpret_cast<HANDLE>(_beginthreadex(NULL, 0, wrapper,
/external/webp/src/utils/
H A Dthread.c51 // _beginthreadex requires __stdcall
58 *thread = (pthread_t)_beginthreadex(NULL, /* void *security */
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dwindows_usb.h48 // _beginthreadex is MSVCRT => unavailable for cygwin. Fallback to using CreateThread
49 #define _beginthreadex(a, b, c, d, e, f) CreateThread(a, b, (LPTHREAD_START_ROUTINE)c, d, e, f) macro
H A Dwindows_usb.c882 timer_thread = (HANDLE)_beginthreadex(NULL, 0, windows_clock_gettime_threaded, NULL, 0, NULL);
/external/chromium_org/v8/src/base/platform/
H A Dplatform-win32.cc1353 // Create a new thread. It is important to use _beginthreadex() instead of
1358 _beginthreadex(NULL,
/external/mdnsresponder/mDNSShared/
H A DCommonServices.h531 // _beginthreadex and _endthreadex are not supported on Windows CE 2.1 or later (the C runtime issues with leaking
542 #define _beginthreadex_compat _beginthreadex

Completed in 6633 milliseconds