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:gcStats_
(Results
1 - 6
of
6
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
gc_key_stats.cpp
46
return
gcStats_
->GetScopeDuration(GCStats::Scope::ScopeId::TotalGC) >= KEY_PAUSE_TIME;
in CheckIfKeyPauseTime()
56
SizeToIntKB(
gcStats_
->GetRecordData(RecordData::END_OBJ_SIZE)));
in AddGCStatsToKey()
58
SizeToIntKB(
gcStats_
->GetRecordData(RecordData::END_COMMIT_SIZE)));
in AddGCStatsToKey()
60
SizeToIntKB(
gcStats_
->GetRecordData(RecordData::YOUNG_ALIVE_SIZE)));
in AddGCStatsToKey()
62
SizeToIntKB(
gcStats_
->GetRecordData(RecordData::YOUNG_COMMIT_SIZE)));
in AddGCStatsToKey()
64
SizeToIntKB(
gcStats_
->GetRecordData(RecordData::OLD_ALIVE_SIZE)));
in AddGCStatsToKey()
66
SizeToIntKB(
gcStats_
->GetRecordData(RecordData::OLD_COMMIT_SIZE)));
in AddGCStatsToKey()
74
gcStats_
->GetScopeDuration(GCStats::Scope::ScopeId::TotalGC));
in AddGCStatsToKey()
76
gcStats_
->GetScopeDuration(GCStats::Scope::ScopeId::Mark));
in AddGCStatsToKey()
78
gcStats_
in AddGCStatsToKey()
[all...]
H
A
D
gc_key_stats.h
60
gcStats_
(gcStats) {}
in GCKeyStats()
126
GCStats *
gcStats_
;
member in panda::ecmascript::GCKeyStats
/arkcompiler/runtime_core/static_core/runtime/mem/
H
A
D
memory_manager.h
113
ASSERT(
gcStats_
!= nullptr);
in GetGCStats()
114
return
gcStats_
;
in GetGCStats()
137
gcStats_
(gcStats),
in MemoryManager()
148
GCStats *
gcStats_
;
member in ark::mem::MemoryManager
H
A
D
memory_manager.cpp
92
heapManager_->GetInternalAllocator()->Delete(
gcStats_
);
in ~MemoryManager()
/arkcompiler/ets_runtime/ecmascript/
H
A
D
ecma_vm.cpp
271
gcStats_
= chunk_.New<GCStats>(heap_, options_.GetLongPauseTime());
in Initialize()
272
gcKeyStats_ = chunk_.New<GCKeyStats>(heap_,
gcStats_
);
in Initialize()
375
if (
gcStats_
!= nullptr) {
in ~EcmaVM()
377
gcStats_
->PrintStatisticResult();
in ~EcmaVM()
379
chunk_.Delete(
gcStats_
);
in ~EcmaVM()
380
gcStats_
= nullptr;
in ~EcmaVM()
H
A
D
ecma_vm.h
176
return
gcStats_
;
in GetEcmaGCStats()
831
GCStats *
gcStats_
{nullptr};
Completed in 5 milliseconds