Searched refs:errtype (Results 1 – 6 of 6) sorted by relevance
/external/libpcap/ |
D | sockutils.c | 400 sock_errtype errtype; member 423 if (addr_a->errtype == addr_b->errtype) in compare_addrs_to_try_by_status() 432 return addr_a->errtype - addr_b->errtype; in compare_addrs_to_try_by_status() 645 addrs_to_try[i].errtype = SOCK_NOERR; in sock_open() 699 addrs_to_try[i].errtype = in sock_open() 746 if (addrs_to_try[0].errtype == SOCK_CONNERR) { in sock_open()
|
/external/python/cpython3/Parser/ |
D | pegen.h | 143 void *_PyPegen_raise_error(Parser *p, PyObject *errtype, const char *errmsg, ...); 144 void *_PyPegen_raise_error_known_location(Parser *p, PyObject *errtype, 159 RAISE_ERROR_KNOWN_LOCATION(Parser *p, PyObject *errtype, in RAISE_ERROR_KNOWN_LOCATION() argument 168 …_PyPegen_raise_error_known_location(p, errtype, lineno, _col_offset, end_lineno, _end_col_offset, … in RAISE_ERROR_KNOWN_LOCATION()
|
D | pegen.c | 256 const char *errtype = NULL; in raise_decode_error() local 258 errtype = "unicode error"; in raise_decode_error() 261 errtype = "value error"; in raise_decode_error() 263 if (errtype) { in raise_decode_error() 271 RAISE_SYNTAX_ERROR("(%s) %U", errtype, errstr); in raise_decode_error() 276 RAISE_SYNTAX_ERROR("(%s) unknown error", errtype); in raise_decode_error() 344 PyObject* errtype = PyExc_SyntaxError; in tokenizer_error() local 369 errtype = PyExc_TabError; in tokenizer_error() 373 errtype = PyExc_IndentationError; in tokenizer_error() 385 RAISE_ERROR_KNOWN_LOCATION(p, errtype, p->tok->lineno, in tokenizer_error() [all …]
|
/external/python/cpython2/Python/ |
D | pythonrun.c | 1587 PyObject *v, *w, *errtype; in err_input() local 1590 errtype = PyExc_SyntaxError; in err_input() 1595 errtype = PyExc_IndentationError; in err_input() 1603 errtype = PyExc_SyntaxError; in err_input() 1627 errtype = PyExc_TabError; in err_input() 1634 errtype = PyExc_IndentationError; in err_input() 1638 errtype = PyExc_IndentationError; in err_input() 1675 PyErr_SetObject(errtype, w); in err_input()
|
/external/webp/swig/ |
D | libwebp_python_wrap.c | 1211 SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) { in SWIG_Python_SetErrorObj() argument 1213 PyErr_SetObject(errtype, obj); in SWIG_Python_SetErrorObj() 1219 SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) { in SWIG_Python_SetErrorMsg() argument 1221 PyErr_SetString(errtype, msg); in SWIG_Python_SetErrorMsg()
|
/external/marisa-trie/bindings/python/ |
D | marisa-swig_wrap.cxx | 1148 SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) { in SWIG_Python_SetErrorObj() argument 1150 PyErr_SetObject(errtype, obj); in SWIG_Python_SetErrorObj() 1156 SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) { in SWIG_Python_SetErrorMsg() argument 1158 PyErr_SetString(errtype, (char *) msg); in SWIG_Python_SetErrorMsg()
|