Home
last modified time | relevance | path

Searched refs:PyOS_ReadlineFunctionPointer (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Parser/
Dmyreadline.c162 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/
Dmyreadline.c350 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/
DPythonReadline.cpp79 PyOS_ReadlineFunctionPointer = simple_readline; in initlldb_readline()
/external/python/cpython2/Include/
Dpythonrun.h152 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, char *);
/external/python/cpython3/Include/
Dpythonrun.h194 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *);
/external/python/cpython2/PC/os2vacpp/
Dpython.def54 PyOS_ReadlineFunctionPointer
/external/python/cpython3/Tools/c-analyzer/
Dignored-globals.txt40 PyOS_ReadlineFunctionPointer
Dknown.tsv1520 Parser/myreadline.c - PyOS_ReadlineFunctionPointer variable char *(*PyOS_ReadlineFunctionPointer)(F…
/external/python/cpython3/PC/
Dpython3.def434 PyOS_ReadlineFunctionPointer=python39.PyOS_ReadlineFunctionPointer DATA
/external/python/cpython2/Modules/
Dreadline.c1226 PyOS_ReadlineFunctionPointer = call_readline; in initreadline()
/external/python/cpython3/Modules/
Dreadline.c1363 PyOS_ReadlineFunctionPointer = call_readline; in PyInit_readline()
/external/python/cpython2/PC/os2emx/
Dpython27.def82 "PyOS_ReadlineFunctionPointer"
/external/python/cpython3/Doc/faq/
Dextending.rst272 you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` to point at your
/external/python/cpython3/Doc/c-api/
Dveryhigh.rst170 .. c:var:: char* (*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *)
/external/python/cpython2/Doc/faq/
Dextending.rst281 you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` to point at your
/external/python/cpython3/Doc/whatsnew/
D3.4.rst2504 * The result of the :c:data:`PyOS_ReadlineFunctionPointer` callback must
/external/python/cpython2/Misc/
DHISTORY11394 the call to the function pointed to by PyOS_ReadlineFunctionPointer
13826 PyOS_ReadlineFunctionPointer. (Code contributed by Lee Busby, with
/external/python/cpython3/Misc/
DHISTORY3715 - 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