Home
last modified time | relevance | path

Searched refs:PyOS_InputHook (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython3/Parser/
Dmyreadline.c25 int (*PyOS_InputHook)(void) = NULL; variable
39 if (PyOS_InputHook != NULL) in my_fgets()
40 (void)(PyOS_InputHook)(); in my_fgets()
117 if (PyOS_InputHook != NULL) { in _PyOS_WindowsConsoleReadline()
118 (void)(PyOS_InputHook)(); in _PyOS_WindowsConsoleReadline()
/external/python/cpython2/Parser/
Dmyreadline.c30 int (*PyOS_InputHook)(void) = NULL; variable
48 if (PyOS_InputHook != NULL) in my_fgets()
49 (void)(PyOS_InputHook)(); in my_fgets()
/external/python/cpython2/Modules/
Dreadline.c1034 if (PyOS_InputHook) in readline_until_enter_or_signal()
1047 if(PyOS_InputHook) PyOS_InputHook(); in readline_until_enter_or_signal()
1111 rl_event_hook = PyOS_InputHook; in readline_until_enter_or_signal()
D_tkinter.c3605 if (PyOS_InputHook == NULL) { in EnableEventHook()
3609 PyOS_InputHook = EventHook; in EnableEventHook()
3618 if (Tk_GetNumMainWindows() == 0 && PyOS_InputHook == EventHook) { in DisableEventHook()
3619 PyOS_InputHook = NULL; in DisableEventHook()
/external/python/cpython3/Modules/
Dreadline.c1196 if (PyOS_InputHook) in readline_until_enter_or_signal()
1210 if(PyOS_InputHook) PyOS_InputHook(); in readline_until_enter_or_signal()
D_tkinter.c3354 if (PyOS_InputHook == NULL) { in EnableEventHook()
3356 PyOS_InputHook = EventHook; in EnableEventHook()
3365 if (Tk_GetNumMainWindows() == 0 && PyOS_InputHook == EventHook) { in DisableEventHook()
3366 PyOS_InputHook = NULL; in DisableEventHook()
/external/python/cpython2/Include/
Dpythonrun.h151 PyAPI_DATA(int) (*PyOS_InputHook)(void);
/external/python/cpython3/Include/
Dpythonrun.h157 PyAPI_DATA(int) (*PyOS_InputHook)(void);
/external/python/cpython2/PC/os2vacpp/
Dpython.def53 PyOS_InputHook
/external/python/cpython3/Tools/c-globals/
Dignored-globals.txt39 PyOS_InputHook
/external/python/cpython3/PC/
Dpython3.def430 PyOS_InputHook=python37.PyOS_InputHook DATA
/external/python/cpython2/PC/os2emx/
Dpython27.def85 "PyOS_InputHook"
/external/python/cpython3/Doc/c-api/
Dveryhigh.rst148 .. c:var:: int (*PyOS_InputHook)(void)
/external/python/cpython3/Misc/NEWS.d/
D3.7.1rc1.rst1296 Restore running PyOS_InputHook while waiting for user input at the prompt.
/external/python/cpython2/Misc/
DHISTORY13825 input mechanism is used. The hook variables are PyOS_InputHook and
14000 (using PyOS_InputHook).
/external/python/cpython3/Misc/
DHISTORY31204 input mechanism is used. The hook variables are PyOS_InputHook and
31379 (using PyOS_InputHook).