Lines Matching refs:thread_ptr
201 thread_ptr = int.from_bytes(thread_ptr_bytes, "little")
203 if thread_ptr != curr_thread_ptr:
204 self.thread_ptrs.append(thread_ptr)
210 while thread_ptr is not None:
211 … thread_ptr_bytes = self.get_memory(thread_ptr + t_next_thread_offset, size_t_size)
214 thread_ptr = int.from_bytes(thread_ptr_bytes, "little")
215 if thread_ptr == 0:
216 thread_ptr = None
219 if thread_ptr != curr_thread_ptr:
220 self.thread_ptrs.append(thread_ptr)
224 thread_ptr = None
241 thread_ptr = self.thread_ptrs[thread_id - 1]
244 thread_name_next_byte = self.get_memory(thread_ptr + t_name_offset, 1)
250 … thread_name_next_byte = self.get_memory(thread_ptr + t_name_offset + index, 1)
253 thread_state_byte = self.get_memory(thread_ptr + t_state_offset, 1)
259 … thread_user_options_byte = self.get_memory(thread_ptr + t_user_options_offset, 1)
265 thread_prio_byte = self.get_memory(thread_ptr + t_prio_offset, 1)