Home
last modified time | relevance | path

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

/external/mdnsresponder/mDNSPosix/
DNetMonitor.c56 static HANDLE gStopEvent = INVALID_HANDLE_VALUE; variable
57 static BOOL WINAPI ConsoleControlHandler( DWORD inControlEvent ) { SetEvent( gStopEvent ); return T… in ConsoleControlHandler()
841 gStopEvent = CreateEvent(NULL, FALSE, FALSE, NULL); in mDNSNetMonitor()
842 if (gStopEvent == INVALID_HANDLE_VALUE) return mStatus_UnknownErr; in mDNSNetMonitor()
844 while (WaitForSingleObjectEx(gStopEvent, INFINITE, TRUE) == WAIT_IO_COMPLETION) in mDNSNetMonitor()
847 CloseHandle(gStopEvent); in mDNSNetMonitor()
/external/mdnsresponder/mDNSWindows/SystemService/
DService.c213 DEBUG_LOCAL HANDLE gStopEvent = NULL; variable
1580 ok = SetEvent(gStopEvent); in ServiceSpecificStop()
1636 gStopEvent = CreateEvent(NULL, FALSE, FALSE, NULL); in SetupNotifications()
1637 err = translate_errno( gStopEvent, errno_compat(), kNoResourcesErr ); in SetupNotifications()
1790 if ( gStopEvent ) in TearDownNotifications()
1792 CloseHandle( gStopEvent ); in TearDownNotifications()
1793 gStopEvent = NULL; in TearDownNotifications()
1997 *waitItemPtr++ = gStopEvent; in SetupWaitList()