Searched refs:hCurrentThread (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxHelpers.cpp52 DWORD hThread, hCurrentThread; local
59 hCurrentThread = GetCurrentThreadId();
60 if (hCurrentThread != hThread)
61 AttachThreadInput(hCurrentThread, hThread, TRUE);
65 if (hWin && (hCurrentThread != hThread))
66 AttachThreadInput(hCurrentThread, hThread, FALSE);
/vbox/src/VBox/Runtime/testcase/
H A DtstRTR0ThreadPreemption.cpp99 RTNATIVETHREAD hCurrentThread = RTThreadNativeSelf(); local
100 if (pData->hSourceThread != hCurrentThread)
104 pData->hSourceThread, hCurrentThread);
136 RTNATIVETHREAD hCurrentThread = RTThreadNativeSelf(); local
137 if (pData->hSourceThread != hCurrentThread)
141 pData->hSourceThread, hCurrentThread);
/vbox/include/iprt/
H A Dlockvalidator.h899 * @param hCurrentThread The current thread. Pass NIL_RTTHREAD if you're
903 RTDECL(bool) RTLockValidatorHoldsLocksInClass(RTTHREAD hCurrentThread, RTLOCKVALCLASS hClass);
911 * @param hCurrentThread The current thread. Pass NIL_RTTHREAD if you're
916 RTDECL(bool) RTLockValidatorHoldsLocksInSubClass(RTTHREAD hCurrentThread, RTLOCKVALCLASS hClass, uint32_t uSubClass);
/vbox/src/VBox/Runtime/common/misc/
H A Dlockvalidator.cpp4308 RTDECL(bool) RTLockValidatorHoldsLocksInClass(RTTHREAD hCurrentThread, RTLOCKVALCLASS hClass) argument
4311 if (hCurrentThread == NIL_RTTHREAD)
4312 hCurrentThread = RTThreadSelf();
4314 Assert(hCurrentThread == RTThreadSelf());
4315 PRTTHREADINT pThread = rtThreadGet(hCurrentThread);
4361 RTDECL(bool) RTLockValidatorHoldsLocksInSubClass(RTTHREAD hCurrentThread, RTLOCKVALCLASS hClass, uint32_t uSubClass) argument
4364 if (hCurrentThread == NIL_RTTHREAD)
4365 hCurrentThread = RTThreadSelf();
4367 Assert(hCurrentThread == RTThreadSelf());
4368 PRTTHREADINT pThread = rtThreadGet(hCurrentThread);
[all...]

Completed in 118 milliseconds