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:ThreadFlag
(Results
1 - 6
of
6
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/
H
A
D
js_thread.cpp
748
if ((oldStateAndFlags.asNonvolatileStruct.flags &
ThreadFlag
::ACTIVE_BARRIER) != 0) {
in CheckAndPassActiveBarrier()
760
ClearFlag(
ThreadFlag
::ACTIVE_BARRIER);
in PassSuspendBarrier()
1162
SetFlag(
ThreadFlag
::SUSPEND_REQUEST);
in SuspendThread()
1169
SetFlag(
ThreadFlag
::ACTIVE_BARRIER);
in SuspendThread()
1183
ClearFlag(
ThreadFlag
::SUSPEND_REQUEST);
in ResumeThread()
1274
if (LIKELY(oldStateAndFlags.asNonvolatileStruct.flags ==
ThreadFlag
::NO_FLAGS)) {
in StoreRunningState()
1284
} else if ((oldStateAndFlags.asNonvolatileStruct.flags &
ThreadFlag
::ACTIVE_BARRIER) != 0) {
in StoreRunningState()
1286
} else if ((oldStateAndFlags.asNonvolatileStruct.flags &
ThreadFlag
::SUSPEND_REQUEST) != 0) {
in StoreRunningState()
H
A
D
js_thread.h
94
enum
ThreadFlag
: uint16_t {
1333
bool f = ReadFlag(
ThreadFlag
::SUSPEND_REQUEST);
1340
return ReadFlag(
ThreadFlag
::SUSPEND_REQUEST);
1535
bool ReadFlag(
ThreadFlag
flag) const
in ReadFlag()
1542
void SetFlag(
ThreadFlag
flag)
in SetFlag()
1547
void ClearFlag(
ThreadFlag
flag)
in ClearFlag()
/arkcompiler/runtime_core/static_core/runtime/include/
H
A
D
thread.h
77
enum
ThreadFlag
{ NO_FLAGS = 0, SUSPEND_REQUEST = 2, RUNTIME_TERMINATION_REQUEST = 4, SAFEPOINT_REQUEST = 8 };
enum
383
PANDA_PUBLIC_API static
ThreadFlag
initialThreadFlag_;
H
A
D
managed_thread.h
463
NO_THREAD_SANITIZE bool ReadFlag(
ThreadFlag
flag) const
in ReadFlag()
474
void SetFlag(
ThreadFlag
flag)
in SetFlag()
482
void ClearFlag(
ThreadFlag
flag)
in ClearFlag()
/arkcompiler/runtime_core/static_core/runtime/
H
A
D
thread.cpp
139
CONSTEXPR_IN_RELEASE
ThreadFlag
GetInitialThreadFlag()
in GetInitialThreadFlag()
142
ThreadFlag
initialFlag = Runtime::GetOptions().IsRunGcEverySafepoint() ? SAFEPOINT_REQUEST : NO_FLAGS;
in GetInitialThreadFlag()
149
ThreadFlag
Thread::initialThreadFlag_ = NO_FLAGS;
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
stub_builder.cpp
124
BRANCH_UNLIKELY(Int32Equal(Int32(
ThreadFlag
::SUSPEND_REQUEST), CheckSuspend(glue)), &needSuspend, &loopEnd);
in LoopEnd()
Completed in 24 milliseconds