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:phdr
(Results
1 - 3
of
3
) sorted by relevance
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/
H
A
D
dfx_elf_parser.cpp
117
PhdrType
phdr
;
in ParseProgramHeaders()
local
118
if (!Read((uintptr_t)offset, &
phdr
, sizeof(
phdr
))) {
in ParseProgramHeaders()
122
switch (
phdr
.p_type) {
in ParseProgramHeaders()
125
loadInfo.offset =
phdr
.p_offset;
in ParseProgramHeaders()
126
loadInfo.tableVaddr =
phdr
.p_vaddr;
in ParseProgramHeaders()
127
loadInfo.tableSize = static_cast<size_t>(
phdr
.p_memsz);
in ParseProgramHeaders()
128
loadInfo.align =
phdr
.p_align;
in ParseProgramHeaders()
134
ptLoads_[
phdr
.p_offset] = loadInfo;
in ParseProgramHeaders()
135
if ((
phdr
in ParseProgramHeaders()
[all...]
H
A
D
dfx_elf.cpp
883
const ElfW(Phdr) *
phdr
= info->dlpi_phdr;
in DlPhdrCb()
885
for (size_t i = 0; i < info->dlpi_phnum &&
phdr
!= nullptr; i++,
phdr
++) {
in DlPhdrCb()
886
switch (
phdr
->p_type) {
in DlPhdrCb()
888
ElfW(Addr) vaddr =
phdr
->p_vaddr + loadBase;
in DlPhdrCb()
889
if (pc >= vaddr && pc < vaddr +
phdr
->p_memsz) {
in DlPhdrCb()
890
pText =
phdr
;
in DlPhdrCb()
896
pArmExidx =
phdr
;
in DlPhdrCb()
901
pEhHdr =
phdr
;
in DlPhdrCb()
905
pDynamic =
phdr
;
in DlPhdrCb()
[all...]
H
A
D
unwinder.cpp
1384
const ElfW(Phdr) *
phdr
= info->dlpi_phdr;
in DlPhdrCallback()
1386
for (int n = info->dlpi_phnum; --n >= 0;
phdr
++) {
in DlPhdrCallback()
1387
if (
phdr
->p_type == PT_LOAD) {
in DlPhdrCallback()
1388
ElfW(Addr) vaddr =
phdr
->p_vaddr + info->dlpi_addr;
in DlPhdrCallback()
1389
if (frame->pc >= vaddr && frame->pc < vaddr +
phdr
->p_memsz) {
in DlPhdrCallback()
Completed in 5 milliseconds