Searched refs:PyOS_ReadlineFunctionPointer (Results 1 – 16 of 16) 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 | 316 char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *) = NULL; variable 334 if (PyOS_ReadlineFunctionPointer == NULL) { in PyOS_Readline() 335 PyOS_ReadlineFunctionPointer = PyOS_StdioReadline; in PyOS_Readline() 358 rv = (*PyOS_ReadlineFunctionPointer)(sys_stdin, sys_stdout, in PyOS_Readline()
|
/external/python/cpython2/Include/ |
D | pythonrun.h | 152 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, char *);
|
/external/python/cpython3/Include/ |
D | pythonrun.h | 158 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-globals/ |
D | ignored-globals.txt | 40 PyOS_ReadlineFunctionPointer
|
/external/python/cpython3/PC/ |
D | python3.def | 432 PyOS_ReadlineFunctionPointer=python37.PyOS_ReadlineFunctionPointer DATA
|
/external/python/cpython2/Modules/ |
D | readline.c | 1226 PyOS_ReadlineFunctionPointer = call_readline; in initreadline()
|
/external/python/cpython3/Modules/ |
D | readline.c | 1371 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 | 159 .. 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
|