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:MarkType
(Results
1 - 18
of
18
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/
H
A
D
gc_third_test.cpp
268
heap->SetMarkType(
MarkType
::MARK_EDEN);
in HWTEST_F_L0()
269
ASSERT_EQ(heap->GetMarkType(),
MarkType
::MARK_EDEN);
in HWTEST_F_L0()
276
heap->SetMarkType(
MarkType
::MARK_YOUNG);
in HWTEST_F_L0()
277
ASSERT_EQ(heap->GetMarkType(),
MarkType
::MARK_YOUNG);
in HWTEST_F_L0()
284
heap->SetMarkType(
MarkType
::MARK_FULL);
in HWTEST_F_L0()
285
ASSERT_EQ(heap->GetMarkType(),
MarkType
::MARK_FULL);
in HWTEST_F_L0()
332
heap->SetMarkType(
MarkType
::MARK_FULL);
in HWTEST_F_L0()
362
heap->SetMarkType(
MarkType
::MARK_FULL);
in HWTEST_F_L0()
370
heap->SetMarkType(
MarkType
::MARK_EDEN);
in HWTEST_F_L0()
417
heap->SetMarkType(
MarkType
in HWTEST_F_L0()
[all...]
H
A
D
gc_verify_test.cpp
53
heap->SetMarkType(
MarkType
::MARK_EDEN);
in HWTEST_F_L0()
61
heap->SetMarkType(
MarkType
::MARK_YOUNG);
in HWTEST_F_L0()
69
heap->SetMarkType(
MarkType
::MARK_FULL);
in HWTEST_F_L0()
H
A
D
throw_oom_error_test.cpp
33
const_cast<Heap *>(thread->GetEcmaVM()->GetHeap())->SetMarkType(
MarkType
::MARK_FULL);
H
A
D
huge_object_test.cpp
33
const_cast<Heap *>(thread->GetEcmaVM()->GetHeap())->SetMarkType(
MarkType
::MARK_FULL);
H
A
D
read_only_space_test.cpp
41
const_cast<Heap *>(thread->GetEcmaVM()->GetHeap())->SetMarkType(
MarkType
::MARK_FULL);
H
A
D
concurrent_marking_test.cpp
158
heap->SetMarkType(
MarkType
::MARK_YOUNG);
in HWTEST_F_L0()
H
A
D
gc_first_test.cpp
352
heap->SetMarkType(
MarkType
::MARK_FULL);
in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
heap.cpp
769
markType_ =
MarkType
::MARK_YOUNG;
in Initialize()
1133
if (!GetJSThread()->IsReadyToConcurrentMark() && markType_ ==
MarkType
::MARK_FULL) {
in CollectGarbage()
1146
SetMarkType(
MarkType
::MARK_EDEN);
in CollectGarbage()
1148
if (markType_ ==
MarkType
::MARK_YOUNG) {
in CollectGarbage()
1151
if (markType_ ==
MarkType
::MARK_FULL) {
in CollectGarbage()
1160
SetMarkType(
MarkType
::MARK_YOUNG);
in CollectGarbage()
1162
if (markType_ ==
MarkType
::MARK_FULL) {
in CollectGarbage()
1172
(thread_->IsReadyToConcurrentMark() || markType_ ==
MarkType
::MARK_YOUNG) &&
in CollectGarbage()
1176
if (concurrentMarker_->IsEnabled() && markType_ ==
MarkType
::MARK_YOUNG) {
in CollectGarbage()
1184
SetMarkType(
MarkType
in CollectGarbage()
[all...]
H
A
D
mem_controller.cpp
210
void MemController::RecordAfterConcurrentMark(
MarkType
markType, const ConcurrentMarker *marker)
in RecordAfterConcurrentMark()
213
if (markType ==
MarkType
::MARK_FULL) {
in RecordAfterConcurrentMark()
215
} else if (markType ==
MarkType
::MARK_YOUNG) {
in RecordAfterConcurrentMark()
217
} else if (markType ==
MarkType
::MARK_EDEN) {
in RecordAfterConcurrentMark()
H
A
D
heap.h
86
enum class
MarkType
: uint8_t {
class
181
MarkType
GetMarkType() const
in GetMarkType()
186
void SetMarkType(
MarkType
markType)
in SetMarkType()
193
return markType_ ==
MarkType
::MARK_EDEN;
in IsEdenMark()
198
return markType_ ==
MarkType
::MARK_YOUNG;
in IsYoungMark()
203
return markType_ ==
MarkType
::MARK_FULL;
in IsFullMark()
208
return markType_ ==
MarkType
::MARK_FULL;
in IsConcurrentFullMark()
391
MarkType
markType_ {
MarkType
::MARK_YOUNG};
H
A
D
incremental_marker.cpp
75
heap_->SetMarkType(
MarkType
::MARK_FULL);
in Initialize()
H
A
D
verification.cpp
506
case
MarkType
::MARK_EDEN:
in VerifyMark()
509
case
MarkType
::MARK_YOUNG:
in VerifyMark()
512
case
MarkType
::MARK_FULL:
in VerifyMark()
522
case
MarkType
::MARK_EDEN:
in VerifyEvacuate()
525
case
MarkType
::MARK_YOUNG:
in VerifyEvacuate()
528
case
MarkType
::MARK_FULL:
in VerifyEvacuate()
H
A
D
mem_controller.h
61
void RecordAfterConcurrentMark(
MarkType
markType, const ConcurrentMarker *marker);
H
A
D
idle_gc_trigger.cpp
63
heap_->SetMarkType(
MarkType
::MARK_FULL);
in TryTriggerLocalConcurrentMark()
H
A
D
gc_stats.cpp
586
case
MarkType
::MARK_EDEN:
in GetGCType()
588
case
MarkType
::MARK_YOUNG:
in GetGCType()
590
case
MarkType
::MARK_FULL:
in GetGCType()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/stw-gc/
H
A
D
stw-gc.h
110
enum
MarkType
: bool { DIRECT_MARK = false, REVERSE_MARK = true };
117
template <
MarkType
MARK_TYPE>
H
A
D
stw-gc.cpp
151
template <typename StwGC<LanguageConfig>::
MarkType
MARK_TYPE>
/arkcompiler/ets_runtime/ecmascript/builtins/
H
A
D
builtins_gc.cpp
134
heap->SetMarkType(
MarkType
::MARK_FULL);
in StartGC()
Completed in 14 milliseconds