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:BPFLogReader
(Results
1 - 5
of
5
) sorted by relevance
/developtools/profiler/hiebpf/src/
H
A
D
bpf_log_reader.cpp
27
BPFLogReader
::~
BPFLogReader
()
in ~BPFLogReader()
43
std::unique_ptr<
BPFLogReader
>
BPFLogReader
::MakeUnique(const std::string& logFile)
in MakeUnique()
45
std::unique_ptr<
BPFLogReader
> logReader {new(std::nothrow)
BPFLogReader
{}};
in MakeUnique()
61
std::string
BPFLogReader
::GetLogFileName() const
in GetLogFileName()
84
int
BPFLogReader
::OpenLogFile(const std::string& logFile)
in OpenLogFile()
113
int
BPFLogReader
::EnableTracePipe() const
in EnableTracePipe()
131
int
BPFLogReader
[all...]
H
A
D
bpf_controller.cpp
343
bpfLogReader_ =
BPFLogReader
::MakeUnique(config_.BPFLogFile_);
in ConfigBPFLogger()
344
CHECK_NOTNULL(bpfLogReader_, -1, "failed to initialize
BPFLogReader
");
in ConfigBPFLogger()
/developtools/profiler/hiebpf/test/unittest/
H
A
D
bpf_log_reader_test.cpp
49
* @tc.desc: Test
BPFLogReader
MakeUnique
54
auto logger =
BPFLogReader
::MakeUnique("");
in HWTEST_F()
57
logger =
BPFLogReader
::MakeUnique("stdout");
in HWTEST_F()
60
logger =
BPFLogReader
::MakeUnique(FILE_NAME);
in HWTEST_F()
66
* @tc.desc: Test
BPFLogReader
OpenLogFile
71
BPFLogReader
logger;
in HWTEST_F()
84
* @tc.desc: Test
BPFLogReader
GetLogFileName
89
BPFLogReader
logger;
in HWTEST_F()
96
* @tc.desc: Test
BPFLogReader
Start
101
BPFLogReader
logge
in HWTEST_F()
[all...]
/developtools/profiler/hiebpf/include/
H
A
D
bpf_log_reader.h
25
class
BPFLogReader
{
class
27
~
BPFLogReader
();
28
static std::unique_ptr<
BPFLogReader
> MakeUnique(const std::string& logFile = "/data/local/tmp/bpf_log.txt");
44
BPFLogReader
() = default;
H
A
D
bpf_controller.h
143
std::unique_ptr<
BPFLogReader
> bpfLogReader_ {nullptr};
Completed in 4 milliseconds