Home
last modified time | relevance | path

Searched refs:fun_in (Results 1 – 4 of 4) sorted by relevance

/AliOS-Things-master/components/py_engine/engine/py/
A Dnativeglue.c156 STATIC mp_obj_t mp_native_call_function_n_kw(mp_obj_t fun_in, size_t n_args_kw, const mp_obj_t *arg… in mp_native_call_function_n_kw() argument
157 return mp_call_function_n_kw(fun_in, n_args_kw & 0xff, (n_args_kw >> 8) & 0xff, args); in mp_native_call_function_n_kw()
A Druntime.c644 mp_obj_t mp_call_function_n_kw(mp_obj_t fun_in, size_t n_args, size_t n_kw, const mp_obj_t *args) { in mp_call_function_n_kw() argument
648 …calling function %p(n_args=" UINT_FMT ", n_kw=" UINT_FMT ", args=%p)\n", fun_in, n_args, n_kw, arg… in mp_call_function_n_kw()
651 const mp_obj_type_t *type = mp_obj_get_type(fun_in); in mp_call_function_n_kw()
655 return type->call(fun_in, n_args, n_kw, args); in mp_call_function_n_kw()
662 MP_ERROR_TEXT("'%s' object isn't callable"), mp_obj_get_type_str(fun_in)); in mp_call_function_n_kw()
A Dobjfun.c159 qstr mp_obj_fun_get_name(mp_const_obj_t fun_in) { in mp_obj_fun_get_name() argument
160 const mp_obj_fun_bc_t *fun = MP_OBJ_TO_PTR(fun_in); in mp_obj_fun_get_name()
A Dnativeglue.h116 mp_obj_t (*call_function_n_kw)(mp_obj_t fun_in, size_t n_args_kw, const mp_obj_t *args);

Completed in 9 milliseconds