Lines Matching refs:thdata
1994 def InsertExclavesFrames(AllImageCatalog, json, thdata, notes, kernel_frames): argument
1995 thread_info = thdata.get('exclaves_thread_info')
2223 for tid,thdata in sorted(thlist.items()):
2226 if "thread_snapshot" not in thdata:
2229 threadsnap = thdata["thread_snapshot"]
2239 if "pth_name" in thdata:
2240 thsnap["name"] = thdata["pth_name"];
2244 if "kernel_stack_frames" in thdata:
2246 for f in thdata["kernel_stack_frames"]:
2249 InsertExclavesFrames(AllImageCatalog, j, thdata, notesBuilder, kuserframes)
2254 if "user_stack_frames" in thdata:
2256 for f in thdata["user_stack_frames"]:
2260 if "user_stacktop" in thdata:
2261 … (address,) = struct.unpack("<Q", struct.pack("B"*8, *thdata["user_stacktop"]["stack_contents"]))