HomeSort by relevance Sort by last modified time
    Searched refs:_beginthreadex (Results 1 - 25 of 29) sorted by null

1 2

  /external/qemu/distrib/sdl-1.2.15/include/
SDL_thread.h 85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_thread.h 85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_thread.h 85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_thread.h 85 #define SDL_CreateThread(fn, data) SDL_CreateThread(fn, data, _beginthreadex, _endthreadex)
  /external/llvm/lib/Support/
Threading.cpp 125 HANDLE hThread = (HANDLE)::_beginthreadex(NULL,
  /external/qemu/distrib/sdl-1.2.15/src/thread/win32/
SDL_systhread.c 108 pfnSDL_CurrentBeginThread pfnBeginThread = _beginthreadex;
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
create.c 196 * 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.
implement.h 717 _CRTIMP unsigned long __cdecl _beginthreadex (void *, unsigned,
944 #define _beginthreadex macro
    [all...]
  /external/lzma/C/
Threads.c 32 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/
thread_win.cc 81 _thread=(HANDLE)_beginthreadex(NULL, 1024*1024, StartThread, (void*)this, 0,
  /external/chromium/base/
time_win_unittest.cc 90 _beginthreadex(NULL, 0, RolloverTestThreadMain, argument, 0,
  /external/chromium_org/base/time/
time_win_unittest.cc 90 _beginthreadex(NULL, 0, RolloverTestThreadMain, argument, 0,
  /external/chromium_org/third_party/icu/source/test/intltest/
simplethread.cpp 173 // Destructor. Because we start the thread running with _beginthreadex(),
195 imp->fHandle = (HANDLE) _beginthreadex(
  /external/chromium_org/third_party/libwebp/utils/
thread.c 31 // _beginthreadex requires __stdcall
38 *thread = (pthread_t)_beginthreadex(NULL, /* void *security */
  /external/icu4c/test/intltest/
simplethread.cpp 181 // Destructor. Because we start the thread running with _beginthreadex(),
203 imp->fHandle = (HANDLE) _beginthreadex(
  /external/libvpx/libvpx/vp8/common/
threading.h 27 #define pthread_create(thhandle,attr,thfunc,tharg) (int)((*thhandle=(HANDLE)_beginthreadex(NULL,0,(unsigned int (__stdcall *)(void *))thfunc,tharg,0,NULL))==NULL)
  /external/libvpx/libvpx/vp9/decoder/
vp9_thread.c 34 // _beginthreadex requires __stdcall
41 *thread = (pthread_t)_beginthreadex(NULL, /* void *security */
  /external/valgrind/main/drd/tests/
annotate_smart_pointer.cpp 33 #include <process.h> // _beginthreadex()
82 m_thread = reinterpret_cast<HANDLE>(_beginthreadex(NULL, 0, wrapper,
  /external/webp/src/utils/
thread.c 31 // _beginthreadex requires __stdcall
38 *thread = (pthread_t)_beginthreadex(NULL, /* void *security */
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadingWin.cpp 216 HANDLE threadHandle = reinterpret_cast<HANDLE>(_beginthreadex(0, 0, wtfThreadEntryPoint, invocation.get(), 0, &threadIdentifier));
  /ndk/sources/host-tools/make-3.81/w32/subproc/
sub_proc.c 20 #include <process.h> /* for msvc _beginthreadex, _endthreadex */
706 tStdin = (HANDLE) _beginthreadex( 0, 1024,
719 tStdout = (HANDLE) _beginthreadex( 0, 1024,
722 tStderr = (HANDLE) _beginthreadex( 0, 1024,
  /sdk/find_lock/
find_lock.cpp 371 HANDLE th = (HANDLE)_beginthreadex(NULL, // security
  /system/core/libutils/
Threads.cpp 226 hThread = (HANDLE) _beginthreadex(NULL, 0, threadIntermediary, pDetails, 0,
  /external/chromium_org/third_party/libusb/src/libusb/os/
windows_usb.h 48 // _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
  /external/mdnsresponder/mDNSShared/
CommonServices.h 531 // _beginthreadex and _endthreadex are not supported on Windows CE 2.1 or later (the C runtime issues with leaking
542 #define _beginthreadex_compat _beginthreadex
    [all...]

Completed in 1264 milliseconds

1 2