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:sessionConfig
(Results
1 - 5
of
5
) sorted by relevance
/developtools/profiler/device/services/profiler_service/src/
H
A
D
profiler_service.cpp
141
if (
sessionConfig
.session_mode() == ProfilerSessionConfig::OFFLINE) {
in StartPluginSessions()
142
uint32_t sampleDuration =
sessionConfig
.sample_duration();
in StartPluginSessions()
156
if (
sessionConfig
.keep_alive_time() == 0) {
in StartPluginSessions()
171
if (
sessionConfig
.session_mode() == ProfilerSessionConfig::OFFLINE) {
in StopPluginSessions()
190
if (
sessionConfig
.session_mode() == ProfilerSessionConfig::OFFLINE) {
in StopPluginSessions()
218
sessionConfig
.set_keep_alive_time(timeout);
in SetKeepAliveTime()
224
if (
sessionConfig
.keep_alive_time() > 0 && timeoutScheduleTaskFd == -1) {
in StartSessionExpireTask()
227
sessionConfig
.keep_alive_time(), true);
in StartSessionExpireTask()
233
if (
sessionConfig
.keep_alive_time() > 0 && timeoutScheduleTaskFd != -1) {
in StopSessionExpireTask()
251
std::shared_ptr<ProfilerSessionConfig>
sessionConfig
in CreateSession()
local
[all...]
/developtools/profiler/device/cmds/src/
H
A
D
main.cpp
119
auto
sessionConfig
= request->mutable_session_config();
in MakeCreateRequest()
local
120
if (!
sessionConfig
) {
in MakeCreateRequest()
128
sessionConfig
->set_sample_duration(ks * MS_PER_S);
in MakeCreateRequest()
130
} else if (
sessionConfig
->sample_duration() <= 0) {
in MakeCreateRequest()
131
sessionConfig
->set_sample_duration(DEFAULT_SESSION_TIME_S * MS_PER_S);
in MakeCreateRequest()
134
sessionConfig
->set_result_file(outputFile);
in MakeCreateRequest()
135
} else if (
sessionConfig
->result_file() == "") {
in MakeCreateRequest()
136
sessionConfig
->set_result_file(DEFAULT_OUTPUT_FILE);
in MakeCreateRequest()
138
printf("keepSecond: %us, outputFileName: %s\n",
sessionConfig
->sample_duration() / MS_PER_S,
in MakeCreateRequest()
139
sessionConfig
in MakeCreateRequest()
[all...]
/developtools/profiler/device/services/profiler_service/test/unittest/
H
A
D
profiler_service_test.cpp
150
auto
sessionConfig
= request.mutable_session_config();
in CreateOnlineSession()
local
151
CHECK_NOTNULL(
sessionConfig
, 0, "request.mutable_session_config() return nullptr!");
in CreateOnlineSession()
153
sessionConfig
->set_session_mode(ProfilerSessionConfig::ONLINE);
in CreateOnlineSession()
170
auto
sessionConfig
= request.mutable_session_config();
in CreateOfflineSession()
local
171
CHECK_NOTNULL(
sessionConfig
, 0, "request.mutable_session_config() return nullptr!");
in CreateOfflineSession()
173
sessionConfig
->set_session_mode(ProfilerSessionConfig::OFFLINE);
in CreateOfflineSession()
174
sessionConfig
->set_result_file("trace.bin");
in CreateOfflineSession()
378
auto
sessionConfig
= request.mutable_session_config();
in HWTEST_F()
local
379
ASSERT_NE(
sessionConfig
, nullptr);
in HWTEST_F()
380
sessionConfig
in HWTEST_F()
405
auto
sessionConfig
= request.mutable_session_config();
HWTEST_F()
local
434
auto
sessionConfig
= request.mutable_session_config();
HWTEST_F()
local
556
auto
sessionConfig
= request.mutable_session_config();
HWTEST_F()
local
724
auto
sessionConfig
= request.mutable_session_config();
HWTEST_F()
local
869
auto
sessionConfig
= request.mutable_session_config();
HWTEST_F()
local
[all...]
H
A
D
profiler_service_performance_test.cpp
189
auto
sessionConfig
= createRequest.mutable_session_config();
in SetMemPluginConfig()
local
190
ProfilerSessionConfig::BufferConfig* bfs =
sessionConfig
->add_buffers();
in SetMemPluginConfig()
193
sessionConfig
->set_session_mode(ProfilerSessionConfig::ONLINE);
in SetMemPluginConfig()
206
auto
sessionConfig
= createRequest.mutable_session_config();
in SetCpuPluginConfig()
local
207
ProfilerSessionConfig::BufferConfig* bfs =
sessionConfig
->add_buffers();
in SetCpuPluginConfig()
210
sessionConfig
->set_session_mode(ProfilerSessionConfig::ONLINE);
in SetCpuPluginConfig()
218
auto
sessionConfig
= createRequest.mutable_session_config();
in SetDiskioPluginConfig()
local
219
ProfilerSessionConfig::BufferConfig* bfs =
sessionConfig
->add_buffers();
in SetDiskioPluginConfig()
222
sessionConfig
->set_session_mode(ProfilerSessionConfig::ONLINE);
in SetDiskioPluginConfig()
235
auto
sessionConfig
in SetProcessPluginConfig()
local
253
auto
sessionConfig
= createRequest.mutable_session_config();
SetHilogPluginConfig()
local
275
auto
sessionConfig
= createRequest.mutable_session_config();
SetNetworkPluginConfig()
local
[all...]
/developtools/profiler/device/services/profiler_service/include/
H
A
D
profiler_service.h
95
ProfilerSessionConfig
sessionConfig
;
member
Completed in 6 milliseconds