HomeSort by relevance Sort by last modified time
    Searched refs:RecursiveMutex (Results 1 - 5 of 5) sorted by null

  /external/v8/src/base/platform/
mutex.h 112 // RecursiveMutex
129 // while still owned by some thread. The RecursiveMutex class is non-copyable.
131 class V8_BASE_EXPORT RecursiveMutex final {
133 RecursiveMutex();
134 ~RecursiveMutex();
171 DISALLOW_COPY_AND_ASSIGN(RecursiveMutex);
175 // POD RecursiveMutex initialized lazily (i.e. the first time Pointer() is
181 // LockGuard<RecursiveMutex> guard(my_mutex.Pointer());
185 typedef LazyStaticInstance<RecursiveMutex,
186 DefaultConstructTrait<RecursiveMutex>,
    [all...]
mutex.cc 148 RecursiveMutex::RecursiveMutex() {
156 RecursiveMutex::~RecursiveMutex() {
162 void RecursiveMutex::Lock() {
171 void RecursiveMutex::Unlock() {
180 bool RecursiveMutex::TryLock() {
  /external/v8/src/
perf-jit.cc 165 base::LockGuard<base::RecursiveMutex> guard_file(file_mutex_.Pointer());
177 base::LockGuard<base::RecursiveMutex> guard_file(file_mutex_.Pointer());
205 base::LockGuard<base::RecursiveMutex> guard_file(file_mutex_.Pointer());
isolate.h 569 base::RecursiveMutex* break_access() { return &break_access_; }
    [all...]
globals.h 64 class RecursiveMutex;
    [all...]

Completed in 163 milliseconds