Searched refs:thread_id (Results 1 - 25 of 43) sorted by relevance

12

/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld.h37 bool Contains(SuspendedThreadID thread_id) const {
39 if (thread_ids_[i] == thread_id)
44 void Append(SuspendedThreadID thread_id) { argument
45 thread_ids_.push_back(thread_id);
/freebsd-11.0-release/contrib/compiler-rt/lib/asan/
H A Dasan_debugging.cc84 static uptr AsanGetStack(uptr addr, uptr *trace, u32 size, u32 *thread_id, argument
93 if (thread_id) *thread_id = chunk.AllocTid();
97 if (thread_id) *thread_id = chunk.FreeTid();
126 uptr __asan_get_alloc_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) { argument
127 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ true);
131 uptr __asan_get_free_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) { argument
132 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ false);
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadSpec.h88 TIDMatches (lldb::tid_t thread_id) const
90 if (m_tid == LLDB_INVALID_THREAD_ID || thread_id == LLDB_INVALID_THREAD_ID)
93 return thread_id == m_tid;
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h55 /// @param[in] thread_id
56 /// Only stop if \a thread_id hits the watchpoint.
60 lldb::tid_t thread_id = LLDB_INVALID_THREAD_ID);
173 SetThreadID(lldb::tid_t thread_id);
H A DBreakpointOptions.h64 /// @param[in] thread_id
65 /// Only stop if \a thread_id hits the breakpoint.
72 lldb::tid_t thread_id = LLDB_INVALID_THREAD_ID,
280 SetThreadID(lldb::tid_t thread_id);
H A DBreakpointLocation.h185 /// @param[in] thread_id
189 SetThreadID (lldb::tid_t thread_id);
/freebsd-11.0-release/contrib/compiler-rt/include/sanitizer/
H A Dasan_interface.h95 int *thread_id);
101 int *thread_id);
/freebsd-11.0-release/contrib/gcc/
H A Dgthr-nks.h93 objc_thread_t thread_id; local
99 thread_id = NULL;
101 thread_id = (objc_thread_t) new_thread_handle;
104 thread_id = NULL;
107 return thread_id;
H A Dgthr-posix.h283 objc_thread_t thread_id; local
290 thread_id = (objc_thread_t) new_thread_handle;
292 thread_id = NULL;
294 return thread_id;
307 pthread_t thread_id = __gthrw_(pthread_self) (); local
312 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0)
331 if (__gthrw_(pthread_setschedparam) (thread_id, policy, &params) == 0)
H A Dgthr-posix95.h249 objc_thread_t thread_id; local
256 thread_id = (objc_thread_t) new_thread_handle;
258 thread_id = NULL;
260 return thread_id;
273 pthread_t thread_id = __gthrw_(pthread_self) (); local
278 if (__gthrw_(pthread_getschedparam) (thread_id, &policy, &params) == 0)
297 if (__gthrw_(pthread_setschedparam) (thread_id, policy, &params) == 0)
H A Dgthr-dce.h158 objc_thread_t thread_id; local
168 thread_id = *(objc_thread_t *) &new_thread_handle;
172 thread_id = NULL;
174 return thread_id;
H A Dgthr-solaris.h160 objc_thread_t thread_id; local
169 thread_id = *(objc_thread_t *) &new_thread_id;
171 thread_id = NULL;
173 return thread_id;
H A Dgthr-win32.h115 DWORD thread_id = 0; local
119 arg, 0, &thread_id)))
120 thread_id = 0;
122 return (objc_thread_t) thread_id;
/freebsd-11.0-release/sys/contrib/octeon-sdk/cvmx-malloc/
H A Dthread-m.h37 typedef int thread_id; typedef
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DThreadSpec.cpp64 lldb::tid_t thread_id = thread.GetID();
65 return TIDMatches (thread_id);
H A DThreadPlanStepUntil.cpp55 lldb::user_id_t thread_id = m_thread.GetID(); local
68 return_bp->SetThreadID(thread_id);
82 until_bp->SetThreadID(thread_id);
/freebsd-11.0-release/gnu/usr.bin/gdb/kgdb/
H A Dtrgt.c289 int thread_id; local
291 thread_id = pid_to_thread_id(pid_to_ptid(tid));
292 if (thread_id == 0)
294 snprintf(buf, sizeof(buf), "%d", thread_id);
/freebsd-11.0-release/contrib/gdb/gdb/
H A Dada-tasks.c468 void *self_id, *caller, *thread_id = NULL; local
527 thread_id = GET_CURRENT_THREAD ();
581 if (thread_id)
583 printf_filtered (pt->lwp == thread_id ? "*" : " ");
585 printf_filtered (pt->thread == thread_id ? "*" : " ");
667 if (state == Runnable && (thread_id && pt->lwp == thread_id))
669 if (state == Runnable && (thread_id && pt->thread == thread_id))
H A Dcorelow.c254 int thread_id; local
260 thread_id = atoi (bfd_section_name (abfd, asect) + 5);
262 add_thread (pid_to_ptid (thread_id));
268 inferior_ptid = pid_to_ptid (thread_id); /* Yes, make it current */
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DWatchpointOptions.cpp158 WatchpointOptions::SetThreadID (lldb::tid_t thread_id) argument
160 GetThreadSpec()->SetTID(thread_id);
H A DBreakpointLocation.cpp124 BreakpointLocation::SetThreadID (lldb::tid_t thread_id) argument
126 if (thread_id != LLDB_INVALID_THREAD_ID)
127 GetLocationOptions()->SetThreadID(thread_id);
133 m_options_ap->SetThreadID (thread_id);
/freebsd-11.0-release/contrib/subversion/subversion/svnserve/
H A Dwinservice.c328 DWORD thread_id;
352 NULL, 0, &thread_id);
327 DWORD thread_id; local
/freebsd-11.0-release/contrib/gdb/gdb/gdbserver/
H A Dinferiors.c105 add_thread (int thread_id, void *target_data) argument
112 new_thread->entry.id = thread_id;
H A Dserver.h100 void add_thread (int thread_id, void *target_data);
/freebsd-11.0-release/crypto/openssl/crypto/bn/
H A Dbn_blind.c124 unsigned long thread_id; /* added in OpenSSL 0.9.6j and 0.9.7b; used member in struct:bn_blinding_st
284 return b->thread_id;
289 b->thread_id = n;

Completed in 261 milliseconds

12