Searched refs:PyOS_ReadlineFunctionPointer (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython2/Parser/ |
D | myreadline.c | 162 char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, char *); variable 179 if (PyOS_ReadlineFunctionPointer == NULL) { in PyOS_Readline() 181 PyOS_ReadlineFunctionPointer = vms__StdioReadline; in PyOS_Readline() 183 PyOS_ReadlineFunctionPointer = PyOS_StdioReadline; in PyOS_Readline() 207 rv = (*PyOS_ReadlineFunctionPointer)(sys_stdin, sys_stdout, in PyOS_Readline()
|
/external/python/cpython3/Parser/ |
D | myreadline.c | 350 char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *) = NULL; variable 369 if (PyOS_ReadlineFunctionPointer == NULL) { in PyOS_Readline() 370 PyOS_ReadlineFunctionPointer = PyOS_StdioReadline; in PyOS_Readline() 393 rv = (*PyOS_ReadlineFunctionPointer)(sys_stdin, sys_stdout, in PyOS_Readline()
|
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
D | PythonReadline.cpp | 79 PyOS_ReadlineFunctionPointer = simple_readline; in initlldb_readline()
|
/external/python/cpython2/Include/ |
D | pythonrun.h | 152 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, char *);
|
/external/python/cpython3/Include/ |
D | pythonrun.h | 194 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *);
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 54 PyOS_ReadlineFunctionPointer
|
/external/python/cpython3/Tools/c-analyzer/ |
D | ignored-globals.txt | 40 PyOS_ReadlineFunctionPointer
|
D | known.tsv | 1520 Parser/myreadline.c - PyOS_ReadlineFunctionPointer variable char *(*PyOS_ReadlineFunctionPointer)(F…
|
/external/python/cpython3/PC/ |
D | python3.def | 434 PyOS_ReadlineFunctionPointer=python39.PyOS_ReadlineFunctionPointer DATA
|
/external/python/cpython2/Modules/ |
D | readline.c | 1226 PyOS_ReadlineFunctionPointer = call_readline; in initreadline()
|
/external/python/cpython3/Modules/ |
D | readline.c | 1363 PyOS_ReadlineFunctionPointer = call_readline; in PyInit_readline()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 82 "PyOS_ReadlineFunctionPointer"
|
/external/python/cpython3/Doc/faq/ |
D | extending.rst | 272 you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` to point at your
|
/external/python/cpython3/Doc/c-api/ |
D | veryhigh.rst | 170 .. c:var:: char* (*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *)
|
/external/python/cpython2/Doc/faq/ |
D | extending.rst | 281 you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` to point at your
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 2504 * The result of the :c:data:`PyOS_ReadlineFunctionPointer` callback must
|
/external/python/cpython2/Misc/ |
D | HISTORY | 11394 the call to the function pointed to by PyOS_ReadlineFunctionPointer 13826 PyOS_ReadlineFunctionPointer. (Code contributed by Lee Busby, with
|
/external/python/cpython3/Misc/ |
D | HISTORY | 3715 - Issue #16742: The result of the C callback PyOS_ReadlineFunctionPointer must 28773 the call to the function pointed to by PyOS_ReadlineFunctionPointer 31205 PyOS_ReadlineFunctionPointer. (Code contributed by Lee Busby, with
|