Home
last modified time | relevance | path

Searched refs:hInterruptEvent (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Parser/
Dmyreadline.c72 HANDLE hInterruptEvent = _PyOS_SigintEvent(); in my_fgets() local
73 switch (WaitForSingleObjectEx(hInterruptEvent, 10, FALSE)) { in my_fgets()
75 ResetEvent(hInterruptEvent); in my_fgets()
147 HANDLE hInterruptEvent = _PyOS_SigintEvent(); in _PyOS_WindowsConsoleReadline() local
148 if (WaitForSingleObjectEx(hInterruptEvent, 100, FALSE) in _PyOS_WindowsConsoleReadline()
150 ResetEvent(hInterruptEvent); in _PyOS_WindowsConsoleReadline()
/third_party/python/Modules/_io/
Dwinconsoleio.c560 HANDLE hInterruptEvent = _PyOS_SigintEvent(); in read_console_w() local
561 if (WaitForSingleObjectEx(hInterruptEvent, 100, FALSE) in read_console_w()
563 ResetEvent(hInterruptEvent); in read_console_w()
/third_party/python/Modules/
Dtimemodule.c2062 HANDLE hInterruptEvent; local
2105 hInterruptEvent = _PyOS_SigintEvent();
2106 ResetEvent(hInterruptEvent);
2109 rc = WaitForSingleObjectEx(hInterruptEvent, ul_millis, FALSE);