OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
();
175
DISALLOW_COPY_AND_ASSIGN(
RecursiveMutex
);
179
// POD
RecursiveMutex
initialized lazily (i.e. the first time Pointer() is
185
// LockGuard<
RecursiveMutex
> guard(my_mutex.Pointer());
189
typedef LazyStaticInstance<
RecursiveMutex
,
190
DefaultConstructTrait<
RecursiveMutex
>,
[
all
...]
mutex.cc
115
RecursiveMutex
::
RecursiveMutex
() {
123
RecursiveMutex
::~
RecursiveMutex
() {
129
void
RecursiveMutex
::Lock() {
138
void
RecursiveMutex
::Unlock() {
147
bool
RecursiveMutex
::TryLock() {
193
RecursiveMutex
::
RecursiveMutex
() {
201
RecursiveMutex
::~RecursiveMutex()
[
all
...]
/external/v8/src/
perf-jit.cc
168
base::LockGuard<base::
RecursiveMutex
> guard_file(file_mutex_.Pointer());
180
base::LockGuard<base::
RecursiveMutex
> guard_file(file_mutex_.Pointer());
207
base::LockGuard<base::
RecursiveMutex
> guard_file(file_mutex_.Pointer());
240
base::LockGuard<base::
RecursiveMutex
> guard_file(file_mutex_.Pointer());
isolate.h
700
base::
RecursiveMutex
* break_access() { return &break_access_; }
[
all
...]
globals.h
26
class
RecursiveMutex
;
[
all
...]
Completed in 684 milliseconds