Searched refs:sbprocess (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/lldb/tools/intel-features/intel-pt/ |
D | Decoder.cpp | 24 void Decoder::RemoveDeadProcessesAndThreads(lldb::SBProcess &sbprocess) { in RemoveDeadProcessesAndThreads() argument 25 lldb::SBTarget sbtarget = sbprocess.GetTarget(); in RemoveDeadProcessesAndThreads() 75 void Decoder::StartProcessorTrace(lldb::SBProcess &sbprocess, in StartProcessorTrace() argument 79 CheckDebuggerID(sbprocess, sberror); in StartProcessorTrace() 85 RemoveDeadProcessesAndThreads(sbprocess); in StartProcessorTrace() 91 sbprocess.GetProcessID()); in StartProcessorTrace() 128 uint32_t unique_id = sbprocess.GetUniqueID(); in StartProcessorTrace() 130 lldb::SBTrace trace = sbprocess.StartTrace(sbtraceoptions, error); in StartProcessorTrace() 135 sbprocess.GetProcessID()); in StartProcessorTrace() 139 error.GetCString(), tid, sbprocess.GetProcessID()); in StartProcessorTrace() [all …]
|
D | PTDecoder.cpp | 92 void PTDecoder::StartProcessorTrace(lldb::SBProcess &sbprocess, in StartProcessorTrace() argument 100 m_opaque_sp->StartProcessorTrace(sbprocess, sbtraceoptions, sberror); in StartProcessorTrace() 103 void PTDecoder::StopProcessorTrace(lldb::SBProcess &sbprocess, in StopProcessorTrace() argument 110 m_opaque_sp->StopProcessorTrace(sbprocess, sberror, tid); in StopProcessorTrace() 113 void PTDecoder::GetInstructionLogAtOffset(lldb::SBProcess &sbprocess, in GetInstructionLogAtOffset() argument 125 m_opaque_sp->GetInstructionLogAtOffset(sbprocess, tid, offset, count, in GetInstructionLogAtOffset() 133 void PTDecoder::GetProcessorTraceInfo(lldb::SBProcess &sbprocess, in GetProcessorTraceInfo() argument 143 m_opaque_sp->GetProcessorTraceInfo(sbprocess, tid, *trace_options_ptr, in GetProcessorTraceInfo()
|
D | Decoder.h | 159 void StartProcessorTrace(lldb::SBProcess &sbprocess, 163 void StopProcessorTrace(lldb::SBProcess &sbprocess, lldb::SBError &sberror, 166 void GetInstructionLogAtOffset(lldb::SBProcess &sbprocess, lldb::tid_t tid, 171 void GetProcessorTraceInfo(lldb::SBProcess &sbprocess, lldb::tid_t tid, 198 void CheckDebuggerID(lldb::SBProcess &sbprocess, lldb::SBError &sberror); 201 void RemoveDeadProcessesAndThreads(lldb::SBProcess &sbprocess); 214 void FetchAndDecode(lldb::SBProcess &sbprocess, lldb::tid_t tid, 220 void ReadTraceDataAndImageInfo(lldb::SBProcess &sbprocess, lldb::tid_t tid, 226 void DecodeProcessorTrace(lldb::SBProcess &sbprocess, lldb::tid_t tid,
|
D | PTDecoder.h | 183 void StartProcessorTrace(lldb::SBProcess &sbprocess, 201 void StopProcessorTrace(lldb::SBProcess &sbprocess, lldb::SBError &sberror, 237 void GetInstructionLogAtOffset(lldb::SBProcess &sbprocess, lldb::tid_t tid, 262 void GetProcessorTraceInfo(lldb::SBProcess &sbprocess, lldb::tid_t tid,
|
D | README_TOOL.txt | 140 a) void StartProcessorTrace(lldb::SBProcess &sbprocess, 148 @param[in] sbprocess : A valid process on which this operation 158 sbprocess doesn't contain this thread id, error will be returned. 206 b) void StopProcessorTrace(lldb::SBProcess &sbprocess, 213 @param[in] sbprocess : A valid process on which this operation will 217 valid thread id. If sbprocess doesn't contain the thread tid, 226 c) void GetInstructionLogAtOffset(lldb::SBProcess &sbprocess, lldb::tid_t tid, 236 @param[in] sbprocess : A valid process on which this operation 241 instruction log is desired. If sbprocess doesn't contain the 268 d) void GetProcessorTraceInfo(lldb::SBProcess &sbprocess, lldb::tid_t tid, [all …]
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBProcess.i | 458 def __init__(self, sbprocess): 459 self.sbprocess = sbprocess 462 if self.sbprocess: 463 return int(self.sbprocess.GetNumThreads()) 468 return self.sbprocess.GetThreadAtIndex(key)
|