Lines Matching refs:n_args
32 STATIC mp_obj_t can_obj_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_ob… in can_obj_make_new() argument
46 STATIC mp_obj_t obj_open(size_t n_args, const mp_obj_t *args) in obj_open() argument
48 LOGD(LOG_TAG, "entern %s; n_args = %d;\n", __func__, n_args); in obj_open()
51 if (n_args < 5) { in obj_open()
52 LOGE(LOG_TAG, "%s: args num is illegal :n_args = %d;\n", __func__, n_args); in obj_open()
67 STATIC mp_obj_t obj_close(size_t n_args, const mp_obj_t *args) in obj_close() argument
69 LOGD(LOG_TAG, "entern %s; n_args = %d;\n", __func__, n_args); in obj_close()
72 if (n_args < 5) { in obj_close()
73 LOGE(LOG_TAG, "%s: args num is illegal :n_args = %d;\n", __func__, n_args); in obj_close()
88 STATIC mp_obj_t obj_send(size_t n_args, const mp_obj_t *args) in obj_send() argument
90 LOGD(LOG_TAG, "entern %s; n_args = %d;\n", __func__, n_args); in obj_send()
93 if (n_args < 5) { in obj_send()
94 LOGE(LOG_TAG, "%s: args num is illegal :n_args = %d;\n", __func__, n_args); in obj_send()
109 STATIC mp_obj_t obj_receive(size_t n_args, const mp_obj_t *args) in obj_receive() argument
111 LOGD(LOG_TAG, "entern %s; n_args = %d;\n", __func__, n_args); in obj_receive()
114 if (n_args < 5) { in obj_receive()
115 LOGE(LOG_TAG, "%s: args num is illegal :n_args = %d;\n", __func__, n_args); in obj_receive()