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
393 (traverseproc)BaseException_traverse, /* tp_traverse */
427 PyDoc_STR(EXCDOC), (traverseproc)BaseException_traverse, \
546 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in SystemExit_traverse()
650 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in EnvironmentError_traverse()
848 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in WindowsError_traverse()
1119 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in SyntaxError_traverse()
1595 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in UnicodeError_traverse()
/external/python/cpython3/Objects/
Dexceptions.c93 BaseException_traverse(PyBaseExceptionObject *self, visitproc visit, void *arg) in BaseException_traverse() function
380 (traverseproc)BaseException_traverse, /* tp_traverse */
414 PyDoc_STR(EXCDOC), (traverseproc)BaseException_traverse, \
523 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in StopIteration_traverse()
590 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in SystemExit_traverse()
674 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in ImportError_traverse()
1081 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in OSError_traverse()
1403 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in SyntaxError_traverse()
1842 return BaseException_traverse((PyBaseExceptionObject *)self, visit, arg); in UnicodeError_traverse()
2322 PyDoc_STR("Out of memory."), (traverseproc)BaseException_traverse,