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:inBackground
(Results
1 - 7
of
7
) sorted by relevance
/arkcompiler/ets_runtime/test/fuzztest/notifyapplicationstate_fuzzer/
H
A
D
notifyapplicationstate_fuzzer.cpp
44
bool
inBackground
= false;
in NotifyApplicationStateFuzzTest()
local
46
inBackground
= true;
in NotifyApplicationStateFuzzTest()
48
DFXJSNApi::NotifyApplicationState(vm,
inBackground
);
in NotifyApplicationStateFuzzTest()
/arkcompiler/ets_runtime/ecmascript/napi/include/
H
A
D
dfx_jsnapi.h
103
static void NotifyApplicationState(EcmaVM *vm, bool
inBackground
);
/arkcompiler/ets_runtime/ecmascript/jit/
H
A
D
jit.h
90
void ChangeTaskPoolState(bool
inBackground
);
H
A
D
jit.cpp
605
void Jit::ChangeTaskPoolState(bool
inBackground
)
in ChangeTaskPoolState()
argument
608
if (
inBackground
) {
in ChangeTaskPoolState()
/arkcompiler/ets_runtime/ecmascript/napi/
H
A
D
dfx_jsnapi.cpp
521
void DFXJSNApi::NotifyApplicationState(EcmaVM *vm, bool
inBackground
)
in NotifyApplicationState()
argument
524
const_cast<ecmascript::Heap *>(vm->GetHeap())->ChangeGCParams(
inBackground
);
in NotifyApplicationState()
525
ecmascript::Jit::GetInstance()->ChangeTaskPoolState(
inBackground
);
in NotifyApplicationState()
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
heap.h
173
virtual void ChangeGCParams(bool
inBackground
) = 0;
705
void ChangeGCParams([[maybe_unused]]bool
inBackground
) override
1155
void ChangeGCParams(bool
inBackground
) override;
H
A
D
heap.cpp
2140
void Heap::ChangeGCParams(bool
inBackground
)
in ChangeGCParams()
argument
2143
inBackground_ =
inBackground
;
in ChangeGCParams()
2144
if (
inBackground
) {
in ChangeGCParams()
2145
LOG_GC(INFO) << "app is
inBackground
";
in ChangeGCParams()
2166
LOG_GC(INFO) << "app is not
inBackground
";
in ChangeGCParams()
Completed in 11 milliseconds