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:accessors_
(Results
1 - 4
of
4
) sorted by relevance
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/
H
A
D
dfx_accessors.cpp
263
if (
accessors_
== nullptr ||
accessors_
->AccessMem == nullptr) {
in AccessMem()
266
return
accessors_
->AccessMem(addr, val, arg);
in AccessMem()
271
if (
accessors_
== nullptr ||
accessors_
->AccessReg == nullptr) {
in AccessReg()
274
return
accessors_
->AccessReg(reg, val, arg);
in AccessReg()
279
if (
accessors_
== nullptr ||
accessors_
->FindUnwindTable == nullptr) {
in FindUnwindTable()
282
return
accessors_
->FindUnwindTable(pc, uti, arg);
in FindUnwindTable()
287
if (
accessors_
in GetMapByPc()
[all...]
/base/hiviewdfx/hicollie/frameworks/native/thread_sampler/
H
A
D
thread_sampler.cpp
206
accessors_
= std::make_shared<OHOS::HiviewDFX::UnwindAccessors>();
in InitUnwinder()
207
accessors_
->AccessReg = nullptr;
in InitUnwinder()
208
accessors_
->AccessMem = &ThreadSampler::AccessMem;
in InitUnwinder()
209
accessors_
->GetMapByPc = &ThreadSampler::GetMapByPc;
in InitUnwinder()
210
accessors_
->FindUnwindTable = &ThreadSampler::FindUnwindTable;
in InitUnwinder()
211
unwinder_ = std::make_shared<Unwinder>(
accessors_
, true);
in InitUnwinder()
247
accessors_
.reset();
in DestroyUnwinder()
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/include/
H
A
D
dfx_accessors.h
84
DfxAccessorsCustomize(std::shared_ptr<UnwindAccessors> accessors) :
accessors_
(accessors) {}
in DfxAccessorsCustomize()
92
std::shared_ptr<UnwindAccessors>
accessors_
;
member in OHOS::HiviewDFX::DfxAccessorsCustomize
/base/hiviewdfx/hicollie/frameworks/native/thread_sampler/include/
H
A
D
thread_sampler.h
112
std::shared_ptr<UnwindAccessors>
accessors_
{nullptr};
Completed in 3 milliseconds