Searched refs:new_thread (Results 1 – 6 of 6) sorted by relevance
/external/valgrind/coregrind/m_gdbserver/ |
D | inferiors.c | 100 struct thread_info *new_thread in add_thread() local 101 = (struct thread_info *) malloc (sizeof (*new_thread)); in add_thread() 103 VG_(memset) (new_thread, 0, sizeof (*new_thread)); in add_thread() 105 new_thread->entry.id = thread_id; in add_thread() 107 add_inferior_to_list (&all_threads, & new_thread->entry); in add_thread() 110 current_inferior = new_thread; in add_thread() 112 new_thread->target_data = target_data; in add_thread() 113 set_inferior_regcache_data (new_thread, new_register_cache ()); in add_thread() 114 new_thread->gdb_id = gdb_id; in add_thread()
|
/external/autotest/client/site_tests/power_Thermal/ |
D | power_Thermal.py | 107 new_thread = threading.Thread(target=self._cpu_heater) 108 self.worker_threads.append(new_thread) 109 new_thread.daemon = True 110 new_thread.start()
|
/external/valgrind/callgrind/ |
D | threads.c | 102 thread_info* new_thread(void) in new_thread() function 163 if (thread[tid] == 0) thread[tid] = new_thread(); in CLG_()
|
/external/valgrind/drd/ |
D | drd_pthread_intercepts.c | 590 void *arg, long flags, thread_t *new_thread) in thr_create_intercept() argument 614 flags, new_thread); in thr_create_intercept() 632 long flags, thread_t *new_thread), 633 (stk, stksize, start, arg, flags, new_thread));
|
/external/valgrind/helgrind/ |
D | hg_intercepts.c | 491 void *arg, long flags, thread_t *new_thread) in thr_create_WRK() argument 510 new_thread); in thr_create_WRK() 532 void *arg, long flags, thread_t *new_thread) { in PTH_FUNC() argument 533 return thr_create_WRK(stk, stksize, start, arg, flags, new_thread); in PTH_FUNC()
|
/external/valgrind/coregrind/m_syswrap/ |
D | syswrap-darwin.c | 7617 ThreadState *new_thread; in PRE() local 7628 new_thread = build_thread(regs, req->flavor, req->new_stateCnt); in PRE() 7631 hijack_thread_state(regs, req->flavor, req->new_stateCnt, new_thread); in PRE()
|