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:HHLogger
(Results
1 - 4
of
4
) sorted by relevance
/developtools/profiler/hiebpf/test/unittest/
H
A
D
hhlog_test.cpp
39
* @tc.desc: Test
HHLogger
GetLogFileName
44
std::string fileName =
HHLogger
::GetInstance().GetLogFileName();
in HWTEST_F()
50
* @tc.desc: Test
HHLogger
GetFormatTime
55
std::string formatTime =
HHLogger
::GetInstance().GetFormatTime();
in HWTEST_F()
61
* @tc.desc: Test
HHLogger
UpdateTimer
66
int ret =
HHLogger
::GetInstance().UpdateTimer();
in HWTEST_F()
72
* @tc.desc: Test
HHLogger
InitLogger
77
auto ret =
HHLogger
::GetInstance().InitLogger(HHLOG_DEBUG, "");
in HWTEST_F()
80
ret =
HHLogger
::GetInstance().InitLogger(HHLOG_DEBUG, "stdout");
in HWTEST_F()
84
ret =
HHLogger
in HWTEST_F()
[all...]
/developtools/profiler/hiebpf/src/
H
A
D
hhlog.cpp
20
HHLogger
::~
HHLogger
()
in ~HHLogger()
31
int
HHLogger
::InitLogger(const int logLevel, const std::string& logFile)
in InitLogger()
74
int
HHLogger
::Start(const int logLevel, const std::string& logFile)
in Start()
89
std::string
HHLogger
::GetLogFileName() const
in GetLogFileName()
111
std::string
HHLogger
::GetFormatTime() const
in GetFormatTime()
132
int
HHLogger
::UpdateTimer()
in UpdateTimer()
143
int
HHLogger
::SaveLog()
in SaveLog()
H
A
D
hiebpf.cpp
183
// start
HHLogger
in main()
184
if (
HHLogger
::GetInstance().Start(GetHHLogLevelFromFlag(), FLAGS_hhlog_file) != 0) {
in main()
188
<< "failed to start
HHLogger
" << std::endl;
in main()
220
HHLogger
::GetInstance().LogSaver();
in main()
/developtools/profiler/hiebpf/include/
H
A
D
hhlog.h
47
class
HHLogger
{
class
49
~
HHLogger
();
50
static inline
HHLogger
& GetInstance()
in GetInstance()
52
static
HHLogger
logger {};
in GetInstance()
110
HHLogger
() = default;
127
(!
HHLogger
::GetInstance().IsStopped()) and \
128
(
HHLogger
::GetInstance().GetLogLevel() <= HHLOG_##level)) { \
130
char buffer[
HHLogger
::MAX_FORMAT_SIZE]; \
133
HHLogger
::GetInstance().PutLog("snprintf_s error!"); \
135
HHLogger
[all...]
Completed in 4 milliseconds