Searched refs:mp_obj_new_list (Results 1 – 23 of 23) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/extmod/ |
A D | moduselect.c | 151 list_array[0] = mp_obj_new_list(rwx_len[0], NULL); in select_select() 152 list_array[1] = mp_obj_new_list(rwx_len[1], NULL); in select_select() 153 list_array[2] = mp_obj_new_list(rwx_len[2], NULL); in select_select() 263 mp_obj_list_t *ret_list = MP_OBJ_TO_PTR(mp_obj_new_list(n_ready, NULL)); in poll_poll()
|
A D | network_cyw43.c | 195 mp_obj_t res = mp_obj_new_list(0, NULL); in network_cyw43_scan() 287 mp_obj_t list = mp_obj_new_list(num_stas, NULL); in network_cyw43_status()
|
A D | modujson.c | 280 next = mp_obj_new_list(0, NULL); in mod_ujson_load()
|
A D | modure.c | 232 mp_obj_t retval = mp_obj_new_list(0, NULL); in re_split()
|
A D | vfs.c | 435 mp_obj_t dir_list = mp_obj_new_list(0, NULL); in mp_vfs_listdir()
|
A D | machine_i2c.c | 329 mp_obj_t list = mp_obj_new_list(0, NULL); in machine_i2c_scan()
|
A D | modlwip.c | 1727 return mp_obj_new_list(1, (mp_obj_t *)&tuple); in lwip_getaddrinfo()
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | objlist.c | 81 return mp_obj_new_list(0, NULL); in list_make_new() 87 mp_obj_t list = mp_obj_new_list(0, NULL); in list_make_new() 364 return mp_obj_new_list(self->len, self->items); in list_copy() 481 mp_obj_t mp_obj_new_list(size_t n, mp_obj_t *items) { in mp_obj_new_list() function
|
A D | builtinhelp.c | 79 mp_obj_t list = mp_obj_new_list(0, NULL); in mp_help_print_modules()
|
A D | sequence.c | 74 mp_obj_t res = mp_obj_new_list(0, NULL); in mp_seq_extract_slice()
|
A D | nativeglue.c | 276 mp_obj_new_list,
|
A D | dynruntime.h | 112 #define mp_obj_new_list(n, items) (mp_fun_table.new_list((n), (items))) macro
|
A D | stream.c | 399 mp_obj_t lines = mp_obj_new_list(0, NULL); in stream_unbuffered_readlines()
|
A D | objstr.c | 514 mp_obj_t res = mp_obj_new_list(0, NULL); in mp_obj_str_split() 597 mp_obj_t res = mp_obj_new_list(0, NULL); in str_splitlines() 651 mp_obj_list_t *res = MP_OBJ_TO_PTR(mp_obj_new_list(splits + 1, NULL)); in str_rsplit()
|
A D | runtime.c | 919 items[num_right] = mp_obj_new_list(seq_len - num_left - num_right, seq_items + num_left); in mp_unpack_ex() 938 mp_obj_list_t *rest = MP_OBJ_TO_PTR(mp_obj_new_list(0, NULL)); in mp_unpack_ex()
|
A D | persistentcode.c | 526 MP_STATE_PORT(track_reloc_code_list) = mp_obj_new_list(0, NULL); in load_raw_code()
|
A D | modbuiltins.c | 177 mp_obj_t dir = mp_obj_new_list(0, NULL); in mp_builtin_dir()
|
A D | obj.h | 759 mp_obj_t mp_obj_new_list(size_t n, mp_obj_t *items);
|
A D | vm.c | 865 SET_TOP(mp_obj_new_list(unum, sp)); in mp_execute_bytecode()
|
/AliOS-Things-master/components/py_engine/modules/network/ |
A D | modnetwork.c | 398 mp_obj_t list = mp_obj_new_list(0, NULL); in haas_wlan_status() 435 mp_obj_t list = mp_obj_new_list(0, NULL); in haas_wlan_scan()
|
/AliOS-Things-master/components/py_engine/adapter/haas/ |
A D | modsocket.c | 811 mp_obj_t ret_list = mp_obj_new_list(0, NULL); in mod_socket_getaddrinfo()
|
/AliOS-Things-master/components/py_engine/adapter/haas510/ |
A D | modsocket.c | 845 mp_obj_t ret_list = mp_obj_new_list(0, NULL); in mod_socket_getaddrinfo()
|
/AliOS-Things-master/components/py_engine/adapter/haas600/ |
A D | modsocket.c | 780 mp_obj_t ret_list = mp_obj_new_list(0, NULL); in mod_socket_getaddrinfo()
|
Completed in 45 milliseconds