Home
last modified time | relevance | path

Searched refs:_hRecThread (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/modules/audio_device/win/
Daudio_device_core_win.cc369 _hRecThread(NULL), in AudioDeviceWindowsCore()
2320 if (_hRecThread != NULL) { in StartRecording()
2347 assert(_hRecThread == NULL); in StartRecording()
2348 _hRecThread = CreateThread(NULL, 0, lpStartAddress, this, 0, NULL); in StartRecording()
2349 if (_hRecThread == NULL) { in StartRecording()
2355 SetThreadPriority(_hRecThread, THREAD_PRIORITY_TIME_CRITICAL); in StartRecording()
2384 if (_hRecThread == NULL) { in StopRecording()
2401 DWORD ret = WaitForSingleObject(_hRecThread, 2000); in StopRecording()
2421 CloseHandle(_hRecThread); in StopRecording()
2422 _hRecThread = NULL; in StopRecording()
Daudio_device_core_win.h267 HANDLE _hRecThread; variable