Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleSaver.cpp101 std::vector<JSONThread> json_threads; in BuildThreadsSection() local
130 json_threads.push_back(std::move(json_thread)); in BuildThreadsSection()
132 return json_threads; in BuildThreadsSection()
308 Expected<std::vector<JSONThread>> json_threads = in BuildProcessSection() local
310 if (!json_threads) in BuildProcessSection()
311 return json_threads.takeError(); in BuildProcessSection()
321 json_threads.get(), json_modules.get()}; in BuildProcessSection()
/llvm-project-15.0.7/lldb/examples/python/
H A Dcrashlog.py542 def parse_threads(self, json_threads): argument
544 for json_thread in json_threads: