Searched defs:fixed_cause (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DExceptions.c209 PyObject *fixed_cause; local
212 fixed_cause = NULL;
214 fixed_cause = PyObject_CallObject(cause, NULL);
215 if (fixed_cause == NULL)
218 fixed_cause = cause;
219 Py_INCREF(fixed_cause);
226 PyException_SetCause(value, fixed_cause);
/external/chromium_org/third_party/bintrees/bintrees/
H A Dcwalker.c3027 PyObject *fixed_cause; local
3029 fixed_cause = PyObject_CallObject(cause, NULL);
3030 if (fixed_cause == NULL)
3034 fixed_cause = cause;
3035 Py_INCREF(fixed_cause);
3043 PyException_SetCause(value, fixed_cause);
H A Dqavltree.c2509 PyObject *fixed_cause; local
2511 fixed_cause = PyObject_CallObject(cause, NULL);
2512 if (fixed_cause == NULL)
2516 fixed_cause = cause;
2517 Py_INCREF(fixed_cause);
2525 PyException_SetCause(value, fixed_cause);
H A Dqbintree.c2504 PyObject *fixed_cause; local
2506 fixed_cause = PyObject_CallObject(cause, NULL);
2507 if (fixed_cause == NULL)
2511 fixed_cause = cause;
2512 Py_INCREF(fixed_cause);
2520 PyException_SetCause(value, fixed_cause);
H A Dqrbtree.c2506 PyObject *fixed_cause; local
2508 fixed_cause = PyObject_CallObject(cause, NULL);
2509 if (fixed_cause == NULL)
2513 fixed_cause = cause;
2514 Py_INCREF(fixed_cause);
2522 PyException_SetCause(value, fixed_cause);

Completed in 237 milliseconds