Home
last modified time | relevance | path

Searched refs:Py_EnterRecursiveCall (Results 1 – 25 of 26) sorted by relevance

12

/aosp_15_r20/external/python/cpython2/Modules/
D_json.c1520 if (Py_EnterRecursiveCall(" while decoding a JSON object " in scan_once_str()
1528 if (Py_EnterRecursiveCall(" while decoding a JSON array " in scan_once_str()
1612 if (Py_EnterRecursiveCall(" while decoding a JSON object " in scan_once_unicode()
1620 if (Py_EnterRecursiveCall(" while decoding a JSON array " in scan_once_unicode()
1997 if (Py_EnterRecursiveCall(" while encoding a JSON object")) in encoder_listencode_obj()
2004 if (Py_EnterRecursiveCall(" while encoding a JSON object")) in encoder_listencode_obj()
2035 if (Py_EnterRecursiveCall(" while encoding a JSON object")) { in encoder_listencode_obj()
DcPickle.c1776 if (Py_EnterRecursiveCall(" while pickling an object") == 0) in save_list()
2026 if (Py_EnterRecursiveCall(" while pickling an object") == 0) { in save_dict()
2034 if (Py_EnterRecursiveCall(" while pickling an object") == 0) { in save_dict()
2603 if (Py_EnterRecursiveCall(" while pickling an object")) in save()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dceval.h77 PyAPI_FUNC(int) Py_EnterRecursiveCall(const char *where);
/aosp_15_r20/external/python/cpython3/Include/
Dceval.h77 PyAPI_FUNC(int) Py_EnterRecursiveCall(const char *where);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dceval.h77 PyAPI_FUNC(int) Py_EnterRecursiveCall(const char *where);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dceval.h77 PyAPI_FUNC(int) Py_EnterRecursiveCall(const char *where);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dceval.h77 PyAPI_FUNC(int) Py_EnterRecursiveCall(const char *where);
/aosp_15_r20/external/python/cpython2/Include/
Dceval.h48 #define Py_EnterRecursiveCall(where) \ macro
/aosp_15_r20/external/python/cpython2/Objects/
Dobject.c383 if (Py_EnterRecursiveCall(" while getting the repr of an object")) in PyObject_Repr()
433 if (Py_EnterRecursiveCall(" while getting the str of an object")) in _PyObject_Str()
869 if (Py_EnterRecursiveCall(" in cmp")) in PyObject_Compare()
954 if (Py_EnterRecursiveCall(" in cmp")) in PyObject_RichCompare()
Dabstract.c2542 if (Py_EnterRecursiveCall(" while calling a Python object"))
2950 if (Py_EnterRecursiveCall(" in __instancecheck__"))
2970 if (Py_EnterRecursiveCall(" in __instancecheck__")) {
3029 if (Py_EnterRecursiveCall(" in __subclasscheck__"))
3048 if (Py_EnterRecursiveCall(" in __subclasscheck__")) {
Dclassobject.c1507 if (Py_EnterRecursiveCall(" after coercion")) in half_binop()
2148 if (Py_EnterRecursiveCall(" in __call__")) { in instance_call()
/aosp_15_r20/external/tensorflow/tensorflow/python/util/
H A Dutil.cc683 if (Py_EnterRecursiveCall(" in flatten")) { in FlattenHelper()
913 if (Py_EnterRecursiveCall(" in assert_same_structure")) { in AssertSameStructureHelper()
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dcall.rst125 :c:func:`Py_EnterRecursiveCall` and :c:func:`Py_LeaveRecursiveCall`
129 the callee should use *Py_EnterRecursiveCall* and *Py_LeaveRecursiveCall*
Dexceptions.rst787 .. c:function:: int Py_EnterRecursiveCall(const char *where)
808 Ends a :c:func:`Py_EnterRecursiveCall`. Must be called once for each
809 *successful* invocation of :c:func:`Py_EnterRecursiveCall`.
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dexceptions.rst491 .. c:function:: int Py_EnterRecursiveCall(const char *where)
509 Ends a :c:func:`Py_EnterRecursiveCall`. Must be called once for each
510 *successful* invocation of :c:func:`Py_EnterRecursiveCall`.
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c49 EXPORT_FUNC(Py_EnterRecursiveCall)
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat806 function,Py_EnterRecursiveCall,3.9,,
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.9.0a5.rst1204 Move the static inline function flavor of Py_EnterRecursiveCall() and
D3.9.0a1.rst5463 Provide :c:func:`Py_EnterRecursiveCall` and :c:func:`Py_LeaveRecursiveCall`
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml2129 [function.Py_EnterRecursiveCall]
/aosp_15_r20/external/python/cpython3/Python/
Dceval.c7948 #undef Py_EnterRecursiveCall
7950 int Py_EnterRecursiveCall(const char *where) function
/aosp_15_r20/external/python/cpython2/Python/
Dceval.c981 if (Py_EnterRecursiveCall("")) in PyEval_EvalFrameEx()
/aosp_15_r20/external/python/cpython2/Modules/_ctypes/
D_ctypes.c2265 if (Py_EnterRecursiveCall("while processing _as_parameter_")) { in PyCSimpleType_from_param()
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.9.rst1305 * Provide :c:func:`Py_EnterRecursiveCall` and :c:func:`Py_LeaveRecursiveCall`
/aosp_15_r20/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst568 inifinite recursion. Py_ReprEnter() and Py_EnterRecursiveCall(),

12