Home
last modified time | relevance | path

Searched refs:vmThread_ (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/base/hiviewdfx/faultloggerd/tools/process_dump/
H A Ddfx_unwind_remote.cpp100 if (process->vmThread_ == nullptr) { in UnwindProcess()
103 Printer::PrintThreadFaultStackByConfig(process, process->vmThread_, unwinder); in UnwindProcess()
131 if (ProcessDumper::GetInstance().IsCrash() && (process->vmThread_ != nullptr)) { in UnwindKeyThread()
132 unwThread = process->vmThread_; in UnwindKeyThread()
H A Dprocess_dumper.cpp306 if (isCrash_ && process_->vmThread_ != nullptr) { in Dump()
307 process_->vmThread_->Detach(); in Dump()
577 process_->vmThread_ = DfxThread::Create(request->vmPid, request->vmPid, request->vmNsPid); in InitVmThread()
578 …if ((process_->vmThread_ == nullptr) || (!process_->vmThread_->Attach(PTRACE_ATTATCH_KEY_THREAD_TI… in InitVmThread()
583 process_->vmThread_->SetThreadRegs(DfxRegs::CreateFromUcontext(request->context)); in InitVmThread()
584 process_->vmThread_->threadInfo_.threadName = std::string(request->threadName); in InitVmThread()
646 unwinder_ = std::make_shared<Unwinder>(process_->vmThread_->threadInfo_.pid); in InitUnwinder()
H A Ddfx_stack_info_formatter.cpp114 if (process_->vmThread_ != nullptr) { in GetNativeCrashInfo()
115 FillFrames(process_->vmThread_, frames); in GetNativeCrashInfo()
H A Ddfx_process.h56 std::shared_ptr<DfxThread> vmThread_ = nullptr; // comment: vm thread object in crash scenario variable
H A Dcppcrash_reporter.cpp60 …ared_ptr<DfxThread> thread = dumpMode_ == FUSION_MODE ? process_->keyThread_ : process_->vmThread_; in Format()
H A Dprinter.cpp121 …if ((request->dumpMode == SPLIT_MODE && process->vmThread_ == nullptr) || process->keyThread_ == n… in PrintReason()