Searched refs:PyOS_InputHook (Results 1 – 11 of 11) sorted by relevance
24 int (*PyOS_InputHook)(void) = NULL; variable45 if (PyOS_InputHook != NULL) { in my_fgets()46 (void)(PyOS_InputHook)(); in my_fgets()131 if (PyOS_InputHook != NULL) { in _PyOS_WindowsConsoleReadline()132 (void)(PyOS_InputHook)(); in _PyOS_WindowsConsoleReadline()
18 PyAPI_DATA(int) (*PyOS_InputHook)(void);
1332 if (PyOS_InputHook) in readline_until_enter_or_signal()1346 if(PyOS_InputHook) PyOS_InputHook(); in readline_until_enter_or_signal()
3441 if (PyOS_InputHook == NULL) { in EnableEventHook()3443 PyOS_InputHook = EventHook; in EnableEventHook()3452 if (Tk_GetNumMainWindows() == 0 && PyOS_InputHook == EventHook) { in DisableEventHook()3453 PyOS_InputHook = NULL; in DisableEventHook()
838 EXPORT_DATA(PyOS_InputHook)
450 var,PyOS_InputHook,3.2,
158 .. c:var:: int (*PyOS_InputHook)(void)
1007 data PyOS_InputHook
31204 input mechanism is used. The hook variables are PyOS_InputHook and31379 (using PyOS_InputHook).
2905 Parser/myreadline.c - PyOS_InputHook -
7798 Restore running PyOS_InputHook while waiting for user input at the prompt.