Searched refs:aos_realloc (Results 1 – 17 of 17) sorted by relevance
/AliOS-Things-master/components/libc_stub/compilers/iar/ |
A D | iar_libc.c | 20 extern void *aos_realloc(void *mem, unsigned int size); 41 mem = aos_realloc(old, newlen | AOS_UNSIGNED_INT_MSB); in realloc() 43 mem = aos_realloc(old, newlen); in realloc()
|
/AliOS-Things-master/components/libc_stub/compilers/armlibc/ |
A D | armcc_libc.c | 40 extern void *aos_realloc(void *mem, unsigned int size); 65 mem = aos_realloc(old, newlen | AOS_UNSIGNED_INT_MSB); in realloc() 67 mem = aos_realloc(old, newlen); in realloc()
|
/AliOS-Things-master/components/amp/services/amp_memmgt/ |
A D | amp_memory.c | 12 config.realloc_fn = aos_realloc; in amp_memory_init()
|
/AliOS-Things-master/components/osal_aos/example/ |
A D | mem_example.c | 119 new_ptr = aos_realloc(old_ptr, sizeof(struct message) * 6); in mem_realloc()
|
/AliOS-Things-master/components/osal_aos/rhino/ |
A D | aos_memory.c | 81 void *aos_realloc(void *mem, size_t size) in aos_realloc() function
|
/AliOS-Things-master/components/amp/ui/render/include/ |
A D | render_public.h | 106 #define render_realloc aos_realloc
|
/AliOS-Things-master/components/libc_stub/ |
A D | newlib_stub.c | 374 mem = aos_realloc(old, newlen | AOS_UNSIGNED_INT_MSB); in _realloc_r() 377 mem = aos_realloc(old, newlen); in _realloc_r()
|
/AliOS-Things-master/components/ota/hal/ |
A D | ota_hal_os.c | 26 return aos_realloc(ptr, size); in ota_realloc()
|
/AliOS-Things-master/components/uvoice/internal/ |
A D | uvoice_aos.h | 76 void *mem = aos_realloc(old, newsize); in snd_realloc()
|
/AliOS-Things-master/components/osal_aos/include/aos/ |
A D | kernel.h | 886 void *aos_realloc(void *mem, size_t size);
|
/AliOS-Things-master/hardware/chip/rtl872xd/test/ |
A D | aos_test.c | 202 ptr = aos_realloc(ptr, size2); in CASE() 232 ptr = aos_realloc(ptr, size2); in CASE()
|
/AliOS-Things-master/components/amp_adapter/platform/linux/ |
A D | aos_system.c | 420 void *aos_realloc(void *mem, size_t size) in aos_realloc() function
|
/AliOS-Things-master/components/osal_aos/ |
A D | README.md | 445 | aos_realloc() | 重新调整之前调用 `aos_malloc(aos_calloc、aos_zalloc)`所分配的内存块的大小 | 622 [aos_mem_example]aos_realloc success!
|
/AliOS-Things-master/hardware/chip/rtl872xd/hal/ |
A D | wifi_port_ref.c | 482 result.ap_list = aos_realloc(result.ap_list, ret * sizeof(ap_list_t)); in wifi_scan()
|
/AliOS-Things-master/hardware/chip/haas1000/hal/ |
A D | wifi_port.c | 530 result.ap_list = aos_realloc(result.ap_list, ret * sizeof(ap_list_t)); in wifi_scan()
|
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/ |
A D | duk_config.h | 2168 extern void *aos_realloc(void *ptr, unsigned int size); 2177 #define DUK_ANSI_REALLOC aos_realloc
|
/AliOS-Things-master/components/py_engine/modules/driver/ |
A D | board_mgr.c | 866 … void *addr = aos_realloc(mgr_handle->item, sizeof(board_item_t *) * (mgr_handle->item_size + 1)); in board_add_new_item()
|
Completed in 52 milliseconds