Home
last modified time | relevance | path

Searched refs:thread_obj (Results 1 – 3 of 3) sorted by relevance

/xnu-11215/tools/lldbmacros/
H A Dkmtriage.py31 for thread_obj in IterateQueue(t.threads, 'thread *', 'task_threads'):
33 thread_val = GetLLDBThreadForKernelThread(thread_obj)
54 print(GetThreadSummary(thread_obj))
55 print(GetThreadBackTrace(thread_obj, prefix=" ") + "\n")
H A Dxnu.py483 def GetLLDBThreadForKernelThread(thread_obj): argument
490 tid = unsigned(thread_obj.thread_id)
496 … debuglog("creating os plugin thread on the fly for {0:d} 0x{1:x}".format(tid, thread_obj))
497 lldb_process.CreateOSPluginThread(tid, unsigned(thread_obj))
503 …ettings set target.load-script-from-symbol-file true' in your .lldbinit?)".format(tid, thread_obj))
539 def GetThreadBackTrace(thread_obj, verbosity = vHUMAN, prefix = ""): argument
549 is_continuation = not bool(unsigned(thread_obj.kernel_stack))
550 thread_val = GetLLDBThreadForKernelThread(thread_obj)
552 kernel_stack = unsigned(thread_obj.kernel_stack)
553 reserved_stack = unsigned(thread_obj.reserved_stack)
[all …]
/xnu-11215/tools/lldbmacros/core/
H A Doperating_system.py748 thread_obj = { 'tid' : tid,
755 self.thread_cache[tid] = thread_obj
756 return thread_obj
766 thread_obj = { 'tid' : thread_id,
778 self.thread_cache[tid] = thread_obj
779 return thread_obj