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:traceWriter
(Results
1 - 5
of
5
) sorted by relevance
/developtools/profiler/device/services/profiler_service/src/
H
A
D
profiler_service.cpp
285
TraceFileWriterPtr
traceWriter
;
in CreateSession()
local
290
traceWriter
= std::make_shared<TraceFileWriter>(resultFile, sessionConfig->split_file(),
in CreateSession()
292
CHECK_POINTER_NOTNULL(
traceWriter
, "alloc TraceFileWriter failed!");
in CreateSession()
293
pluginService_->SetTraceWriter(
traceWriter
);
in CreateSession()
303
traceWriter
->SetPluginConfig(msgData.data(), msgData.size());
in CreateSession()
305
traceWriter
->Flush();
in CreateSession()
320
if (
traceWriter
!= nullptr) {
in CreateSession()
321
ctx->traceFileWriter =
traceWriter
;
in CreateSession()
/developtools/profiler/device/services/profiler_service/test/unittest/
H
A
D
plugin_service_stubs.cpp
318
void PluginService::SetTraceWriter(const TraceFileWriterPtr&
traceWriter
)
in SetTraceWriter()
argument
320
traceWriter_ =
traceWriter
;
in SetTraceWriter()
/developtools/profiler/device/services/plugin_service/include/
H
A
D
plugin_service.h
106
void SetTraceWriter(const TraceFileWriterPtr&
traceWriter
);
/developtools/profiler/device/services/plugin_service/src/
H
A
D
plugin_service.cpp
595
void PluginService::SetTraceWriter(const TraceFileWriterPtr&
traceWriter
)
in SetTraceWriter()
argument
597
traceWriter_ =
traceWriter
;
in SetTraceWriter()
/developtools/profiler/device/services/plugin_service/test/unittest/
H
A
D
plugin_service_test.cpp
145
TraceFileWriterPtr
traceWriter
= std::make_shared<TraceFileWriter>("/data/local/tmp/tracewrite.trace");
in HWTEST_F()
local
146
pluginService_->SetTraceWriter(
traceWriter
);
in HWTEST_F()
Completed in 6 milliseconds