Home
last modified time | relevance | path

Searched refs:TryEnterCriticalSection (Results 1 – 20 of 20) sorted by relevance

/third_party/boost/boost/signals2/detail/
Dlwm_win32_cs.hpp66 extern "C" __declspec(dllimport) int __stdcall TryEnterCriticalSection(::_RTL_CRITICAL_SECTION *);
82 using ::TryEnterCriticalSection;
125 …return boost::signals2::detail::TryEnterCriticalSection(reinterpret_cast< boost::signals2::detail:… in try_lock()
/third_party/boost/boost/winapi/
Dcritical_section.hpp96 TryEnterCriticalSection(boost::winapi::detail::winsdk_critical_section* lpCriticalSection);
135 TryEnterCriticalSection(boost::winapi::detail::winapi_critical_section* lpCriticalSection);
224 BOOST_FORCEINLINE BOOL_ TryEnterCriticalSection(CRITICAL_SECTION_* lpCriticalSection) in TryEnterCriticalSection() function
226 return ::TryEnterCriticalSection(winapi::detail::cast_ptr(lpCriticalSection)); in TryEnterCriticalSection()
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sfntly/port/
Dlock.cc34 if (::TryEnterCriticalSection(&os_lock_) != FALSE) { in Try()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/port/
Dlock.cc34 if (::TryEnterCriticalSection(&os_lock_) != FALSE) { in Try()
/third_party/flutter/skia/third_party/externals/sdl/src/thread/windows/
DSDL_sysmutex.c90 if (TryEnterCriticalSection(&mutex->cs) == 0) { in SDL_TryLockMutex()
/third_party/gettext/gettext-runtime/intl/
Dwindows-mutex.c73 if (!TryEnterCriticalSection (&mutex->lock)) in glwthread_mutex_trylock()
Dwindows-recmutex.c91 if (!TryEnterCriticalSection (&mutex->lock)) in glwthread_recmutex_trylock()
/third_party/cef/libcef_dll/base/
Dcef_lock_impl.cc23 if (::TryEnterCriticalSection(&native_handle_) != FALSE) { in Try()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DMutex.inc55 return TryEnterCriticalSection((LPCRITICAL_SECTION)data_);
/third_party/libusb/libusb/os/
Dthreads_windows.h53 return TryEnterCriticalSection(mutex) != 0; in usbi_mutex_trylock()
/third_party/vk-gl-cts/framework/delibs/dethread/win32/
DdeMutexWin32.c83 return TryEnterCriticalSection((CRITICAL_SECTION*)mutex) == TRUE; in deMutex_tryLock()
/third_party/grpc/src/core/lib/gpr/
Dsync_windows.cc49 int result = TryEnterCriticalSection(&mu->cs); in gpr_mu_trylock()
/third_party/skia/third_party/externals/microhttpd/src/include/
Dplatform_interface.h323 ((NULL != (mutex) && 0 != TryEnterCriticalSection ((mutex))) ? MHD_YES : MHD_NO)
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_process_lock.h138 TryEnterCriticalSection(&SCTP_BASE_INFO(ipi_ep_mtx))
249 #define SCTP_TCB_TRYLOCK(_tcb) ((TryEnterCriticalSection(&(_tcb)->tcb_mtx)))
/third_party/libuv/src/win/
Dthread.c241 if (TryEnterCriticalSection(mutex)) in uv_mutex_trylock()
/third_party/mesa3d/include/c11/
Dthreads_win32.h335 return TryEnterCriticalSection(mtx) ? thrd_success : thrd_busy; in mtx_trylock()
/third_party/flutter/glfw/deps/
Dtinycthread.c112 int ret = TryEnterCriticalSection(&mtx->mHandle) ? thrd_success : thrd_busy; in mtx_trylock()
/third_party/glib/glib/
Dgthread-win32.c171 return TryEnterCriticalSection (g_rec_mutex_get_impl (mutex)); in g_rec_mutex_trylock()
/third_party/boost/libs/container/src/
Ddlmalloc_2_8_6.c1975 #define TRY_LOCK(lk) TryEnterCriticalSection(lk)
/third_party/sqlite/src/
Dsqlite3.c28108 if( winMutex_isNt && TryEnterCriticalSection(&p->mutex) ){