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:FtraceDataReader
(Results
1 - 5
of
5
) sorted by relevance
/developtools/profiler/device/plugins/ftrace_plugin/include/
H
A
D
ftrace_data_reader.h
15
* Description:
FtraceDataReader
define
24
class
FtraceDataReader
{
class
26
explicit
FtraceDataReader
(const std::string& path);
27
~
FtraceDataReader
();
32
DISALLOW_COPY_AND_MOVE(
FtraceDataReader
);
H
A
D
flow_controller.h
108
std::vector<std::unique_ptr<
FtraceDataReader
>> ftraceReaders_ = {};
/developtools/profiler/device/plugins/ftrace_plugin/src/
H
A
D
ftrace_data_reader.cpp
15
* Description:
FtraceDataReader
implements
29
FtraceDataReader
::
FtraceDataReader
(const std::string& path) : path_(path), readFd_(-1)
in FtraceDataReader()
function in FtraceDataReader
40
FtraceDataReader
::~
FtraceDataReader
()
in ~FtraceDataReader()
45
long
FtraceDataReader
::Read(uint8_t data[], uint32_t size)
in Read()
H
A
D
flow_controller.cpp
107
auto reader = std::make_unique<
FtraceDataReader
>(FtraceFsOps::GetInstance().GetHmRawTracePath());
in CreateRawDataReaders()
121
auto reader = std::make_unique<
FtraceDataReader
>(rawPath);
in CreateRawDataReaders()
/developtools/profiler/device/plugins/ftrace_plugin/test/unittest/
H
A
D
ftrace_data_reader_test.cpp
22
using FTRACE_NS::
FtraceDataReader
;
75
* @tc.desc: test
FtraceDataReader
::Read with normal case.
80
FtraceDataReader
reader(path_);
in HWTEST_F()
Completed in 3 milliseconds