Searched refs:PyOS_InputHook (Results 1 – 16 of 16) sorted by relevance
33 int (*PyOS_InputHook)(void) = NULL; variable54 if (PyOS_InputHook != NULL && in my_fgets()58 (void)(PyOS_InputHook)(); in my_fgets()143 if (PyOS_InputHook != NULL && in _PyOS_WindowsConsoleReadline()147 (void)(PyOS_InputHook)(); in _PyOS_WindowsConsoleReadline()
22 PyAPI_DATA(int) (*PyOS_InputHook)(void);
1399 if (PyOS_InputHook) in readline_until_enter_or_signal()1413 if(PyOS_InputHook) PyOS_InputHook(); in readline_until_enter_or_signal()
3370 if (PyOS_InputHook == NULL) { in EnableEventHook()3372 PyOS_InputHook = EventHook; in EnableEventHook()3381 if (Tk_GetNumMainWindows() == 0 && PyOS_InputHook == EventHook) { in DisableEventHook()3382 PyOS_InputHook = NULL; in DisableEventHook()
16825 if (PyOS_InputHook) { in os__inputhook_impl()16827 result = PyOS_InputHook(); in os__inputhook_impl()16843 return PyBool_FromLong(PyOS_InputHook != NULL); in os__is_inputhook_installed_impl()
900 EXPORT_DATA(PyOS_InputHook)
482 data,PyOS_InputHook,3.2,,
1603 …<elf-symbol name='PyOS_InputHook' size='8' type='object-type' binding='global-binding' visibility=…12216 …PyOS_InputHook' type-id='type-id-697' mangled-name='PyOS_InputHook' visibility='default' filepath=…
136 .. c:var:: int (*PyOS_InputHook)(void)
40 Honor :c:func:`PyOS_InputHook` in the new REPL. Patch by Pablo Galindo
6721 Don't call :c:var:`PyOS_InputHook` or :c:var:`PyOS_ReadlineFunctionPointer`
7798 Restore running PyOS_InputHook while waiting for user input at the prompt.
75 Parser/myreadline.c - PyOS_InputHook -
1112 [data.PyOS_InputHook]
31204 input mechanism is used. The hook variables are PyOS_InputHook and31379 (using PyOS_InputHook).
2106 * :c:var:`PyOS_InputHook` and :c:var:`PyOS_ReadlineFunctionPointer` are no