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

123

/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBTrace.i16 lldb::tid_t thread_id);
20 lldb::tid_t thread_id);
23 lldb::tid_t thread_id);
H A DSBTraceOptions.i31 void setThreadID(lldb::tid_t thread_id);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTrace.h39 /// \param[in] thread_id
43 /// ones spawning later. The thread_id parameter can be used in
50 lldb::tid_t thread_id = LLDB_INVALID_THREAD_ID);
56 lldb::tid_t thread_id = LLDB_INVALID_THREAD_ID);
64 /// \param[in] thread_id
67 /// the same trace options. A thread_id is normally optional
79 lldb::tid_t thread_id = LLDB_INVALID_THREAD_ID);
H A DSBTraceOptions.h43 void setThreadID(lldb::tid_t thread_id);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBTrace.cpp28 size_t offset, lldb::tid_t thread_id) {
31 error, buf, size, offset, thread_id);
41 process_sp->GetData(GetTraceUID(), thread_id, buffer, offset));
47 size_t offset, lldb::tid_t thread_id) {
50 error, buf, size, offset, thread_id);
60 process_sp->GetMetaData(GetTraceUID(), thread_id, buffer, offset));
65 void SBTrace::StopTrace(SBError &error, lldb::tid_t thread_id) { argument
67 error, thread_id);
76 error.SetError(process_sp->StopTrace(GetTraceUID(), thread_id));
27 GetTraceData(SBError &error, void *buf, size_t size, size_t offset, lldb::tid_t thread_id) argument
46 GetMetaData(SBError &error, void *buf, size_t size, size_t offset, lldb::tid_t thread_id) argument
H A DSBTraceOptions.cpp117 void SBTraceOptions::setThreadID(lldb::tid_t thread_id) { argument
119 thread_id);
122 m_traceoptions_sp->setThreadID(thread_id);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_debugging.cpp49 uptr AsanGetStack(uptr addr, uptr *trace, u32 size, u32 *thread_id, argument
58 if (thread_id) *thread_id = chunk.AllocTid();
62 if (thread_id) *thread_id = chunk.FreeTid();
131 uptr __asan_get_alloc_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) { argument
132 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ true);
136 uptr __asan_get_free_stack(uptr addr, uptr *trace, uptr size, u32 *thread_id) { argument
137 return AsanGetStack(addr, trace, size, thread_id, /* alloc_stack */ false);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DTraceOptions.h42 void setThreadID(lldb::tid_t thread_id) { m_thread_id = thread_id; } argument
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadSpec.h61 bool TIDMatches(lldb::tid_t thread_id) const {
62 if (m_tid == LLDB_INVALID_THREAD_ID || thread_id == LLDB_INVALID_THREAD_ID)
65 return thread_id == m_tid;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dasan_interface.h207 /// \param thread_id [out] The thread ID of the address.
211 int *thread_id);
222 /// \param thread_id [out] The thread ID of the address.
226 int *thread_id);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h43 /// \param[in] thread_id
44 /// Only stop if \a thread_id hits the watchpoint.
46 lldb::tid_t thread_id = LLDB_INVALID_THREAD_ID);
151 void SetThreadID(lldb::tid_t thread_id);
/freebsd-11-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;
/freebsd-11-stable/sys/contrib/octeon-sdk/cvmx-malloc/
H A Dthread-m.h37 typedef int thread_id; typedef
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.h100 bool HasThreadNoLock(lldb::tid_t thread_id);
102 NativeThreadNetBSD &AddThread(lldb::tid_t thread_id);
103 void RemoveThread(lldb::tid_t thread_id);
H A DNativeProcessNetBSD.cpp754 bool NativeProcessNetBSD::HasThreadNoLock(lldb::tid_t thread_id) { argument
757 if (thread->GetID() == thread_id) {
767 NativeThreadNetBSD &NativeProcessNetBSD::AddThread(lldb::tid_t thread_id) { argument
769 LLDB_LOG(log, "pid {0} adding thread with tid {1}", GetID(), thread_id);
771 assert(thread_id > 0);
772 assert(!HasThreadNoLock(thread_id) &&
777 SetCurrentThreadID(thread_id);
779 m_threads.push_back(std::make_unique<NativeThreadNetBSD>(*this, thread_id));
783 void NativeProcessNetBSD::RemoveThread(lldb::tid_t thread_id) { argument
785 LLDB_LOG(log, "pid {0} removing thread with tid {1}", GetID(), thread_id);
[all...]
/freebsd-11-stable/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-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))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DTSanRuntime.cpp270 uint64_t thread_id =
289 thread_id_map[thread_id] = lldb_user_id;
359 dict->AddIntegerItem("thread_id", thread_sp->GetIndexID());
370 "thread_id",
408 "thread_id",
451 "thread_id",
772 ->GetValueForKey("thread_id")
778 ->GetValueForKey("thread_id")
944 int thread_id = local
945 o->GetObjectForDotSeparatedPath("thread_id")
974 int thread_id = local
982 int thread_id = local
1002 int thread_id = local
[all...]
/freebsd-11-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;
/freebsd-11-stable/contrib/subversion/subversion/svnserve/
H A Dwinservice.c328 DWORD thread_id;
352 NULL, 0, &thread_id);
327 DWORD thread_id; local
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadSpec.cpp82 lldb::tid_t thread_id = thread.GetID();
83 return TIDMatches(thread_id);

Completed in 261 milliseconds

123