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:PartialGC
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
partial_gc.h
31
class
PartialGC
: public GarbageCollector {
class
33
explicit
PartialGC
(Heap *heap);
34
~
PartialGC
() override = default;
35
NO_COPY_SEMANTIC(
PartialGC
);
36
NO_MOVE_SEMANTIC(
PartialGC
);
H
A
D
partial_gc.cpp
26
PartialGC
::
PartialGC
(Heap *heap) : heap_(heap), workManager_(heap->GetWorkManager()) {}
in PartialGC()
function in panda::ecmascript::PartialGC
28
void
PartialGC
::RunPhases()
in RunPhases()
31
ECMA_BYTRACE_NAME(HITRACE_TAG_ARK, "
PartialGC
::RunPhases" + std::to_string(heap_->IsConcurrentFullMark())
in RunPhases()
70
void
PartialGC
::Initialize()
in Initialize()
72
ECMA_BYTRACE_NAME(HITRACE_TAG_ARK, "
PartialGC
::Initialize");
in Initialize()
96
void
PartialGC
::Finish()
in Finish()
98
ECMA_BYTRACE_NAME(HITRACE_TAG_ARK, "
PartialGC
::Finish");
in Finish()
115
void
PartialGC
::Mark()
in Mark()
117
ECMA_BYTRACE_NAME(HITRACE_TAG_ARK, "
PartialGC
in Mark()
[all...]
H
A
D
heap.h
56
class
PartialGC
;
994
PartialGC
*GetPartialGC() const
in GetPartialGC()
1692
PartialGC
*partialGC_ {nullptr};
H
A
D
heap.cpp
776
partialGC_ = new
PartialGC
(this);
in Initialize()
Completed in 7 milliseconds