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:MemGrowingType
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/tests/
H
A
D
gc_first_test.cpp
72
EXPECT_EQ(heap->GetMemGrowingType(),
MemGrowingType
::HIGH_THROUGHPUT);
in HWTEST_F_L0()
92
EXPECT_EQ(heap->GetMemGrowingType(),
MemGrowingType
::CONSERVATIVE);
in HWTEST_F_L0()
104
EXPECT_EQ(heap->GetMemGrowingType(),
MemGrowingType
::HIGH_THROUGHPUT);
in HWTEST_F_L0()
129
EXPECT_EQ(heap->GetMemGrowingType(),
MemGrowingType
::HIGH_THROUGHPUT);
in HWTEST_F_L0()
147
EXPECT_EQ(heap->GetMemGrowingType(),
MemGrowingType
::PRESSURE);
in HWTEST_F_L0()
159
EXPECT_EQ(heap->GetMemGrowingType(),
MemGrowingType
::PRESSURE);
in HWTEST_F_L0()
162
EXPECT_EQ(heap->GetMemGrowingType(),
MemGrowingType
::CONSERVATIVE);
in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/mem/
H
A
D
mem_controller.cpp
48
case
MemGrowingType
::HIGH_THROUGHPUT:
in CalculateGrowingFactor()
50
case
MemGrowingType
::CONSERVATIVE:
in CalculateGrowingFactor()
54
case
MemGrowingType
::PRESSURE:
in CalculateGrowingFactor()
H
A
D
heap.h
92
enum class
MemGrowingType
: uint8_t {
class
1212
MemGrowingType
GetMemGrowingType() const
in GetMemGrowingType()
1217
void SetMemGrowingType(
MemGrowingType
memGrowingType)
in SetMemGrowingType()
1756
MemGrowingType
memGrowingtype_ {
MemGrowingType
::HIGH_THROUGHPUT};
H
A
D
heap.cpp
2156
if (GetMemGrowingType() !=
MemGrowingType
::PRESSURE) {
in ChangeGCParams()
2157
SetMemGrowingType(
MemGrowingType
::CONSERVATIVE);
in ChangeGCParams()
2167
if (GetMemGrowingType() !=
MemGrowingType
::PRESSURE) {
in ChangeGCParams()
2168
SetMemGrowingType(
MemGrowingType
::HIGH_THROUGHPUT);
in ChangeGCParams()
2243
SetMemGrowingType(
MemGrowingType
::PRESSURE);
in NotifyMemoryPressure()
2246
SetMemGrowingType(
MemGrowingType
::CONSERVATIVE);
in NotifyMemoryPressure()
/arkcompiler/ets_runtime/ecmascript/napi/test/
H
A
D
dfx_jsnapi_tests.cpp
375
EXPECT_EQ(heap->GetMemGrowingType(),
MemGrowingType
::PRESSURE);
in HWTEST_F_L0()
379
EXPECT_EQ(heap->GetMemGrowingType(),
MemGrowingType
::CONSERVATIVE);
in HWTEST_F_L0()
Completed in 9 milliseconds