Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleSaver.cpp113 JSONThread json_thread; in BuildThreadsSection() local
114 json_thread.tid = tid; in BuildThreadsSection()
119 json_thread.ipt_trace = GetRelativePath(directory, output_file); in BuildThreadsSection()
130 json_threads.push_back(std::move(json_thread)); in BuildThreadsSection()
/llvm-project-15.0.7/lldb/examples/python/
H A Dcrashlog.py544 for json_thread in json_threads:
546 if 'name' in json_thread:
547 thread.name = json_thread['name']
548 thread.reason = json_thread['name']
549 if 'id' in json_thread:
550 thread.id = int(json_thread['id'])
551 if json_thread.get('triggered', False):
554 if 'threadState' in json_thread:
556 json_thread['threadState'])
557 if 'queue' in json_thread:
[all …]