Searched refs:thread (Results 176 - 200 of 1609) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DNativeRegisterContextRegisterInfo.h25 NativeThreadProtocol &thread,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABISysV_x86_64.h20 bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp,
25 bool GetArgumentValues(lldb_private::Thread &thread,
33 GetReturnValueObjectImpl(lldb_private::Thread &thread,
88 GetReturnValueObjectSimple(lldb_private::Thread &thread,
H A DABISysV_i386.h23 bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp,
28 bool GetArgumentValues(lldb_private::Thread &thread,
36 GetReturnValueObjectImpl(lldb_private::Thread &thread,
92 GetReturnValueObjectSimple(lldb_private::Thread &thread,
H A DABIWindows_x86_64.h20 bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp,
25 bool GetArgumentValues(lldb_private::Thread &thread,
33 GetReturnValueObjectImpl(lldb_private::Thread &thread,
87 GetReturnValueObjectSimple(lldb_private::Thread &thread,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc64.h21 bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp,
26 bool GetArgumentValues(lldb_private::Thread &thread,
34 GetReturnValueObjectImpl(lldb_private::Thread &thread,
91 GetReturnValueObjectSimple(lldb_private::Thread &thread,
H A DABISysV_ppc.h21 bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp,
26 bool GetArgumentValues(lldb_private::Thread &thread,
34 GetReturnValueObjectImpl(lldb_private::Thread &thread,
91 GetReturnValueObjectSimple(lldb_private::Thread &thread,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/
H A DABISysV_s390x.h21 bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp,
26 bool GetArgumentValues(lldb_private::Thread &thread,
34 GetReturnValueObjectImpl(lldb_private::Thread &thread,
83 GetReturnValueObjectSimple(lldb_private::Thread &thread,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips64.h21 bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp,
26 bool GetArgumentValues(lldb_private::Thread &thread,
34 GetReturnValueObjectImpl(lldb_private::Thread &thread,
95 GetReturnValueObjectSimple(lldb_private::Thread &thread,
H A DABISysV_mips.h21 bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp,
26 bool GetArgumentValues(lldb_private::Thread &thread,
34 GetReturnValueObjectImpl(lldb_private::Thread &thread,
82 GetReturnValueObjectSimple(lldb_private::Thread &thread,
/freebsd-current/sys/compat/linux/
H A Dlinux_elf.h43 void __linuxN(prepare_notes)(struct thread *, struct note_info_list *,
/freebsd-current/sys/sys/
H A Deventfd.h41 int eventfd_create_file(struct thread *td, struct file *fp, uint32_t initval,
H A Ddtrace_bsd.h37 struct thread;
66 typedef void (*dtrace_vtime_switch_func_t)(struct thread *);
168 void kdtrace_thread_ctor(struct thread *td);
169 void kdtrace_thread_dtor(struct thread *td);
/freebsd-current/sys/riscv/riscv/
H A Dunwind.c42 unwind_frame(struct thread *td, struct unwind_state *frame)
/freebsd-current/sys/i386/include/
H A Dproc.h68 void user_ldt_free(struct thread *);
/freebsd-current/sys/arm64/arm64/
H A Dunwind.c36 unwind_frame(struct thread *td, struct unwind_state *frame)
/freebsd-current/sys/arm/arm/
H A Dptrace_machdep.c39 get_arm_vfp(struct regset *rs, struct thread *td, void *buf, size_t *sizep)
51 set_arm_vfp(struct regset *rs, struct thread *td, void *buf,
69 get_arm_tls(struct regset *rs, struct thread *td, void *buf,
91 cpu_ptrace(struct thread *td, int req, void *addr, int data)
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ABI/MSP430/
H A DABISysV_msp430.h22 bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp,
27 bool GetArgumentValues(lldb_private::Thread &thread,
35 GetReturnValueObjectImpl(lldb_private::Thread &thread,
81 GetReturnValueObjectSimple(lldb_private::Thread &thread,
/freebsd-current/contrib/llvm-project/libcxx/include/__algorithm/pstl_backends/cpu_backends/
H A Dbackend.h18 # include <__algorithm/pstl_backends/cpu_backends/thread.h>
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/TraceExporter/ctf/
H A DCommandObjectThreadTraceExportCTF.cpp69 Thread *thread = m_options.m_thread_index local
75 if (thread == nullptr) {
83 Expected<TraceCursorSP> cursor = trace_sp->CreateNewCursor(*thread);
86 TraceHTR htr(*thread, **cursor);
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanCallFunction.cpp35 Thread &thread, ABI *&abi, lldb::addr_t &start_load_addr,
41 ProcessSP process_sp(thread.GetProcess());
54 m_function_sp = thread.GetRegisterContext()->GetSP() - abi->GetRedZoneSize();
80 // Checkpoint the thread state so we can restore it later.
82 ReportRegisterState("About to checkpoint thread before function call. "
85 if (!thread.CheckpointThreadState(m_stored_thread_state)) {
87 "checkpoint thread state.");
98 Thread &thread, const Address &function, const CompilerType &return_type,
100 : ThreadPlan(ThreadPlan::eKindCallFunction, "Call function plan", thread,
118 if (!ConstructorSetup(thread, ab
34 ConstructorSetup( Thread &thread, ABI *&abi, lldb::addr_t &start_load_addr, lldb::addr_t &function_load_addr) argument
97 ThreadPlanCallFunction( Thread &thread, const Address &function, const CompilerType &return_type, llvm::ArrayRef<addr_t> args, const EvaluateExpressionOptions &options) argument
130 ThreadPlanCallFunction( Thread &thread, const Address &function, const EvaluateExpressionOptions &options) argument
188 Thread &thread = GetThread(); local
379 Thread &thread = GetThread(); local
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/
H A DABISysV_arm.h21 bool PrepareTrivialCall(lldb_private::Thread &thread, lldb::addr_t sp,
25 bool GetArgumentValues(lldb_private::Thread &thread,
64 bool IsArmHardFloat(lldb_private::Thread &thread) const;
82 GetReturnValueObjectImpl(lldb_private::Thread &thread,
/freebsd-current/contrib/llvm-project/lldb/source/Symbol/
H A DFuncUnwinders.cpp61 Thread &thread) {
66 if (UnwindPlanSP plan_sp = GetSymbolFileUnwindPlan(thread))
199 UnwindPlanSP FuncUnwinders::GetSymbolFileUnwindPlan(Thread &thread) { argument
208 RegisterContextToInfo(*thread.GetRegisterContext()));
215 Thread &thread) {
236 m_range, thread, *m_unwind_plan_object_file_augmented_sp)) {
246 Thread &thread) {
277 m_range, thread, *m_unwind_plan_eh_frame_augmented_sp)) {
287 Thread &thread) {
319 m_range, thread, *m_unwind_plan_debug_frame_augmented_s
60 GetUnwindPlanAtCallSite(Target &target, Thread &thread) argument
214 GetObjectFileAugmentedUnwindPlan(Target &target, Thread &thread) argument
245 GetEHFrameAugmentedUnwindPlan(Target &target, Thread &thread) argument
286 GetDebugFrameAugmentedUnwindPlan(Target &target, Thread &thread) argument
327 GetAssemblyUnwindPlan(Target &target, Thread &thread) argument
352 CompareUnwindPlansForIdenticalInitialPCLocation( Thread &thread, const UnwindPlanSP &a, const UnwindPlanSP &b) argument
383 GetUnwindPlanAtNonCallSite(Target &target, Thread &thread) argument
434 GetUnwindPlanFastUnwind(Target &target, Thread &thread) argument
454 GetUnwindPlanArchitectureDefault(Thread &thread) argument
478 GetUnwindPlanArchitectureDefaultAtFunctionEntry(Thread &thread) argument
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/
H A Dmop.cpp16 void* thread(void *arg) { function
49 pthread_create(&th, 0, thread<T, write>, (void*)1);
50 thread<T, write>(0);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanRunToAddress.h21 ThreadPlanRunToAddress(Thread &thread, Address &address, bool stop_others);
23 ThreadPlanRunToAddress(Thread &thread, lldb::addr_t address,
26 ThreadPlanRunToAddress(Thread &thread,
/freebsd-current/contrib/netbsd-tests/lib/libpthread/
H A Dt_swapcontext.c99 pthread_t thread; local
117 PTHREAD_REQUIRE(pthread_create(&thread, NULL, threadfunc, NULL));
118 PTHREAD_REQUIRE(pthread_join(thread, NULL));

Completed in 792 milliseconds

1234567891011>>