| /src/external/gpl3/gdb.old/dist/gdb/nat/ |
| riscv-linux-tdesc.h | 24 /* Determine XLEN and FLEN for the LWP identified by TID, and return a 26 struct riscv_gdbarch_features riscv_linux_read_features (int tid);
|
| aarch64-scalable-linux-ptrace.h | 41 /* Return true if there is an active SVE state in TID. 43 bool aarch64_has_sve_state (int tid); 45 /* Return true if there is an active SSVE state in TID. 47 bool aarch64_has_ssve_state (int tid); 49 /* Return true if there is an active ZA state in TID. 51 bool aarch64_has_za_state (int tid); 53 /* Given TID, read the SVE header into HEADER. 56 bool read_sve_header (int tid, struct user_sve_header &header); 58 /* Given TID, store the SVE HEADER. 61 bool write_sve_header (int tid, const struct user_sve_header &header) [all...] |
| x86-linux-tdesc.h | 28 /* Return the target description for Linux thread TID. 38 value along with other characteristics of the thread identified by TID. 48 (int tid, uint64_t *xcr0_storage, x86_xsave_layout *xsave_layout_storage);
|
| aarch64-scalable-linux-ptrace.c | 34 aarch64_has_sve_state (int tid) 38 if (!read_sve_header (tid, header)) 53 aarch64_has_ssve_state (int tid) 57 if (!read_ssve_header (tid, header)) 72 aarch64_has_za_state (int tid) 76 if (!read_za_header (tid, header)) 88 read_sve_header (int tid, struct user_sve_header &header) 95 if (ptrace (PTRACE_GETREGSET, tid, NT_ARM_SVE, &iovec) < 0) 106 write_sve_header (int tid, const struct user_sve_header &header) 113 if (ptrace (PTRACE_SETREGSET, tid, NT_ARM_SVE, &iovec) < 0 [all...] |
| aarch64-mte-linux-ptrace.h | 40 extern bool aarch64_mte_fetch_memtags (int tid, CORE_ADDR address, size_t len, 47 extern bool aarch64_mte_store_memtags (int tid, CORE_ADDR address, size_t len,
|
| /src/external/gpl3/gdb/dist/gdb/nat/ |
| riscv-linux-tdesc.h | 24 /* Determine XLEN and FLEN for the LWP identified by TID, and return a 26 struct riscv_gdbarch_features riscv_linux_read_features (int tid);
|
| aarch64-scalable-linux-ptrace.h | 41 /* Return true if there is an active SVE state in TID. 43 bool aarch64_has_sve_state (int tid); 45 /* Return true if there is an active SSVE state in TID. 47 bool aarch64_has_ssve_state (int tid); 49 /* Return true if there is an active ZA state in TID. 51 bool aarch64_has_za_state (int tid); 53 /* Given TID, read the SVE header into HEADER. 56 bool read_sve_header (int tid, struct user_sve_header &header); 58 /* Given TID, store the SVE HEADER. 61 bool write_sve_header (int tid, const struct user_sve_header &header) [all...] |
| x86-linux-tdesc.h | 28 /* Return the target description for Linux thread TID. 38 value along with other characteristics of the thread identified by TID. 48 (int tid, uint64_t *xstate_bv_storage,
|
| aarch64-scalable-linux-ptrace.c | 34 aarch64_has_sve_state (int tid) 38 if (!read_sve_header (tid, header)) 53 aarch64_has_ssve_state (int tid) 57 if (!read_ssve_header (tid, header)) 72 aarch64_has_za_state (int tid) 76 if (!read_za_header (tid, header)) 88 read_sve_header (int tid, struct user_sve_header &header) 95 if (ptrace (PTRACE_GETREGSET, tid, NT_ARM_SVE, &iovec) < 0) 106 write_sve_header (int tid, const struct user_sve_header &header) 113 if (ptrace (PTRACE_SETREGSET, tid, NT_ARM_SVE, &iovec) < 0 [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/ |
| multiple-successive-infcall.c | 39 for (int tid = 0; tid < THREADCOUNT; ++tid) 41 if (pthread_equal (threads[tid], pthread_self ())) 42 return thread_ids[tid]; 69 int tid = *((int *) args); local 80 printf ("Thread %d Result: %lu\n", tid, result); 94 for (int tid = 0; tid < THREADCOUNT; ++tid) [all...] |
| vfork-follow-child-exit.c | 47 pthread_t tid; local 49 pthread_create (&tid, NULL, f, NULL); 50 pthread_join (tid, NULL);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/ |
| multiple-successive-infcall.c | 39 for (int tid = 0; tid < THREADCOUNT; ++tid) 41 if (pthread_equal (threads[tid], pthread_self ())) 42 return thread_ids[tid]; 69 int tid = *((int *) args); local 80 printf ("Thread %d Result: %lu\n", tid, result); 94 for (int tid = 0; tid < THREADCOUNT; ++tid) [all...] |
| vfork-follow-child-exit.c | 47 pthread_t tid; local 49 pthread_create (&tid, NULL, f, NULL); 50 pthread_join (tid, NULL);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/ |
| lsan_thread.cpp | 28 static ThreadContextBase *CreateThreadContext(u32 tid) { 30 return new (mem) ThreadContext(tid); 39 ThreadContextLsanBase::ThreadContextLsanBase(int tid) 40 : ThreadContextBase(tid) {} 51 void ThreadContextLsanBase::ThreadStart(u32 tid, tid_t os_id, 53 thread_registry->StartThread(tid, os_id, thread_type, arg); 54 SetCurrentThread(tid); 83 void ThreadDetach(u32 tid) { 84 CHECK_NE(tid, kInvalidTid); 85 thread_registry->DetachThread(tid, /* arg */ nullptr) [all...] |
| lsan_thread.h | 23 explicit ThreadContextLsanBase(int tid); 31 static void ThreadStart(u32 tid, tid_t os_id, ThreadType thread_type, 48 u32 ThreadCreate(u32 tid, uptr uid, bool detached, void *arg = nullptr); 50 void ThreadDetach(u32 tid); 51 void ThreadJoin(u32 tid); 55 void SetCurrentThread(u32 tid);
|
| lsan_linux.cpp | 23 void SetCurrentThread(u32 tid) { current_thread_tid = tid; }
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_thread_registry.cc | 19 ThreadContextBase::ThreadContextBase(u32 tid) 20 : tid(tid), unique_id(0), reuse_count(), os_id(0), user_id(0), 88 // Parent tid makes no sense for the main thread. 89 if (tid != 0) 139 u32 tid = kUnknownTid; local 142 tid = tctx->tid; 144 // Allocate new thread context and tid. 145 tid = n_contexts_++ [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/ |
| non-stop.c | 56 pthread_t tid; local 61 if (pthread_create (&tid, NULL, worker, (void *) id2)) 66 return tid; 72 pthread_t tid; local 75 tid = create_thread (1); 76 pthread_join (tid, NULL);
|
| /src/external/gpl3/gdb.old/dist/gdb/unittests/ |
| ptid-selftests.c | 44 static constexpr ptid_t tid = ptid_t (1, 0, 2); variable 58 static_assert (tid.pid () == 1, "tid's pid is right"); 65 static_assert (!tid.lwp_p (), "tid's lwp_p is right"); 72 static_assert (tid.lwp () == 0, "tid's lwp is right"); 79 static_assert (tid.tid_p (), "tid's tid_p is right"); 82 /* Verify tid. * [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/ |
| non-stop.c | 56 pthread_t tid; local 61 if (pthread_create (&tid, NULL, worker, (void *) id2)) 66 return tid; 72 pthread_t tid; local 75 tid = create_thread (1); 76 pthread_join (tid, NULL);
|
| /src/external/gpl3/gdb/dist/gdb/unittests/ |
| ptid-selftests.c | 44 static constexpr ptid_t tid = ptid_t (1, 0, 2); variable 58 static_assert (tid.pid () == 1, "tid's pid is right"); 65 static_assert (!tid.lwp_p (), "tid's lwp_p is right"); 72 static_assert (tid.lwp () == 0, "tid's lwp is right"); 79 static_assert (tid.tid_p (), "tid's tid_p is right"); 82 /* Verify tid. * [all...] |
| /src/external/bsd/tmux/dist/ |
| osdep-haiku.c | 29 pid_t tid; local 32 if ((tid = tcgetpgrp(fd)) == -1) 35 if (get_team_info(tid, &tinfo) != B_OK)
|
| /src/external/mpl/bind/dist/lib/isc/ |
| tid.c | 1 /* $NetBSD: tid.c,v 1.2 2025/01/26 16:25:39 christos Exp $ */ 22 #include <isc/tid.h> 41 isc__tid_init(uint32_t tid) { 42 REQUIRE(isc__tid_local == ISC_TID_UNKNOWN || isc__tid_local == tid); 43 isc__tid_local = tid;
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_thread_registry.cpp | 18 ThreadContextBase::ThreadContextBase(u32 tid) 19 : tid(tid), unique_id(0), reuse_count(), os_id(0), user_id(0), 87 // Parent tid makes no sense for the main thread. 88 if (tid != kMainTid) 137 u32 tid = kInvalidTid; local 140 tid = tctx->tid; 142 // Allocate new thread context and tid. 143 tid = threads_.size() [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
| lsan_linux.cc | 24 void SetCurrentThread(u32 tid) { current_thread_tid = tid; }
|