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:kernelSymbols
(Results
1 - 8
of
8
) sorted by relevance
/developtools/profiler/device/plugins/ftrace_plugin/test/unittest/
H
A
D
kernel_symbols_parser_test.cpp
106
std::unique_ptr<KernelSymbolsParser>
kernelSymbols
= std::make_unique<KernelSymbolsParser>();
in HWTEST_F()
local
107
EXPECT_NE(
kernelSymbols
, nullptr);
in HWTEST_F()
109
kernelSymbols
->Accept(visitor);
in HWTEST_F()
112
EXPECT_TRUE(
kernelSymbols
->Parse(symbols));
in HWTEST_F()
122
std::unique_ptr<KernelSymbolsParser>
kernelSymbols
= std::make_unique<KernelSymbolsParser>();
in HWTEST_F()
local
123
EXPECT_NE(
kernelSymbols
, nullptr);
in HWTEST_F()
125
kernelSymbols
->Accept(visitor);
in HWTEST_F()
128
EXPECT_TRUE(
kernelSymbols
->Parse(symbols));
in HWTEST_F()
138
std::unique_ptr<KernelSymbolsParser>
kernelSymbols
= std::make_unique<KernelSymbolsParser>();
in HWTEST_F()
local
139
EXPECT_NE(
kernelSymbols
, nullpt
in HWTEST_F()
154
std::unique_ptr<KernelSymbolsParser>
kernelSymbols
= std::make_unique<KernelSymbolsParser>();
HWTEST_F()
local
180
std::unique_ptr<KernelSymbolsParser>
kernelSymbols
= std::make_unique<KernelSymbolsParser>();
HWTEST_F()
local
[all...]
/developtools/profiler/device/plugins/ftrace_plugin/tools/device_kernel_version/default/event_formatters/
H
A
D
ftrace_ftrace_event_formatter.cpp
33
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
34
if (
kernelSymbols
.count(msg.ip()) > 0) {
35
functionStr =
kernelSymbols
[msg.ip()];
86
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
87
if (
kernelSymbols
.count(msg.func()) > 0) {
88
functionStr =
kernelSymbols
[msg.func()];
111
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
112
if (
kernelSymbols
.count(msg.func()) > 0) {
113
functionStr =
kernelSymbols
[msg.func()];
138
auto&
kernelSymbols
[all...]
H
A
D
ftrace_timer_event_formatter.cpp
47
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
48
if (
kernelSymbols
.count(msg.function()) > 0) {
49
functionStr =
kernelSymbols
[msg.function()];
109
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
110
if (
kernelSymbols
.count(msg.function()) > 0) {
111
functionStr =
kernelSymbols
[msg.function()];
188
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
189
if (
kernelSymbols
.count(msg.function()) > 0) {
190
functionStr =
kernelSymbols
[msg.function()];
241
auto&
kernelSymbols
[all...]
H
A
D
ftrace_cpuhp_event_formatter.cpp
33
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
34
if (
kernelSymbols
.count(msg.fun()) > 0) {
35
functionStr =
kernelSymbols
[msg.fun()];
73
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
74
if (
kernelSymbols
.count(msg.fun()) > 0) {
75
functionStr =
kernelSymbols
[msg.fun()];
H
A
D
ftrace_workqueue_event_formatter.cpp
62
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
63
if (
kernelSymbols
.count(msg.function()) > 0) {
64
functionStr =
kernelSymbols
[msg.function()];
88
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
89
if (
kernelSymbols
.count(msg.function()) > 0) {
90
functionStr =
kernelSymbols
[msg.function()];
H
A
D
ftrace_sunrpc_event_formatter.cpp
192
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
193
if (
kernelSymbols
.count(msg.action()) > 0) {
194
functionStr =
kernelSymbols
[msg.action()];
233
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
234
if (
kernelSymbols
.count(msg.action()) > 0) {
235
functionStr =
kernelSymbols
[msg.action()];
276
auto&
kernelSymbols
= EventFormatter::GetInstance().kernelSymbols_;
277
if (
kernelSymbols
.count(msg.action()) > 0) {
278
functionStr =
kernelSymbols
[msg.action()];
/developtools/hiperf/test/unittest/common/native/
H
A
D
symbols_file_test.cpp
581
auto
kernelSymbols
= SymbolsFile::CreateSymbolsFile(SYMBOL_KERNEL_FILE);
in HWTEST_F()
local
582
EXPECT_EQ(
kernelSymbols
->GetVaddrInSymbols(0x001234, 0x002c5000, 0x000c5000), 0x001234U);
in HWTEST_F()
/developtools/profiler/device/plugins/native_daemon/test/unittest/common/native/
H
A
D
symbols_file_test.cpp
663
auto
kernelSymbols
= SymbolsFile::CreateSymbolsFile(SYMBOL_KERNEL_FILE);
local
664
EXPECT_EQ(
kernelSymbols
->GetVaddrInSymbols(0x001234, 0x002c5000, 0x000c5000), 0x001234U);
Completed in 6 milliseconds