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:threadContext
(Results
1 - 2
of
2
) sorted by relevance
/base/hiviewdfx/faultloggerd/interfaces/innerkits/unwinder/
H
A
D
thread_context.cpp
46
void CreateContext(std::shared_ptr<ThreadContext>&
threadContext
)
in CreateContext()
argument
49
std::unique_lock<std::mutex> lock(
threadContext
->mtx);
in CreateContext()
50
if (
threadContext
->ctx == nullptr) {
in CreateContext()
51
threadContext
->ctx = new ucontext_t;
in CreateContext()
53
(void)memset_s(
threadContext
->ctx, sizeof(ucontext_t), 0, sizeof(ucontext_t));
in CreateContext()
57
void ReleaseContext(std::shared_ptr<ThreadContext>
threadContext
)
in ReleaseContext()
argument
60
std::unique_lock<std::mutex> lock(
threadContext
->mtx);
in ReleaseContext()
61
if (
threadContext
->ctx != nullptr) {
in ReleaseContext()
62
delete
threadContext
->ctx;
in ReleaseContext()
63
threadContext
in ReleaseContext()
72
auto
threadContext
= std::make_shared<ThreadContext>();
GetContextLocked()
local
167
auto
threadContext
= GetContextLocked(tid);
CollectThreadContext()
local
254
SignalRequestThread(int32_t tid, ThreadContext*
threadContext
)
SignalRequestThread()
argument
[all...]
H
A
D
unwinder.cpp
523
auto
threadContext
= LocalThreadContext::GetInstance().CollectThreadContext(tid);
in UnwindLocalWithTid()
local
525
if (
threadContext
!= nullptr &&
threadContext
->frameSz > 0) {
in UnwindLocalWithTid()
527
for (size_t i = 0; i <
threadContext
->frameSz; i++) {
in UnwindLocalWithTid()
528
pcs_.emplace_back(
threadContext
->pcs[i]);
in UnwindLocalWithTid()
530
firstFrameSp_ =
threadContext
->firstFrameSp;
in UnwindLocalWithTid()
535
if (
threadContext
== nullptr ||
threadContext
->ctx == nullptr) {
in UnwindLocalWithTid()
541
regs_ = DfxRegs::CreateFromUcontext(*(
threadContext
->ctx));
in UnwindLocalWithTid()
543
regs_->SetFromUcontext(*(
threadContext
in UnwindLocalWithTid()
[all...]
Completed in 3 milliseconds