Home | History | Annotate | Download | only in src

Lines Matching refs:trylock

384     bool trylock();
412 bool trylock() { return TryEnterCriticalSection(&cs) != 0; }
440 bool trylock() { return OSSpinLockTry(&sl); }
455 bool trylock() { return pthread_spin_trylock(&sl) == 0; }
470 bool trylock() { return pthread_mutex_trylock(&sl) == 0; }
492 bool ImplMutex::trylock() { return impl->trylock(); }