/kernel/linux/linux-5.10/drivers/net/ |
H A D | gtp.c | 42 u64 tid; member 88 static inline u32 gtp0_hashfn(u64 tid) in gtp0_hashfn() argument 90 u32 *tid32 = (u32 *) &tid; in gtp0_hashfn() 94 static inline u32 gtp1u_hashfn(u32 tid) in gtp1u_hashfn() argument 96 return jhash_1word(tid, gtp_h_initval); in gtp1u_hashfn() 105 static struct pdp_ctx *gtp0_pdp_find(struct gtp_dev *gtp, u64 tid) in gtp0_pdp_find() argument 110 head = >p->tid_hash[gtp0_hashfn(tid) % gtp->hash_size]; in gtp0_pdp_find() 114 pdp->u.v0.tid == tid) in gtp0_pdp_find() 121 static struct pdp_ctx *gtp1_pdp_find(struct gtp_dev *gtp, u32 tid) in gtp1_pdp_find() argument [all...] |
/foundation/resourceschedule/frame_aware_sched/common/include/ |
H A D | rtg_interface.h | 91 int AddThreadToRtg(int tid, int grpId, int prioType = 0, bool isBlue = false); 93 int RemoveRtgThread(int tid, bool isBlue = false); 103 int SearchRtgForTid(int tid);
|
/foundation/resourceschedule/resource_schedule_service/ressched/plugins/cgroup_sched_plugin/framework/process_group/include/ |
H A D | cgroup_controller.h | 49 bool SetThreadSchedPolicy(int tid, SchedPolicy policy, bool isSetThreadGroup); 51 bool GetTaskGroup(int tid, std::string& group); 61 static bool AddTidToCgroup(int tid, int fd);
|
/kernel/linux/common_modules/ucollection/ |
H A D | unified_collection_data.h | 24 int tid; member 41 int tid; member 51 int tid; member
|
/kernel/linux/linux-6.6/include/net/ |
H A D | gtp.h | 29 __be64 tid; member 36 __be32 tid; member 43 __be32 tid; member
|
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | prctlndk.cpp | 46 pthread_t tid = PARAM_0;
in Prctl() local 47 pthread_create(&tid, nullptr, Thread, nullptr);
in Prctl() 48 pthread_join(tid, &pThreadResult);
in Prctl()
|
/third_party/elfutils/backends/ |
H A D | aarch64_initreg.c | 50 aarch64_set_initial_registers_tid (pid_t tid __attribute__ ((unused)), in aarch64_set_initial_registers_tid() 63 if (ptrace (PTRACE_GETREGSET, tid, NT_PRSTATUS, &iovec) != 0) in aarch64_set_initial_registers_tid() 80 if (ptrace (PTRACE_GETREGSET, tid, NT_FPREGSET, &iovec) != 0) in aarch64_set_initial_registers_tid()
|
H A D | arm_initreg.c | 55 arm_set_initial_registers_tid (pid_t tid __attribute__ ((unused)), in arm_set_initial_registers_tid() 64 if (ptrace (PTRACE_GETREGS, tid, NULL, &user_regs) != 0) in arm_set_initial_registers_tid() 80 if (ptrace (PTRACE_GETREGSET, tid, NT_PRSTATUS, &iovec) != 0) in arm_set_initial_registers_tid()
|
/third_party/musl/src/thread/powerpc64/ |
H A D | clone.s | 10 # tid = syscall(SYS_clone,c,b,e,f,g); 11 # if (!tid) syscall(SYS_exit, a(d)); 12 # return tid;
|
/third_party/musl/src/process/ |
H A D | _Fork.c | 21 self->tid = __syscall(SYS_gettid); in __post_Fork() 24 self->tid = __syscall(SYS_set_tid_address, &__thread_list_lock); in __post_Fork() 25 self->pid = self->tid; in __post_Fork()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_create/ |
H A D | 7-1.c | 41 timer_t tid; in main() local 68 if (timer_create(CLOCK_MONOTONIC, &ev, &tid) != 0) { in main() 73 if (timer_settime(tid, 0, &its, NULL) != 0) { in main()
|
H A D | 1-1.c | 46 timer_t tid; in main() local 73 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) { in main() 78 if (timer_settime(tid, 0, &its, NULL) != 0) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_create/speculative/ |
H A D | 5-1.c | 53 timer_t tid; in main() local 77 if (timer_create(CLOCK_REALTIME, NULL, &tid) != 0) { in main() 82 if (timer_settime(tid, 0, &its, NULL) != 0) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/ |
H A D | 5-2.c | 48 timer_t tid; in main() local 72 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) { in main() 78 if (timer_settime(tid, flags, &its, NULL) != 0) { in main()
|
H A D | 1-1.c | 48 timer_t tid; in main() local 75 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) { in main() 80 if (timer_settime(tid, 0, &its, NULL) != 0) { in main()
|
H A D | 3-1.c | 44 timer_t tid; in main() local 74 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) { in main() 79 if (timer_settime(tid, 0, &its, NULL) != 0) { in main()
|
H A D | 13-1.c | 62 timer_t tid; in main() local 70 if (timer_create(CLOCK_REALTIME, &ev, &tid) != 0) { in main() 87 if (timer_settime(tid, 0, &its, NULL) == -1) { in main()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | funlockfile.c | 63 pthread_t tid[100]; in funlockfile_0100() local 66 if (pthread_create(tid + i, NULL, child_func, NULL) != 0) { in funlockfile_0100() 72 if (pthread_join(tid[j], NULL) != 0) { in funlockfile_0100()
|
/kernel/linux/linux-5.10/net/mac80211/ |
H A D | trace.h | 104 __field(u16, tid) \ 111 __entry->tid = params->tid; \ 117 #define AMPDU_ACTION_PR_FMT STA_PR_FMT " tid %d, ssn %d, buf_size %u, amsdu %d, timeout %d action %d" 118 #define AMPDU_ACTION_PR_ARG STA_PR_ARG, __entry->tid, __entry->ssn, \ 1959 TP_PROTO(struct ieee80211_sta *sta, u16 tid), 1961 TP_ARGS(sta, tid), 1965 __field(u16, tid) 1970 __entry->tid = tid; [all...] |
/kernel/linux/linux-6.6/net/mac80211/ |
H A D | trace.h | 104 __field(u16, tid) \ 111 __entry->tid = params->tid; \ 117 #define AMPDU_ACTION_PR_FMT STA_PR_FMT " tid %d, ssn %d, buf_size %u, amsdu %d, timeout %d action %d" 118 #define AMPDU_ACTION_PR_ARG STA_PR_ARG, __entry->tid, __entry->ssn, \ 2325 __field(u8, tid) 2335 __entry->tid = txq->txq.tid; 2339 LOCAL_PR_FMT VIF_PR_FMT STA_PR_FMT " ac:%d tid:%d", 2340 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG, __entry->ac, __entry->tid [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/ |
H A D | chcr_ktls.c | 177 * @atid - connection active tid. 228 * @atid - connection active tid. 347 INIT_TP_WR_CPL(req, CPL_SET_TCB_FIELD, tx_info->tid); in chcr_set_tcb_field() 360 * Remove the tid and l2t entry and close the connection. 394 /* clear tid */ in chcr_ktls_dev_del() 395 if (tx_info->tid != -1) { in chcr_ktls_dev_del() 397 tx_info->tid, tx_info->ip_family); in chcr_ktls_dev_del() 399 xa_erase(&u_ctx->tid_list, tx_info->tid); in chcr_ktls_dev_del() 461 /* initialize tid and atid to -1, 0 is a also a valid id. */ in chcr_ktls_dev_add() 462 tx_info->tid in chcr_ktls_dev_add() 658 unsigned int atid, tid, status; chcr_ktls_cpl_act_open_rpl() local 726 u32 tid; chcr_ktls_cpl_set_tcb_rpl() local 751 __chcr_write_cpl_set_tcb_ulp(struct chcr_ktls_info *tx_info, u32 tid, void *pos, u16 word, struct sge_eth_txq *q, u64 mask, u64 val, u32 reply) __chcr_write_cpl_set_tcb_ulp() argument 807 chcr_write_cpl_set_tcb_ulp(struct chcr_ktls_info *tx_info, struct sge_eth_txq *q, u32 tid, void *pos, u16 word, u64 mask, u64 val, u32 reply) chcr_write_cpl_set_tcb_ulp() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/ |
H A D | chcr_ktls.c | 171 * @atid - connection active tid. 222 * @atid - connection active tid. 341 INIT_TP_WR_CPL(req, CPL_SET_TCB_FIELD, tx_info->tid); in chcr_set_tcb_field() 354 * Remove the tid and l2t entry and close the connection. 388 /* clear tid */ in chcr_ktls_dev_del() 389 if (tx_info->tid != -1) { in chcr_ktls_dev_del() 391 tx_info->tid, tx_info->ip_family); in chcr_ktls_dev_del() 393 xa_erase(&u_ctx->tid_list, tx_info->tid); in chcr_ktls_dev_del() 455 /* initialize tid and atid to -1, 0 is a also a valid id. */ in chcr_ktls_dev_add() 456 tx_info->tid in chcr_ktls_dev_add() 652 unsigned int atid, tid, status; chcr_ktls_cpl_act_open_rpl() local 720 u32 tid; chcr_ktls_cpl_set_tcb_rpl() local 745 __chcr_write_cpl_set_tcb_ulp(struct chcr_ktls_info *tx_info, u32 tid, void *pos, u16 word, struct sge_eth_txq *q, u64 mask, u64 val, u32 reply) __chcr_write_cpl_set_tcb_ulp() argument 801 chcr_write_cpl_set_tcb_ulp(struct chcr_ktls_info *tx_info, struct sge_eth_txq *q, u32 tid, void *pos, u16 word, u64 mask, u64 val, u32 reply) chcr_write_cpl_set_tcb_ulp() argument [all...] |
/kernel/linux/linux-6.6/net/ceph/ |
H A D | mon_client.c | 579 DEFINE_RB_FUNCS(generic_request, struct ceph_mon_generic_request, tid, node) 631 WARN_ON(req->tid); in register_generic_request() 634 req->tid = ++monc->last_tid; in register_generic_request() 641 WARN_ON(!req->tid); in send_generic_request() 643 dout("%s greq %p tid %llu\n", __func__, req, req->tid); in send_generic_request() 644 req->request->hdr.tid = cpu_to_le64(req->tid); in send_generic_request() 652 dout("%s greq %p tid %llu\n", __func__, req, req->tid); in __finish_generic_request() 712 u64 tid = le64_to_cpu(hdr->tid); get_generic_reply() local 743 u64 tid = le64_to_cpu(msg->hdr.tid); handle_statfs_reply() local 820 u64 tid = le64_to_cpu(msg->hdr.tid); handle_get_version_reply() local 945 u64 tid = le64_to_cpu(msg->hdr.tid); handle_command_ack() local [all...] |
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/linux/ |
H A D | mali_sync.c | 227 u32 tid = mali_osk_get_tid(); in timeline_print_obj() local 230 mali_spinlock_reentrant_wait(mali_tl->spinlock, tid); in timeline_print_obj() 232 mali_spinlock_reentrant_wait(system->spinlock, tid); in timeline_print_obj() 234 mali_spinlock_reentrant_signal(system->spinlock, tid); in timeline_print_obj() 236 mali_spinlock_reentrant_signal(mali_tl->spinlock, tid); in timeline_print_obj() 282 u32 tid = mali_osk_get_tid(); in timeline_value_str() local 285 mali_spinlock_reentrant_wait(mali_tl->spinlock, tid); in timeline_value_str() 287 mali_spinlock_reentrant_wait(system->spinlock, tid); in timeline_value_str() 289 mali_spinlock_reentrant_signal(system->spinlock, tid); in timeline_value_str() 291 mali_spinlock_reentrant_signal(mali_tl->spinlock, tid); in timeline_value_str() [all...] |
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/linux/ |
H A D | mali_sync.c | 222 u32 tid = _mali_osk_get_tid(); in timeline_print_obj() local 225 mali_spinlock_reentrant_wait(mali_tl->spinlock, tid); in timeline_print_obj() 227 mali_spinlock_reentrant_wait(system->spinlock, tid); in timeline_print_obj() 229 mali_spinlock_reentrant_signal(system->spinlock, tid); in timeline_print_obj() 231 mali_spinlock_reentrant_signal(mali_tl->spinlock, tid); in timeline_print_obj() 278 u32 tid = _mali_osk_get_tid(); in timeline_value_str() local 281 mali_spinlock_reentrant_wait(mali_tl->spinlock, tid); in timeline_value_str() 283 mali_spinlock_reentrant_wait(system->spinlock, tid); in timeline_value_str() 285 mali_spinlock_reentrant_signal(system->spinlock, tid); in timeline_value_str() 287 mali_spinlock_reentrant_signal(mali_tl->spinlock, tid); in timeline_value_str() [all...] |