HomeSort by: relevance | last modified time | path
    Searched refs:current_thread (Results 1 - 25 of 69) sorted by relevancy

1 2 3

  /src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan_linux.cpp 22 static THREADLOCAL ThreadContextLsanBase *current_thread = nullptr; member in namespace:__lsan
23 ThreadContextLsanBase *GetCurrentThread() { return current_thread; }
24 void SetCurrentThread(ThreadContextLsanBase *tctx) { current_thread = tctx; }
lsan_common_mac.cpp 55 ThreadContextLsanBase *current_thread; member in struct:__lsan::SeenRegion::__anon14555
66 if (data->current_thread)
81 ptr->current_thread = nullptr;
106 return data ? data->current_thread : nullptr;
110 get_tls_val(true)->current_thread = tctx;
  /src/usr.bin/mail/
thread.c 72 static struct thread_s current_thread = THREAD_INIT; /* the current thread */ variable in typeref:struct:thread_s
110 (void)printf("current_thread.t_head=%p\n", current_thread.t_head);
121 (void)printf("current_thread.t_head=%p\n", current_thread.t_head);
164 mp->m_plink->m_clink != current_thread.t_head;
234 if (msgnum < 1 || msgnum > current_thread.t_msgCount)
236 mp = current_thread.t_msgtbl[msgnum - 1];
250 return current_thread.t_msgCount;
330 return current_thread.t_head ? current_thread.t_head->m_depth : 0
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
displaced-stepping.c 52 gdb_assert (buf.current_thread != thread);
67 bool is_free = candidate.current_thread == nullptr;
141 buffer->current_thread = thread;
148 always have a thread in buffer->current_thread. */
152 buffer->current_thread = nullptr;
172 if (buf.current_thread == nullptr)
226 if (candidate.current_thread == thread)
241 /* Reset BUFFER->CURRENT_THREAD immediately to mark the buffer as available,
243 buffer->current_thread = nullptr;
287 if (buffer.current_thread != nullptr && addr == buffer.addr
    [all...]
i386-darwin-nat.c 61 thread_t current_thread = regcache->ptid ().tid (); local
75 (current_thread, x86_THREAD_STATE, (thread_state_t) & gp_regs,
81 (unsigned long) current_thread);
100 (current_thread, x86_FLOAT_STATE, (thread_state_t) & fp_regs,
106 (unsigned long) current_thread);
124 (current_thread, x86_THREAD_STATE32, (thread_state_t) &gp_regs,
130 (unsigned long) current_thread);
148 (current_thread, x86_FLOAT_STATE32, (thread_state_t) &fp_regs,
154 (unsigned long) current_thread);
177 thread_t current_thread = regcache->ptid ().tid () local
282 thread_t current_thread; local
371 thread_t current_thread; local
    [all...]
displaced-stepping.h 196 thread_info *current_thread = nullptr; member in struct:displaced_step_buffers::displaced_step_buffer
  /src/external/gpl3/gdb/dist/gdb/
displaced-stepping.c 52 gdb_assert (buf.current_thread != thread);
67 bool is_free = candidate.current_thread == nullptr;
141 buffer->current_thread = thread;
148 always have a thread in buffer->current_thread. */
152 buffer->current_thread = nullptr;
172 if (buf.current_thread == nullptr)
226 if (candidate.current_thread == thread)
241 /* Reset BUFFER->CURRENT_THREAD immediately to mark the buffer as available,
243 buffer->current_thread = nullptr;
287 if (buffer.current_thread != nullptr && addr == buffer.addr
    [all...]
i386-darwin-nat.c 61 thread_t current_thread = regcache->ptid ().tid (); local
75 (current_thread, x86_THREAD_STATE, (thread_state_t) & gp_regs,
81 (unsigned long) current_thread);
100 (current_thread, x86_FLOAT_STATE, (thread_state_t) & fp_regs,
106 (unsigned long) current_thread);
124 (current_thread, x86_THREAD_STATE32, (thread_state_t) &gp_regs,
130 (unsigned long) current_thread);
148 (current_thread, x86_FLOAT_STATE32, (thread_state_t) &fp_regs,
154 (unsigned long) current_thread);
177 thread_t current_thread = regcache->ptid ().tid () local
282 thread_t current_thread; local
371 thread_t current_thread; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbserver/
fork-child.cc 122 current_thread->last_resume_kind = resume_stop;
123 current_thread->last_status = cs.last_status;
inferiors.cc 34 thread_info *current_thread; variable
50 if (current_thread == NULL)
104 if (current_thread == thread)
393 current_thread = thread;
402 current_thread = nullptr;
424 m_thread = current_thread;
linux-low.cc 748 gdb_assert (current_thread == event_thr);
791 regcache *regcache = get_thread_regcache (current_thread);
807 regcache = get_thread_regcache (current_thread);
845 if (ptrace (PTRACE_GETSIGINFO, current_thread->id.lwp (),
897 = get_thread_regcache (current_thread);
1019 struct lwp_info *lwp = get_thread_lwp (current_thread);
1028 linux_enable_event_reporting (current_thread->id.lwp (), options);
2009 current_thread->id.lwp ());
2036 " it does", current_thread->id.lwp ());
2066 && ptrace (PTRACE_GETSIGINFO, current_thread->id.lwp ()
    [all...]
inferiors.h 128 process may be non-null while the current thread (current_thread)
144 extern thread_info *current_thread;
proc-service.cc 115 regcache = get_thread_regcache (current_thread);
linux-arm-low.cc 700 struct lwp_info *lwp = get_thread_lwp (current_thread);
709 ptrace (PTRACE_GETSIGINFO, current_thread->id.lwp (), 0, &siginfo);
735 struct lwp_info *lwp = get_thread_lwp (current_thread);
1003 unsigned long arm_hwcap = linux_get_hwcap (current_thread->id.pid (), 4);
1012 int pid = current_thread->id.lwp ();
1036 int tid = current_thread->id.lwp ();
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
ptwrite.py 39 current_thread = gdb.selected_thread()
48 current_thread.switch()
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/
ptwrite.py 39 current_thread = gdb.selected_thread()
48 current_thread.switch()
  /src/external/gpl3/gdb/dist/gdbserver/
fork-child.cc 122 current_thread->last_resume_kind = resume_stop;
123 current_thread->last_status = cs.last_status;
inferiors.cc 34 thread_info *current_thread; variable
50 if (current_thread == NULL)
104 if (current_thread == thread)
393 current_thread = thread;
402 current_thread = nullptr;
424 m_thread = current_thread;
linux-low.cc 748 gdb_assert (current_thread == event_thr);
791 regcache *regcache = get_thread_regcache (current_thread);
807 regcache = get_thread_regcache (current_thread);
845 if (ptrace (PTRACE_GETSIGINFO, current_thread->id.lwp (),
897 = get_thread_regcache (current_thread);
1018 struct lwp_info *lwp = get_thread_lwp (current_thread);
1027 linux_enable_event_reporting (current_thread->id.lwp (), options);
2008 current_thread->id.lwp ());
2035 " it does", current_thread->id.lwp ());
2065 && ptrace (PTRACE_GETSIGINFO, current_thread->id.lwp ()
    [all...]
inferiors.h 127 process may be non-null while the current thread (current_thread)
143 extern thread_info *current_thread;
proc-service.cc 115 regcache = get_thread_regcache (current_thread);
linux-loongarch-low.cc 132 loongarch_linux_get_debug_reg_capacity (current_thread->id.lwp ());
485 = loongarch_get_debug_reg_state (current_thread->id.pid ());
529 = loongarch_get_debug_reg_state (current_thread->id.pid ());
565 int pid = current_thread->id.lwp ();
577 state = loongarch_get_debug_reg_state (current_thread->id.pid ());
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/dap/
startup.py 36 _gdb_thread = threading.current_thread()
93 _dap_thread = threading.current_thread()
112 assert threading.current_thread() is _gdb_thread
123 assert threading.current_thread() is _dap_thread
191 if threading.current_thread() is _gdb_thread:
194 thread_name = threading.current_thread().name
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/dap/
startup.py 36 _gdb_thread = threading.current_thread()
93 _dap_thread = threading.current_thread()
112 assert threading.current_thread() is _gdb_thread
123 assert threading.current_thread() is _dap_thread
191 if threading.current_thread() is _gdb_thread:
194 thread_name = threading.current_thread().name
  /src/lib/librumpuser/
rumpfiber.c 106 static struct thread *current_thread = NULL; variable in typeref:struct:thread
124 return current_thread;
248 current_thread = next;
410 current_thread = thread;
424 current_thread->cookie = cookie;
425 return current_thread;

Completed in 72 milliseconds

1 2 3