Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:MutatorLock
(Results
1 - 14
of
14
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/
H
A
D
mutator_lock.cpp
21
void
MutatorLock
::ReadLock()
in ReadLock()
28
void
MutatorLock
::WriteLock()
in WriteLock()
35
bool
MutatorLock
::TryReadLock()
in TryReadLock()
45
bool
MutatorLock
::TryWriteLock()
in TryWriteLock()
55
void
MutatorLock
::Unlock()
in Unlock()
62
bool
MutatorLock
::HasLock() const
in HasLock()
67
MutatorLock
::MutatorLockState
MutatorLock
::GetState() const
in GetState()
72
void
MutatorLock
::SetState(
MutatorLock
[all...]
H
A
D
mutator_lock.h
23
class
MutatorLock
: public RWLock {
class
H
A
D
runtime.h
55
MutatorLock
*GetMutatorLock()
in GetMutatorLock()
60
const
MutatorLock
*GetMutatorLock() const
in GetMutatorLock()
272
MutatorLock
mutatorLock_;
H
A
D
js_thread.h
1376
MutatorLock
::MutatorLockState GetMutatorLockState() const;
1377
void SetMutatorLockState(
MutatorLock
::MutatorLockState newState);
1625
MutatorLock
::MutatorLockState mutatorLockState_ =
MutatorLock
::MutatorLockState::UNLOCKED;
H
A
D
js_thread.cpp
1324
MutatorLock
::MutatorLockState JSThread::GetMutatorLockState() const
in GetMutatorLockState()
1329
void JSThread::SetMutatorLockState(
MutatorLock
::MutatorLockState newState)
in SetMutatorLockState()
/arkcompiler/runtime_core/static_core/runtime/
H
A
D
locks.cpp
42
MutatorLock
*Locks::NewMutatorLock()
in NewMutatorLock()
44
auto *lock = new
MutatorLock
();
in NewMutatorLock()
57
void
MutatorLock
::ReadLock()
in ReadLock()
61
LOG(DEBUG, RUNTIME) << "
MutatorLock
::ReadLock";
in ReadLock()
65
void
MutatorLock
::WriteLock()
in WriteLock()
69
LOG(DEBUG, RUNTIME) << "
MutatorLock
::WriteLock";
in WriteLock()
73
bool
MutatorLock
::TryReadLock()
in TryReadLock()
76
LOG(DEBUG, RUNTIME) << "
MutatorLock
::TryReadLock";
in TryReadLock()
83
bool
MutatorLock
::TryWriteLock()
in TryWriteLock()
86
LOG(DEBUG, RUNTIME) << "
MutatorLock
in TryWriteLock()
[all...]
H
A
D
compiler.h
51
struct ScopedMutatorLock : public os::memory::ReadLockHolder<
MutatorLock
> {
52
ScopedMutatorLock() : os::memory::ReadLockHolder<
MutatorLock
>(*PandaVM::GetCurrent()->GetMutatorLock()) {}
in ScopedMutatorLock()
H
A
D
thread.cpp
492
// thread_frame_states_ should not be accessed without
MutatorLock
(as runtime could have been destroyed)
in NativeCodeEnd()
510
// thread_frame_states_ should not be accessed without
MutatorLock
(as runtime could have been destroyed)
in ManagedCodeBegin()
660
(GetMutatorLock()->GetState() !=
MutatorLock
::MutatorLockState::UNLOCKED);
in TestLockState()
/arkcompiler/ets_runtime/ecmascript/daemon/
H
A
D
daemon_thread.h
77
MutatorLock
::MutatorLockState GetMutatorLockState() const;
78
void SetMutatorLockState(
MutatorLock
::MutatorLockState newState);
107
MutatorLock
::MutatorLockState mutatorLockState_ =
MutatorLock
::MutatorLockState::UNLOCKED;
H
A
D
daemon_thread.cpp
172
MutatorLock
::MutatorLockState DaemonThread::GetMutatorLockState() const
in GetMutatorLockState()
177
void DaemonThread::SetMutatorLockState(
MutatorLock
::MutatorLockState newState)
in SetMutatorLockState()
/arkcompiler/runtime_core/static_core/runtime/include/
H
A
D
locks.h
24
class PANDA_PUBLIC_API
MutatorLock
: public os::memory::RWLock {
class
49
static
MutatorLock
*NewMutatorLock();
H
A
D
thread.h
286
MutatorLock
*GetMutatorLock()
in GetMutatorLock()
291
const
MutatorLock
*GetMutatorLock() const
in GetMutatorLock()
318
MutatorLock
::MutatorLockState GetLockState() const
in GetLockState()
323
void SetLockState(
MutatorLock
::MutatorLockState state)
in SetLockState()
390
MutatorLock
*mutatorLock_;
392
MutatorLock
::MutatorLockState lockState_ =
MutatorLock
::UNLOCKED;
H
A
D
panda_vm.h
216
MutatorLock
*GetMutatorLock()
in GetMutatorLock()
221
const
MutatorLock
*GetMutatorLock() const
in GetMutatorLock()
256
MutatorLock
*mutatorLock_;
/arkcompiler/runtime_core/static_core/runtime/mem/
H
A
D
rendezvous.h
46
MutatorLock
*GetMutatorLock()
in GetMutatorLock()
55
MutatorLock
*mutatorLock_;
Completed in 11 milliseconds