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:HostState
(Results
1 - 3
of
3
) sorted by relevance
/commonlibrary/ets_utils/js_concurrent_module/worker/
H
A
D
worker.h
41
enum
HostState
{ ACTIVE, INACTIVE };
enum in Commonlibrary::Concurrent::WorkerModule::Worker
383
bool UpdateHostState(
HostState
state);
577
std::atomic<
HostState
> hostState_ {ACTIVE};
H
A
D
worker.cpp
1802
bool Worker::UpdateHostState(
HostState
state)
in UpdateHostState()
1806
HostState
oldState = hostState_.load(std::memory_order_acquire);
in UpdateHostState()
/commonlibrary/ets_utils/js_concurrent_module/worker/test/
H
A
D
test_worker.cpp
223
static void UpdateHostState(Worker *worker, Worker::
HostState
state)
in UpdateHostState()
227
Worker::
HostState
oldState = worker->hostState_.load(std::memory_order_acquire);
in UpdateHostState()
259
UpdateHostState(worker, Worker::
HostState
::INACTIVE);
in RemoveGlobalCallObject()
275
UpdateHostState(worker, Worker::
HostState
::INACTIVE);
in TestHostOnMessageInner()
277
worker->UpdateHostState(Worker::
HostState
::ACTIVE);
in TestHostOnMessageInner()
278
UpdateHostState(worker, Worker::
HostState
::ACTIVE);
in TestHostOnMessageInner()
312
UpdateHostState(worker, Worker::
HostState
::INACTIVE);
in HostOnGlobalCall()
314
UpdateHostState(worker, Worker::
HostState
::ACTIVE);
in HostOnGlobalCall()
548
UpdateHostState(worker, Worker::
HostState
::INACTIVE);
in HandleGlobalCall()
550
UpdateHostState(worker, Worker::
HostState
in HandleGlobalCall()
[all...]
Completed in 10 milliseconds