Home
last modified time | relevance | path

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

/aosp_15_r20/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()
/aosp_15_r20/external/python/cpython3/Parser/
Dmyreadline.c349 char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *) = NULL; variable
368 if (PyOS_ReadlineFunctionPointer == NULL) { in PyOS_Readline()
369 PyOS_ReadlineFunctionPointer = PyOS_StdioReadline; in PyOS_Readline()
392 rv = (*PyOS_ReadlineFunctionPointer)(sys_stdin, sys_stdout, in PyOS_Readline()
/aosp_15_r20/external/python/cpython2/Include/
Dpythonrun.h152 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, char *);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dpythonrun.h121 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *);
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dpythonrun.h121 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dpythonrun.h121 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dpythonrun.h121 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dpythonrun.h121 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *);
/aosp_15_r20/external/python/cpython2/PC/os2vacpp/
Dpython.def54 PyOS_ReadlineFunctionPointer
/aosp_15_r20/external/python/cpython2/Modules/
Dreadline.c1226 PyOS_ReadlineFunctionPointer = call_readline; in initreadline()
/aosp_15_r20/external/python/cpython3/Modules/
Dreadline.c1503 PyOS_ReadlineFunctionPointer = call_readline; in PyInit_readline()
/aosp_15_r20/external/python/cpython3/Doc/faq/
Dextending.rst271 you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` to point at your
/aosp_15_r20/external/python/cpython2/PC/os2emx/
Dpython27.def82 "PyOS_ReadlineFunctionPointer"
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dveryhigh.rst171 .. c:var:: char* (*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *)
/aosp_15_r20/external/python/cpython2/Doc/faq/
Dextending.rst281 you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` to point at your
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.10.0b1.rst1783 :c:func:`PyOS_ReadlineFunctionPointer` is no longer exported by limited C
/aosp_15_r20/external/python/cpython3/Tools/c-analyzer/cpython/
Dglobals-to-fix.tsv438 Parser/myreadline.c - PyOS_ReadlineFunctionPointer -
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.10.rst2269 * Remove :c:func:`PyOS_ReadlineFunctionPointer` from the limited C API headers
D3.4.rst2504 * The result of the :c:data:`PyOS_ReadlineFunctionPointer` callback must
/aosp_15_r20/external/python/cpython3/Doc/data/
Dpython3.11.abi1580 …<elf-symbol name='PyOS_ReadlineFunctionPointer' size='8' type='object-type' binding='global-bindin…
6120PyOS_ReadlineFunctionPointer' type-id='type-id-475' mangled-name='PyOS_ReadlineFunctionPointer' vi…
/aosp_15_r20/external/python/cpython2/Misc/
DHISTORY11394 the call to the function pointed to by PyOS_ReadlineFunctionPointer
13826 PyOS_ReadlineFunctionPointer. (Code contributed by Lee Busby, with
/aosp_15_r20/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