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:maps_
(Results
1 - 4
of
4
) sorted by relevance
/developtools/profiler/device/plugins/native_daemon/src/
H
A
D
virtual_thread.cpp
36
for (std::size_t index = 1; index <
maps_
->size(); ++index) {
in IsSorted()
37
if ((*
maps_
)[index - 1].end > (*
maps_
)[index].begin) {
in IsSorted()
38
std::cout << "
maps_
order error:\n"
in IsSorted()
39
<< " " << (*
maps_
)[index - 1].begin << "-" << (*
maps_
)[index - 1].end
in IsSorted()
40
<< " " << (*
maps_
)[index].begin << "-" << (*
maps_
)[index].end;
in IsSorted()
55
HLOGM("try found vaddr 0x%" PRIx64 " in maps %zu ", addr,
maps_
->size());
in FindMapByAddr()
56
if (
maps_
in FindMapByAddr()
[all...]
/developtools/profiler/device/plugins/native_daemon/include/
H
A
D
virtual_thread.h
54
maps_
.back()->end = map->begin;
in AddMap()
55
map->prevMap =
maps_
.back();
in AddMap()
57
maps_
.emplace_back(map);
in AddMap()
92
return *
maps_
;
in GetMaps()
117
std::vector<std::shared_ptr<DfxMap>>*
maps_
= {};
member in OHOS::Developtools::NativeDaemon::VirtualThread
/developtools/profiler/device/plugins/hiebpf_plugin/tools/include/
H
A
D
ebpf_converter.h
53
std::map<uint32_t, std::vector<EventMaps>>
maps_
;
member in OHOS::EBPF_TOOLS::EbpfConverter
/developtools/profiler/device/plugins/hiebpf_plugin/tools/src/
H
A
D
ebpf_converter.cpp
262
auto iter =
maps_
.find(maps.pid);
in EventMapsParsing()
263
if (iter ==
maps_
.end()) {
in EventMapsParsing()
264
maps_
[maps.pid] = std::vector<EventMaps>({ maps });
in EventMapsParsing()
476
auto mapIter =
maps_
.find(pid);
in GetSymbolInfo()
477
if (mapIter ==
maps_
.end()) {
in GetSymbolInfo()
Completed in 3 milliseconds