Home
last modified time | relevance | path

Searched refs:BaseException_traverse (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dexceptions.c89 BaseException_traverse(PyBaseExceptionObject *self, visitproc visit, void *arg) in BaseException_traverse() function
394 (traverseproc)BaseException_traverse, /* tp_traverse */
429 PyDoc_STR(EXCDOC), (traverseproc)BaseException_traverse, \
550 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in SystemExit_traverse()
654 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in EnvironmentError_traverse()
852 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in WindowsError_traverse()
1123 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in SyntaxError_traverse()
1599 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in UnicodeError_traverse()
/external/python/cpython3/Objects/
Dexceptions.c91 BaseException_traverse(PyBaseExceptionObject *self, visitproc visit, void *arg) in BaseException_traverse() function
378 (traverseproc)BaseException_traverse, /* tp_traverse */
412 PyDoc_STR(EXCDOC), (traverseproc)BaseException_traverse, \
521 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in StopIteration_traverse()
588 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in SystemExit_traverse()
674 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in ImportError_traverse()
1033 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in OSError_traverse()
1350 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in SyntaxError_traverse()
1789 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in UnicodeError_traverse()
2282 PyDoc_STR("Out of memory."), (traverseproc)BaseException_traverse,