Searched refs:tid (Results 1 - 25 of 54) sorted by relevance

123

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/builtinvar/
H A Dtst.tid1.d32 * To print tid and make sure it succeeds.
41 printf("Thread id = %d \n", tid);
H A Dtst.tid.d31 * To print tid from profile
44 printf("Thread id = %d \n", tid);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dlbxtags.h66 XID tid; member in struct:_tagdata
78 extern void TagClearProxy ( XID tid, int pid );
79 extern void TagMarkProxy ( XID tid, int pid );
80 extern Bool TagProxyMarked ( XID tid, int pid );
82 extern void TagDeleteTag ( XID tid );
83 extern TagData TagGetTag ( XID tid );
H A Dlbxdata.h41 XID tid; member in struct:_fonttaginfo
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dlbxtags.h66 XID tid; member in struct:_tagdata
78 extern void TagClearProxy ( XID tid, int pid );
79 extern void TagMarkProxy ( XID tid, int pid );
80 extern Bool TagProxyMarked ( XID tid, int pid );
82 extern void TagDeleteTag ( XID tid );
83 extern TagData TagGetTag ( XID tid );
H A Dlbxdata.h41 XID tid; member in struct:_fonttaginfo
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/misc/
H A Dtst.roch.d50 (long long)curthread, pid, tid,
60 (long long) curthread, pid, tid,
68 (long long)curthread, pid, tid);
74 (long long)curthread, pid, tid, (int)arg1, (int)arg0);
80 (long long)curthread, pid, tid, arg0);
86 (long long) curthread, pid, tid, arg0);
H A Dtst.haslam.d50 @sys[tid] = sum(tid);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/proc/
H A Dlwptime.d28 /tid != 1/
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/vars/
H A Drtime.d36 pid, tid, timestamp - self->t);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/docsExamples/
H A Drtime.d49 tid, timestamp - self->t);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/proc/
H A Dtst.sigwait.c42 timer_t tid; local
48 if (timer_create(CLOCK_REALTIME, &ev, &tid) == -1) {
63 if (timer_settime(tid, TIMER_RELTIME, &ts, NULL) == -1) {
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/aggs/
H A Dtst.goodkey.d47 @counts[execname, pid, id, tid, arg0, vtimestamp ] = count();
/vbox/src/VBox/Devices/PC/ipxe/src/net/infiniband/
H A Dib_mi.c82 if ( memcmp ( &hdr->tid, &madx->mad.hdr.tid,
83 sizeof ( hdr->tid ) ) != 0 )
104 mi, ntohl ( hdr->tid[0] ), ntohl ( hdr->tid[1] ) );
148 "%04x\n", mi, ntohl ( hdr->tid[0] ), ntohl ( hdr->tid[1] ),
183 if ( ( hdr->tid[0] == 0 ) && ( hdr->tid[1] == 0 ) ) {
184 hdr->tid[
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A DtestThreadsWin32.c17 static HANDLE tid[MAX_ARGC]; variable
101 tid[i] = (HANDLE) -1;
107 tid[i] = CreateThread(NULL, 0,
109 if (tid[i] == NULL)
116 if (WaitForMultipleObjects (num_threads, tid, TRUE, INFINITE) == WAIT_FAILED)
121 ret = GetExitCodeThread (tid[i], &results[i]);
127 CloseHandle (tid[i]);
H A DtestThreads.c24 static pthread_t tid[MAX_ARGC]; variable
26 static thread_id tid[MAX_ARGC]; variable
110 tid[i] = (pthread_t) -1;
114 ret = pthread_create(&tid[i], NULL, thread_specific_data,
122 ret = pthread_join(tid[i], &results[i]);
155 tid[i] = (thread_id) -1;
159 tid[i] = spawn_thread(thread_specific_data, "xmlTestThread", B_NORMAL_PRIORITY, (void *) testfiles[i]);
160 if (tid[i] < B_OK) {
164 printf("beos_thread_create %d -> %d\n", i, tid[i]);
167 ret = wait_for_thread(tid[
[all...]
H A Dthreads.c105 thread_id tid;
119 pthread_t tid; member in struct:_xmlRMutex
126 thread_id tid;
196 tok->tid = -1;
247 tok->tid = find_thread(NULL);
269 if (tok->tid == find_thread(NULL)) {
270 tok->tid = -1;
355 if (pthread_equal(tok->tid, pthread_self())) {
366 tok->tid = pthread_self();
373 if (tok->lock->tid
[all...]
/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dthread2-r0drv-solaris.c99 thread_join(pThread->tid);
118 AssertCompile(sizeof(kt_did_t) == sizeof(pThreadInt->tid));
120 pThreadInt->tid = *pu64ThrId;
131 pThreadInt->tid = UINT64_MAX;
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_xmit.c43 struct ath_atx_tid *tid,
63 static void ath_tx_queue_tid(struct ath_txq *txq, struct ath_atx_tid *tid) argument
65 struct ath_atx_ac *ac = tid->ac;
67 if (tid->paused)
70 if (tid->sched)
73 tid->sched = 1;
74 list_add_tail(&tid->list, &ac->tid_q);
261 /* For each axq_acq entry, for each tid, try to schedule packets
267 struct ath_atx_tid *tid, *last_tid; local
282 tid
363 ath_tx_send_normal(struct ath_softc *sc, struct ath_txq *txq, struct ath_atx_tid *tid, struct list_head *bf_head) argument
553 struct ath_atx_tid *tid = NULL; local
[all...]
/vbox/src/VBox/Devices/Network/lwip/vbox/
H A Dsys_arch.c57 RTTHREAD tid; member in struct:__anon14897
103 g_aTLS[i].tid = NIL_RTTHREAD;
346 if (g_aTLS[i].tid == myself)
359 g_aTLS[id].tid = myself;
391 RTTHREAD tid; local
403 rc = RTThreadCreateF(&tid, sys_thread_adapter, &g_aTLS[id], 0,
408 tid = NIL_RTTHREAD;
411 g_aTLS[id].tid = tid;
418 return tid;
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dpthread.h51 int tid; /* Unix thread id */ member in struct:wine_pthread_thread_info
/vbox/src/VBox/Devices/Network/lwip-new/vbox/
H A Dsys_arch.c57 RTTHREAD tid; member in struct:__anon14932
107 g_aTLS[i].tid = NIL_RTTHREAD;
467 if (g_aTLS[i].tid == myself)
480 g_aTLS[id].tid = myself;
513 RTTHREAD tid; local
525 rc = RTThreadCreateF(&tid, sys_thread_adapter, &g_aTLS[id], 0,
530 tid = NIL_RTTHREAD;
533 g_aTLS[id].tid = tid;
540 return tid;
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/bthreads/
H A Dbtthread.c331 thred->md.tid = spawn_thread((thread_func)_bt_root, "moz-thread",
333 if (thred->md.tid < B_OK) {
334 PR_SetError(PR_UNKNOWN_ERROR, thred->md.tid);
339 if (resume_thread(thred->md.tid) < B_OK) {
412 wait_for_thread(thred->md.tid, &eval);
475 set_thread_priority( thred->md.tid, bePriority );
568 rv = suspend_thread( thred->md.tid );
576 rv = resume_thread( thred->md.tid );
673 thread->md.tid = tInfo.thread;
/vbox/src/VBox/Runtime/include/internal/
H A Dthread.h76 pid_t tid; member in struct:RTTHREADINT
80 uint64_t tid; member in struct:RTTHREADINT
/vbox/src/VBox/Runtime/r3/linux/
H A DRTThreadGetNativeState-linux.cpp55 RTStrPrintf(szName, sizeof(szName), "/proc/self/task/%u/stat", pThread->tid);

Completed in 89 milliseconds

123