Searched refs:mp_obj_exception_make_new (Results 1 – 5 of 5) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | objexcept.c | 291 .make_new = mp_obj_exception_make_new, 377 assert(exc_type->make_new == mp_obj_exception_make_new); in MP_DEFINE_EXCEPTION() 378 return mp_obj_exception_make_new(exc_type, 0, 0, NULL); in MP_DEFINE_EXCEPTION() 382 assert(exc_type->make_new == mp_obj_exception_make_new); in mp_obj_new_exception_args() 390 assert(exc_type->make_new == mp_obj_exception_make_new); in mp_obj_new_exception_msg() 408 return mp_obj_exception_make_new(exc_type, 0, 0, NULL); in mp_obj_new_exception_msg() 421 return mp_obj_exception_make_new(exc_type, 1, 0, &arg); in mp_obj_new_exception_msg() 469 assert(exc_type->make_new == mp_obj_exception_make_new); in mp_obj_new_exception_msg_vlist() 493 return mp_obj_exception_make_new(exc_type, 0, 0, NULL); in mp_obj_new_exception_msg_vlist() 530 return mp_obj_exception_make_new(exc_type, 1, 0, &arg); in mp_obj_new_exception_msg_vlist() [all …]
|
A D | objexcept.h | 48 .make_new = mp_obj_exception_make_new, \
|
A D | obj.h | 818 … mp_obj_is_native_exception_instance(o) (mp_obj_get_type(o)->make_new == mp_obj_exception_make_new) 826 mp_obj_t mp_obj_exception_make_new(const mp_obj_type_t *type_in, size_t n_args, size_t n_kw, const … 830 assert(exc_type->make_new == mp_obj_exception_make_new); in mp_obj_new_exception_arg1() 831 return mp_obj_exception_make_new(exc_type, 1, 0, &arg); in mp_obj_new_exception_arg1()
|
/AliOS-Things-master/components/py_engine/engine/extmod/ |
A D | modussl_axtls.c | 116 nlr_raise(mp_obj_exception_make_new(&mp_type_OSError, 2, 0, args)); in ussl_raise_error()
|
A D | modussl_mbedtls.c | 112 nlr_raise(mp_obj_exception_make_new(&mp_type_OSError, 2, 0, args)); in mbedtls_raise_error()
|
Completed in 11 milliseconds