Searched defs:threadHandle (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_MidiIn.cpp143 static inline BOOL isInitialized() { return data.threadHandle != NULL; }
154 volatile HANDLE threadHandle; member in class:MidiIn_OpenHelper::Data
172 threadHandle = NULL;
177 threadHandle = ::CreateThread(NULL, 0, ThreadProc, NULL, 0, NULL);
182 if (threadHandle != NULL) {
186 ::CloseHandle(threadHandle);
187 threadHandle = NULL;
H A DPLATFORM_API_WinOS_DirectSound.cpp428 static inline BOOL isInitialized() { return data.threadHandle != NULL; }
439 volatile HANDLE threadHandle; member in class:DS_StartBufferHelper::Data
455 threadHandle = NULL;
460 threadHandle = ::CreateThread(NULL, 0, ThreadProc, NULL, 0, NULL);
465 if (threadHandle != NULL) {
469 ::CloseHandle(threadHandle);
470 threadHandle = NULL;

Completed in 35 milliseconds