Searched refs:_Py_EnterRecursiveCall (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Include/internal/ |
D | pycore_ceval.h | 81 static inline int _Py_EnterRecursiveCall(PyThreadState *tstate, in _Py_EnterRecursiveCall() function 88 return _Py_EnterRecursiveCall(tstate, where); in _Py_EnterRecursiveCall_inline()
|
/external/python/cpython3/Objects/ |
D | call.c | 189 if (_Py_EnterRecursiveCall(tstate, " while calling a Python object") == 0) in _PyObject_MakeTpCall() 276 if (_Py_EnterRecursiveCall(tstate, " while calling a Python object")) { in _PyObject_Call()
|
D | object.c | 416 if (_Py_EnterRecursiveCall(tstate, in PyObject_Repr() 476 if (_Py_EnterRecursiveCall(tstate, " while getting the str of an object")) { in PyObject_Str() 720 if (_Py_EnterRecursiveCall(tstate, " in comparison")) { in PyObject_RichCompare()
|
D | abstract.c | 2500 if (_Py_EnterRecursiveCall(tstate, " in __instancecheck__")) { in object_recursive_isinstance() 2519 if (_Py_EnterRecursiveCall(tstate, " in __instancecheck__")) { in object_recursive_isinstance() 2587 if (_Py_EnterRecursiveCall(tstate, " in __subclasscheck__")) { in object_issubclass() 2606 if (_Py_EnterRecursiveCall(tstate, " in __subclasscheck__")) { in object_issubclass()
|
D | methodobject.c | 405 if (_Py_EnterRecursiveCall(tstate, " while calling a Python object")) { in cfunction_enter_call()
|
D | descrobject.c | 288 if (_Py_EnterRecursiveCall(tstate, " while calling a Python object")) { in method_enter_call()
|
/external/python/cpython3/Python/ |
D | ceval.c | 1255 if (_Py_EnterRecursiveCall(tstate, "")) { in _PyEval_EvalFrameDefault()
|