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:isEnable
(Results
1 - 3
of
3
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H
A
D
pgo_profiler_manager.h
96
std::shared_ptr<PGOProfiler> Build(EcmaVM *vm, bool
isEnable
)
in Build()
argument
98
if (
isEnable
) {
in Build()
99
isEnable
= InitializeData();
in Build()
101
auto profiler = std::make_shared<PGOProfiler>(vm,
isEnable
);
in Build()
129
void Reset(const std::shared_ptr<PGOProfiler>& profiler, bool
isEnable
)
in Reset()
argument
131
if (
isEnable
) {
in Reset()
132
isEnable
= InitializeData();
in Reset()
135
profiler->Reset(
isEnable
);
in Reset()
H
A
D
pgo_profiler.h
58
PGOProfiler(EcmaVM *vm, bool
isEnable
);
339
void Reset(bool
isEnable
);
H
A
D
pgo_profiler.cpp
1914
PGOProfiler::PGOProfiler(EcmaVM* vm, bool
isEnable
)
in PGOProfiler()
argument
1915
: nativeAreaAllocator_(std::make_unique<NativeAreaAllocator>()), vm_(vm), isEnable_(
isEnable
)
in PGOProfiler()
1927
void PGOProfiler::Reset(bool
isEnable
)
in Reset()
argument
1930
isEnable_ =
isEnable
;
in Reset()
Completed in 9 milliseconds