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:SUSPEND_REQUEST
(Results
1 - 6
of
6
) sorted by relevance
/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 };
enumerator
H
A
D
managed_thread.h
332
return ReadFlag(
SUSPEND_REQUEST
);
in IsSuspended()
/arkcompiler/ets_runtime/ecmascript/
H
A
D
js_thread.cpp
1162
SetFlag(ThreadFlag::
SUSPEND_REQUEST
);
in SuspendThread()
1183
ClearFlag(ThreadFlag::
SUSPEND_REQUEST
);
in ResumeThread()
1286
} else if ((oldStateAndFlags.asNonvolatileStruct.flags & ThreadFlag::
SUSPEND_REQUEST
) != 0) {
in StoreRunningState()
H
A
D
js_thread.h
96
SUSPEND_REQUEST
= 1 << 0,
1333
bool f = ReadFlag(ThreadFlag::
SUSPEND_REQUEST
);
1340
return ReadFlag(ThreadFlag::
SUSPEND_REQUEST
);
/arkcompiler/runtime_core/static_core/runtime/
H
A
D
thread.cpp
446
SetFlag(
SUSPEND_REQUEST
);
in SuspendImpl()
465
ClearFlag(
SUSPEND_REQUEST
);
in ResumeImpl()
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
stub_builder.cpp
117
return Int32And(ZExtInt16ToInt32(stateAndFlags), Int32(
SUSPEND_REQUEST
));
in CheckSuspend()
124
BRANCH_UNLIKELY(Int32Equal(Int32(ThreadFlag::
SUSPEND_REQUEST
), CheckSuspend(glue)), &needSuspend, &loopEnd);
in LoopEnd()
Completed in 26 milliseconds