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

12

/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadSpec.h85 TIDMatches (lldb::tid_t thread_id) const
87 if (m_tid == LLDB_INVALID_THREAD_ID || thread_id == LLDB_INVALID_THREAD_ID)
90 return thread_id == m_tid;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h52 /// @param[in] thread_id
53 /// Only stop if \a thread_id hits the watchpoint.
57 lldb::tid_t thread_id = LLDB_INVALID_THREAD_ID);
171 SetThreadID(lldb::tid_t thread_id);
H A DBreakpointOptions.h61 /// @param[in] thread_id
62 /// Only stop if \a thread_id hits the breakpoint.
69 lldb::tid_t thread_id = LLDB_INVALID_THREAD_ID,
274 SetThreadID(lldb::tid_t thread_id);
H A DBreakpointLocation.h189 /// @param[in] thread_id
193 SetThreadID (lldb::tid_t thread_id);
/freebsd-10-stable/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-10-stable/sys/contrib/octeon-sdk/cvmx-malloc/
H A Dthread-m.h37 typedef int thread_id; typedef
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/
H A DThreadSpec.cpp66 lldb::tid_t thread_id = thread.GetID();
67 return TIDMatches (thread_id);
H A DThreadPlanStepUntil.cpp61 lldb::user_id_t thread_id = m_thread.GetID(); local
74 return_bp->SetThreadID(thread_id);
88 until_bp->SetThreadID(thread_id);
/freebsd-10-stable/gnu/usr.bin/gdb/kgdb/
H A Dtrgt.c264 int thread_id; local
266 thread_id = pid_to_thread_id(pid_to_ptid(tid));
267 if (thread_id == 0)
269 snprintf(buf, sizeof(buf), "%d", thread_id);
/freebsd-10-stable/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-10-stable/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-10-stable/contrib/llvm/tools/lldb/source/Breakpoint/
H A DWatchpointOptions.cpp161 WatchpointOptions::SetThreadID (lldb::tid_t thread_id) argument
163 GetThreadSpec()->SetTID(thread_id);
H A DBreakpointLocation.cpp119 BreakpointLocation::SetThreadID (lldb::tid_t thread_id) argument
121 if (thread_id != LLDB_INVALID_THREAD_ID)
122 GetLocationOptions()->SetThreadID(thread_id);
128 m_options_ap->SetThreadID (thread_id);
H A DBreakpointOptions.cpp205 BreakpointOptions::SetThreadID (lldb::tid_t thread_id) argument
207 GetThreadSpec()->SetTID(thread_id);
/freebsd-10-stable/contrib/subversion/subversion/svnserve/
H A Dwinservice.c328 DWORD thread_id;
352 NULL, 0, &thread_id);
327 DWORD thread_id; local
/freebsd-10-stable/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;
/freebsd-10-stable/contrib/apr/include/
H A Dapr_portable.h100 typedef thread_id apr_os_thread_t;
101 typedef thread_id apr_os_proc_t;
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
H A DSBBreakpointLocation.cpp163 SBBreakpointLocation::SetThreadID (tid_t thread_id) argument
168 m_opaque_sp->SetThreadID (thread_id);

Completed in 318 milliseconds

12