Home
last modified time | relevance | path

Searched refs:json_thread (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleSaver.cpp111 JSONThread json_thread; in BuildThreadsSection() local
112 json_thread.tid = tid; in BuildThreadsSection()
117 json_thread.ipt_trace = GetRelativePath(directory, output_file); in BuildThreadsSection()
128 json_threads.push_back(std::move(json_thread)); in BuildThreadsSection()
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dcrashlog.py563 for json_thread in json_threads:
565 if 'name' in json_thread:
566 thread.name = json_thread['name']
567 thread.reason = json_thread['name']
568 if 'id' in json_thread:
569 thread.id = int(json_thread['id'])
570 if json_thread.get('triggered', False):
573 if 'threadState' in json_thread:
575 json_thread['threadState'])
576 if 'queue' in json_thread:
[all …]