/test/xts/acts/communication_lite/dsoftbus_hal/src/ |
H A D | discovery_service_test.c | 142 pthread_t tid; in ThreadCreateTest() local 146 pthread_create(&tid, &threadAttr, entry, 0); in ThreadCreateTest()
|
/test/xts/acts/kernel_lite/ipc_posix/signal/ |
H A D | SignalTestUtils.cpp | 230 pthread_t* tid = (pthread_t*)arg;
in ThreadFunc2() local 231 int ret = pthread_kill(*tid, SIGINT);
in ThreadFunc2()
|
/test/xts/hats/kernel/syscalls/process/processid/ |
H A D | ProcessApiTest.cpp | 299 pid_t tid = gettid(); in HWTEST_F() local 300 EXPECT_TRUE(tid >= 0); in HWTEST_F()
|
/third_party/alsa-lib/include/ |
H A D | timer.h | 145 int snd_timer_query_next_device(snd_timer_query_t *handle, snd_timer_id_t *tid); 192 int snd_timer_ginfo_set_tid(snd_timer_ginfo_t *obj, snd_timer_id_t *tid);
|
/third_party/musl/src/env/ |
H A D | __init_tls.c | 42 td->tid = td->pid = __syscall(SYS_set_tid_address, &__thread_list_lock); in __init_tp() 50 td->tid = __syscall(SYS_gettid); in __init_tp()
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath9k/ |
H A D | htc_drv_txrx.c | 388 struct ath9k_htc_sta *ista, u8 tid) in __ath9k_htc_check_tx_aggr() 393 if ((tid < ATH9K_HTC_MAX_TID) && (ista->tid_state[tid] == AGGR_STOP)) in __ath9k_htc_check_tx_aggr() 422 u8 *qc, tid; in ath9k_htc_check_tx_aggr() local 426 tid = qc[0] & 0xf; in ath9k_htc_check_tx_aggr() 428 if (__ath9k_htc_check_tx_aggr(priv, ista, tid)) { in ath9k_htc_check_tx_aggr() 429 ieee80211_start_tx_ba_session(sta, tid, 0); in ath9k_htc_check_tx_aggr() 431 ista->tid_state[tid] = AGGR_PROGRESS; in ath9k_htc_check_tx_aggr() 387 __ath9k_htc_check_tx_aggr(struct ath9k_htc_priv *priv, struct ath9k_htc_sta *ista, u8 tid) __ath9k_htc_check_tx_aggr() argument
|
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath11k/ |
H A D | hal_rx.c | 677 u32 ath11k_hal_reo_qdesc_size(u32 ba_window_size, u8 tid) in ath11k_hal_reo_qdesc_size() argument 682 if (tid != HAL_DESC_REO_NON_QOS_TID) in ath11k_hal_reo_qdesc_size() 698 void ath11k_hal_reo_qdesc_setup(void *vaddr, int tid, u32 ba_window_size, in ath11k_hal_reo_qdesc_setup() argument 710 qdesc->rx_queue_num = FIELD_PREP(HAL_RX_REO_QUEUE_RX_QUEUE_NUMBER, tid); in ath11k_hal_reo_qdesc_setup() 715 FIELD_PREP(HAL_RX_REO_QUEUE_INFO0_AC, ath11k_tid_to_ac(tid)); in ath11k_hal_reo_qdesc_setup() 720 if (ba_window_size == 1 && tid != HAL_DESC_REO_NON_QOS_TID) in ath11k_hal_reo_qdesc_setup() 752 if (tid == HAL_DESC_REO_NON_QOS_TID) in ath11k_hal_reo_qdesc_setup() 867 ppdu_info->tid = in ath11k_hal_rx_parse_mon_status_tlv()
|
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath9k/ |
H A D | htc_drv_txrx.c | 393 struct ath9k_htc_sta *ista, u8 tid) in __ath9k_htc_check_tx_aggr() 398 if ((tid < ATH9K_HTC_MAX_TID) && (ista->tid_state[tid] == AGGR_STOP)) in __ath9k_htc_check_tx_aggr() 427 u8 *qc, tid; in ath9k_htc_check_tx_aggr() local 431 tid = qc[0] & 0xf; in ath9k_htc_check_tx_aggr() 433 if (__ath9k_htc_check_tx_aggr(priv, ista, tid)) { in ath9k_htc_check_tx_aggr() 434 ieee80211_start_tx_ba_session(sta, tid, 0); in ath9k_htc_check_tx_aggr() 436 ista->tid_state[tid] = AGGR_PROGRESS; in ath9k_htc_check_tx_aggr() 392 __ath9k_htc_check_tx_aggr(struct ath9k_htc_priv *priv, struct ath9k_htc_sta *ista, u8 tid) __ath9k_htc_check_tx_aggr() argument
|
/third_party/libuv/src/win/ |
H A D | util.c | 1469 int uv_thread_getpriority(uv_thread_t tid, int* priority) { in uv_thread_getpriority() argument 1475 r = GetThreadPriority(tid); in uv_thread_getpriority() 1483 int uv_thread_setpriority(uv_thread_t tid, int priority) { in uv_thread_setpriority() argument 1488 r = SetThreadPriority(tid, THREAD_PRIORITY_HIGHEST); in uv_thread_setpriority() 1491 r = SetThreadPriority(tid, THREAD_PRIORITY_ABOVE_NORMAL); in uv_thread_setpriority() 1494 r = SetThreadPriority(tid, THREAD_PRIORITY_NORMAL); in uv_thread_setpriority() 1497 r = SetThreadPriority(tid, THREAD_PRIORITY_BELOW_NORMAL); in uv_thread_setpriority() 1500 r = SetThreadPriority(tid, THREAD_PRIORITY_LOWEST); in uv_thread_setpriority()
|
/third_party/python/Modules/ |
H A D | _threadmodule.c | 358 unsigned long tid; in rlock_acquire() local 364 tid = PyThread_get_thread_ident(); in rlock_acquire() 365 if (self->rlock_count > 0 && tid == self->rlock_owner) { in rlock_acquire() 378 self->rlock_owner = tid; in rlock_acquire() 407 unsigned long tid = PyThread_get_thread_ident(); in rlock_release() local 409 if (self->rlock_count == 0 || self->rlock_owner != tid) { in rlock_release() 492 unsigned long tid = PyThread_get_thread_ident(); in rlock_is_owned() local 494 if (self->rlock_count > 0 && self->rlock_owner == tid) { in rlock_is_owned()
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/ |
H A D | core.c | 1393 u16 tid = params->tid; in rtl_op_ampdu_action() local 1399 "IEEE80211_AMPDU_TX_START: TID:%d\n", tid); in rtl_op_ampdu_action() 1400 return rtl_tx_agg_start(hw, vif, sta, tid, ssn); in rtl_op_ampdu_action() 1405 "IEEE80211_AMPDU_TX_STOP: TID:%d\n", tid); in rtl_op_ampdu_action() 1406 return rtl_tx_agg_stop(hw, vif, sta, tid); in rtl_op_ampdu_action() 1409 "IEEE80211_AMPDU_TX_OPERATIONAL:TID:%d\n", tid); in rtl_op_ampdu_action() 1410 rtl_tx_agg_oper(hw, sta, tid); in rtl_op_ampdu_action() 1414 "IEEE80211_AMPDU_RX_START:TID:%d\n", tid); in rtl_op_ampdu_action() 1415 return rtl_rx_agg_start(hw, sta, tid); in rtl_op_ampdu_action() [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/mediatek/mt76/mt7915/ |
H A D | mac.c | 169 u8 tid = ac_to_tid[i]; in mt7915_mac_sta_poll() local 174 ieee80211_sta_register_airtime(sta, tid, tx_cur, in mt7915_mac_sta_poll() 559 status->tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK; in mt7915_mac_fill_rx() 579 u8 tid = skb->priority & IEEE80211_QOS_CTL_TID_MASK; in mt7915_mac_write_txwi() local 617 tid = (capab >> 2) & IEEE80211_QOS_CTL_TID_MASK; in mt7915_mac_write_txwi() 622 tid = FIELD_GET(IEEE80211_BAR_CTRL_TID_INFO_MASK, control); in mt7915_mac_write_txwi() 635 FIELD_PREP(MT_TXD1_TID, tid) | in mt7915_mac_write_txwi() 777 u16 fc, tid; in mt7915_tx_check_aggr() local 783 tid = FIELD_GET(MT_TXD1_TID, le32_to_cpu(txwi[1])); in mt7915_tx_check_aggr() 784 if (tid > in mt7915_tx_check_aggr() [all...] |
/kernel/linux/linux-5.10/fs/jbd2/ |
H A D | transaction.c | 174 tid_t tid = journal->j_running_transaction->t_tid; variable 178 need_to_start = !tid_geq(journal->j_commit_request, tid); 181 jbd2_log_start_commit(journal, tid); 774 tid_t tid; in jbd2__journal_restart() local 783 tid = transaction->t_tid; in jbd2__journal_restart() 798 need_to_start = !tid_geq(journal->j_commit_request, tid); in jbd2__journal_restart() 801 jbd2_log_start_commit(journal, tid); in jbd2__journal_restart() 1809 tid_t tid; in jbd2_journal_stop() local 1828 tid = transaction->t_tid; in jbd2_journal_stop() 1835 tid, handl in jbd2_journal_stop() [all...] |
/kernel/linux/linux-6.6/fs/jbd2/ |
H A D | transaction.c | 169 tid_t tid = journal->j_running_transaction->t_tid; variable 173 need_to_start = !tid_geq(journal->j_commit_request, tid); 176 jbd2_log_start_commit(journal, tid); 783 tid_t tid; in jbd2__journal_restart() local 792 tid = transaction->t_tid; in jbd2__journal_restart() 807 need_to_start = !tid_geq(journal->j_commit_request, tid); in jbd2__journal_restart() 810 jbd2_log_start_commit(journal, tid); in jbd2__journal_restart() 1830 tid_t tid; in jbd2_journal_stop() local 1849 tid = transaction->t_tid; in jbd2_journal_stop() 1856 tid, handl in jbd2_journal_stop() [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtlwifi/ |
H A D | core.c | 1413 u16 tid = params->tid; in rtl_op_ampdu_action() local 1419 "IEEE80211_AMPDU_TX_START: TID:%d\n", tid); in rtl_op_ampdu_action() 1420 return rtl_tx_agg_start(hw, vif, sta, tid, ssn); in rtl_op_ampdu_action() 1425 "IEEE80211_AMPDU_TX_STOP: TID:%d\n", tid); in rtl_op_ampdu_action() 1426 return rtl_tx_agg_stop(hw, vif, sta, tid); in rtl_op_ampdu_action() 1429 "IEEE80211_AMPDU_TX_OPERATIONAL:TID:%d\n", tid); in rtl_op_ampdu_action() 1430 rtl_tx_agg_oper(hw, sta, tid); in rtl_op_ampdu_action() 1434 "IEEE80211_AMPDU_RX_START:TID:%d\n", tid); in rtl_op_ampdu_action() 1435 return rtl_rx_agg_start(hw, sta, tid); in rtl_op_ampdu_action() [all...] |
/kernel/linux/linux-6.6/kernel/trace/ |
H A D | trace_probe.c | 317 s32 tid; in btf_type_is_char_ptr() local 319 real_type = btf_type_skip_modifiers(btf, type->type, &tid); in btf_type_is_char_ptr() 336 s32 tid; in btf_type_is_char_array() local 343 real_type = btf_type_skip_modifiers(btf, array->type, &tid); in btf_type_is_char_array() 530 s32 tid; in parse_btf_field() local 539 type = btf_type_skip_modifiers(ctx->btf, type->type, &tid); in parse_btf_field() 572 type = btf_type_skip_modifiers(ctx->btf, field->type, &tid); in parse_btf_field() 606 u32 tid; in parse_btf_arg() local 633 tid = ctx->proto->type; in parse_btf_arg() 662 tid in parse_btf_arg() [all...] |
/kernel/linux/linux-5.10/tools/perf/ |
H A D | builtin-script.c | 150 {.str = "tid", .field = PERF_OUTPUT_TID}, 715 printed += fprintf(fp, "%5d/%-5d ", sample->pid, sample->tid); in perf_sample__fprintf_start() 719 printed += fprintf(fp, "%5d ", sample->tid); in perf_sample__fprintf_start() 2222 pid_t pid, pid_t tid, u64 timestamp) in print_event_with_time() 2233 sample->tid = tid; in print_event_with_time() 2239 if (tid != -1) in print_event_with_time() 2240 thread = machine__findnew_thread(machine, pid, tid); in print_event_with_time() 2256 pid_t pid, pid_t tid) in print_event() 2258 return print_event_with_time(tool, event, sample, machine, pid, tid, in print_event() 2218 print_event_with_time(struct perf_tool *tool, union perf_event *event, struct perf_sample *sample, struct machine *machine, pid_t pid, pid_t tid, u64 timestamp) print_event_with_time() argument 2254 print_event(struct perf_tool *tool, union perf_event *event, struct perf_sample *sample, struct machine *machine, pid_t pid, pid_t tid) print_event() argument [all...] |
/kernel/linux/linux-6.6/tools/perf/ |
H A D | builtin-record.c | 102 pid_t tid; member 1181 thread_data[t].tid = -1; in record__alloc_thread_data() 1198 thread_data[t].tid = gettid(); in record__alloc_thread_data() 1476 pr_debug("threads[%d]: running on cpu%d: ", thread->tid, sched_getcpu()); in record__adjust_affinity() 1634 thread->tid = gettid(); in record__thread() 1639 thread->tid, strerror(errno)); in record__thread() 1641 pr_debug("threads[%d]: started on cpu%d\n", thread->tid, sched_getcpu()); in record__thread() 1683 thread->tid, strerror(errno)); in record__thread() 2191 pid_t tid = thread_data->tid; in record__terminate_thread() local [all...] |
/foundation/multimedia/audio_framework/services/audio_service/common/include/ |
H A D | i_audio_process.h | 72 virtual int32_t RegisterThreadPriority(uint32_t tid, const std::string &bundleName) = 0;
|
/foundation/communication/netstack/utils/napi_utils/include/ |
H A D | event_listener.h | 33 EventListener(long tid, napi_env env, std::string type, napi_value callback, bool once, bool asyncCallback);
|
/kernel/linux/linux-6.6/tools/lib/perf/include/internal/ |
H A D | evsel.h | 31 pid_t tid; member
|
/kernel/liteos_a/kernel/base/include/ |
H A D | los_info_pri.h | 44 UINT32 tid; member
|
/test/ostest/wukong/report/src/ |
H A D | sysevent_listener.cpp | 56 data.tid = static_cast<uint64_t>(sysEvent->GetTid()); in OnEvent()
|
/third_party/mesa3d/include/android_stub/log/ |
H A D | logprint.h | 62 int32_t tid; member
|
/third_party/node/test/parallel/ |
H A D | test-trace-events-async-hooks-dynamic.js | 60 threads.add(trace.tid);
|