/AliOS-Things-master/components/py_engine/engine/extmod/ |
A D | vfs_blockdev.c | 57 mp_call_method_n_kw(2, 0, self->readblocks); in mp_vfs_blockdev_read() 68 mp_obj_t ret = mp_call_method_n_kw(3, 0, self->readblocks); in mp_vfs_blockdev_read_ext() 89 mp_call_method_n_kw(2, 0, self->writeblocks); in mp_vfs_blockdev_write() 105 mp_obj_t ret = mp_call_method_n_kw(3, 0, self->writeblocks); in mp_vfs_blockdev_write_ext() 118 return mp_call_method_n_kw(2, 0, self->u.ioctl); in mp_vfs_blockdev_ioctl() 124 mp_call_method_n_kw(0, 0, self->u.old.sync); in mp_vfs_blockdev_ioctl() 129 return mp_call_method_n_kw(0, 0, self->u.old.count); in mp_vfs_blockdev_ioctl()
|
A D | machine_pinbase.c | 63 return mp_obj_get_int(mp_call_method_n_kw(0, 0, dest)); in pinbase_ioctl() 69 mp_call_method_n_kw(1, 0, dest); in pinbase_ioctl()
|
A D | moduwebsocket.c | 238 mp_call_method_n_kw(1, 0, dest); in websocket_write() 248 mp_call_method_n_kw(1, 0, dest); in websocket_write()
|
A D | modussl_axtls.c | 291 mp_obj_t res = mp_call_method_n_kw(1, 0, dest); in ussl_socket_setblocking()
|
A D | moduasyncio.c | 207 mp_call_method_n_kw(1, 0, dest); in task_cancel()
|
A D | modussl_mbedtls.c | 337 return mp_call_method_n_kw(1, 0, dest); in socket_setblocking()
|
A D | vfs.c | 122 return mp_call_method_n_kw(n_args, 0, meth); in mp_vfs_proxy_call()
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | objtype.c | 341 init_ret = mp_call_method_n_kw(0, 0, init_fn); in mp_obj_instance_make_new() 347 init_ret = mp_call_method_n_kw(n_args, n_kw, args2); in mp_obj_instance_make_new() 551 res = mp_call_method_n_kw(1, 0, dest); in instance_binary_op() 645 dest[0] = mp_call_method_n_kw(2, 0, attr_get_method); in mp_obj_instance_load_attr() 667 dest[0] = mp_call_method_n_kw(1, 0, dest2); in mp_obj_instance_load_attr() 738 mp_call_method_n_kw(1, 0, attr_delete_method); in mp_obj_instance_store_attr() 748 mp_call_method_n_kw(2, 0, attr_set_method); in mp_obj_instance_store_attr() 765 mp_call_method_n_kw(1, 0, attr_delattr_method); in mp_obj_instance_store_attr() 777 mp_call_method_n_kw(2, 0, attr_setattr_method); in mp_obj_instance_store_attr() 830 mp_obj_t ret = mp_call_method_n_kw(n_args, 0, member); in instance_subscr() [all …]
|
A D | objreversed.c | 47 return mp_call_method_n_kw(0, 0, dest); in reversed_make_new()
|
A D | objgetitemiter.c | 43 mp_obj_t value = mp_call_method_n_kw(1, 0, self->args); in it_iternext()
|
A D | runtime.c | 668 mp_obj_t mp_call_method_n_kw(size_t n_args, size_t n_kw, const mp_obj_t *args) { in mp_call_method_n_kw() function 808 mp_obj_t iterable = mp_getiter(mp_call_method_n_kw(0, 0, dest), NULL); in mp_call_prepare_args_n_kw_var() 830 mp_obj_t value = mp_call_method_n_kw(1, 0, dest); in mp_call_prepare_args_n_kw_var() 1234 return mp_call_method_n_kw(0, 0, dest); in mp_iternext_allow_raise() 1262 mp_obj_t ret = mp_call_method_n_kw(0, 0, dest); in mp_iternext() 1314 *ret_val = mp_call_method_n_kw(0, 0, dest); in mp_resume() 1324 *ret_val = mp_call_method_n_kw(1, 0, dest); in mp_resume() 1335 *ret_val = mp_call_method_n_kw(0, 0, dest); in mp_resume() 1343 *ret_val = mp_call_method_n_kw(1, 0, dest); in mp_resume()
|
A D | modio.c | 62 mp_obj_t ret_obj = mp_call_method_n_kw(1, 0, dest); in iobase_read_write() 88 mp_int_t ret = mp_obj_get_int(mp_call_method_n_kw(2, 0, dest)); in iobase_ioctl()
|
A D | vm.c | 652 mp_obj_t ret = mp_call_method_n_kw(0, 0, sp + 2); in mp_execute_bytecode() 673 mp_call_method_n_kw(3, 0, sp); in mp_execute_bytecode() 685 mp_call_method_n_kw(3, 0, sp - 3); in mp_execute_bytecode() 697 mp_obj_t ret_value = mp_call_method_n_kw(3, 0, sp); in mp_execute_bytecode() 1090 SET_TOP(mp_call_method_n_kw(unum & 0xff, (unum >> 8) & 0xff, sp)); in mp_execute_bytecode()
|
A D | nativeglue.c | 284 mp_call_method_n_kw,
|
A D | objmodule.c | 290 mp_call_method_n_kw(0, 0, dest); in mp_module_call_init()
|
A D | runtime.h | 119 mp_obj_t mp_call_method_n_kw(size_t n_args, size_t n_kw, const mp_obj_t *args);
|
A D | modbuiltins.c | 198 return mp_call_method_n_kw(0, 0, dest); in mp_builtin_dir()
|