Lines Matching refs:json_thread
544 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:
558 thread.queue = json_thread.get('queue')
559 self.parse_frames(thread, json_thread.get('frames', []))