Searched refs:tid (Results 1 - 25 of 79) sorted by path

1234

/haiku/headers/private/app/
H A DLooperList.h40 BLooper* LooperForThread(thread_id tid);
62 FindThreadPred(thread_id tid) : thread(tid) {} argument
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_ath_tx_ht.h63 struct ath_tid *tid, ath_bufhead *bf_q);
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi3945/dev/wpi/
H A Dif_wpi.c2802 uint8_t tid, type, rate; local
2813 tid = qos & IEEE80211_QOS_TID;
2816 tid = 0;
2943 tx->tid = tid;
H A Dif_wpireg.h477 uint16_t tid; member in struct:wpi_node_info
513 uint8_t tid; member in struct:wpi_cmd_data
/haiku/src/add-ons/kernel/drivers/network/wlan/marvell88w8363/dev/mwl/
H A Dif_mwlvar.h193 mwl_bastream_setup(struct mwl_bastate *bas, int tid, int txq) argument
196 bas->qos = htole16(tid | IEEE80211_QOS_ACKPOLICY_BA);
H A Dmwlhal.c121 uint8_t tid; member in struct:mwl_hal_bastream
1442 sp->tid = Tid;
1490 pCmd->BaInfo.CreateParams.Tid = sp->tid;
1564 pCmd->TID = sp->tid;
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dsecurity.h147 pid_t tid; /* thread id of thread requesting */ member in struct:SECURITY_CONTEXT
/haiku/src/apps/showimage/
H A DFilter.cpp34 thread_id tid; local
35 tid = spawn_thread(worker_thread, "filter",
37 if (tid >= 0)
38 resume_thread(tid);
/haiku/src/bin/unzip/
H A Dglobals.c75 ulg tid = GetThreadId(); local
87 threadIdTable [scan] = tid;
98 ulg tid = GetThreadId(); local
101 while (threadIdTable[scan] != tid && scan < THREADID_ENTRIES)
131 ulg tid = GetThreadId(); local
133 while (threadIdTable[scan] != tid && scan < THREADID_ENTRIES)
H A Dglobalsf.c71 ulg tid = GetThreadId(); local
83 threadIdTable [scan] = tid;
94 ulg tid = GetThreadId(); local
97 while (threadIdTable[scan] != tid && scan < THREADID_ENTRIES)
127 ulg tid = GetThreadId(); local
129 while (threadIdTable[scan] != tid && scan < THREADID_ENTRIES)
/haiku/src/kits/shared/
H A DCommandPipe.cpp184 thread_id tid = Pipe(stdOut, stdErr); local
187 return tid;
196 thread_id tid = Pipe(fStdOut, fStdErr); local
197 if (tid >= 0)
198 resume_thread(tid);
209 return tid;
218 thread_id tid = PipeAll(fStdOut); local
219 if (tid >= 0)
220 resume_thread(tid);
226 return tid;
[all...]
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_crypto.h252 uint64_t rsc, int tid);
H A Dieee80211_crypto_ccmp.c241 uint8_t *ivp, tid; local
264 tid = ieee80211_gettid(wh);
266 if (pn <= k->wk_keyrsc[tid] &&
271 ieee80211_notify_replay_failure(vap, wh, k, pn, tid);
307 k->wk_keyrsc[tid] = pn;
/haiku/src/servers/app/
H A DServerCursor.h42 void SetOwningTeam(team_id tid) argument
43 { fOwningTeam = tid; }
/haiku/src/servers/print/
H A DPrintServerApp.R5.cpp166 thread_id tid = spawn_thread(async_thread, "async", B_NORMAL_PRIORITY, local
169 if (tid > 0) {
170 resume_thread(tid);
H A DPrinter.cpp577 thread_id tid = spawn_thread(print_thread, "print", B_NORMAL_PRIORITY, (void*)fJob); local
578 if (tid > 0) {
581 resume_thread(tid);
/haiku/src/tests/add-ons/translators/bmptranslator/
H A DBMPTranslatorTest.cpp1083 translator_id tid, *pids = NULL; local
1088 tid = pids[0];
1095 CPPUNIT_ASSERT(proster->GetConfigurationMessage(tid, &msg) == B_OK);
/haiku/src/tests/add-ons/translators/stxttranslator/
H A DSTXTTranslatorTest.cpp399 translator_id tid, *pids = NULL; local
404 tid = pids[0];
411 CPPUNIT_ASSERT(proster->GetConfigurationMessage(tid, &msg) == B_OK);
/haiku/src/tests/kits/app/bhandler/
H A DLockLooperTest.cpp81 thread_id tid = spawn_thread(LockLooperThreadFunc, "LockLooperHelperThread", local
83 resume_thread(tid);
H A DLockLooperWithTimeoutTest.cpp85 thread_id tid = spawn_thread(LockLooperThreadFunc, "LockLooperHelperThread", local
87 resume_thread(tid);
/haiku/src/tests/kits/app/blooper/
H A DLooperForThreadTest.cpp23 @case tid is valid
28 thread_id tid = Looper->Run(); local
29 CPPUNIT_ASSERT(Looper == BLooper::LooperForThread(tid));
36 @case tid is not valid
H A DRunTest.cpp44 thread_id tid = Looper->Run(); local
45 CPPUNIT_ASSERT(tid == Looper->Thread());
/haiku/src/tests/kits/net/
H A DNetEndpointTest.cpp337 thread_id tid = spawn_thread(testClient, "client", B_NORMAL_PRIORITY, NULL); local
338 if (tid < 0) {
339 fprintf(stderr, "spawn_thread() failed: %s\n", strerror(tid));
343 testServer(tid);
346 wait_for_thread(tid, &clientStatus);
/haiku/src/tests/kits/support/barchivable/
H A DInstantiateObjectTester.cpp505 thread_id tid = find_thread(NULL); local
507 status_t err = get_thread_info(tid, &ti);
/haiku/src/tests/system/libroot/posix/
H A Dpthread_signal_test.cpp13 static pthread_t tid[4]; variable
113 pthread_kill(tid[i], SIGUSR1);
132 pthread_kill(tid[i], SIGUSR1);
157 if (pthread_create(&tid[i], &attributes, threadStart, &id[i]) != 0)

Completed in 137 milliseconds

1234