Home
last modified time | relevance | path

Searched refs:data_p (Results 1 – 3 of 3) sorted by relevance

/lvgl-latest/src/stdlib/
Dlv_mem.c139 void * lv_realloc(void * data_p, size_t new_size) in lv_realloc() argument
141 LV_TRACE_MEM("reallocating %p with %lu size", data_p, (unsigned long)new_size); in lv_realloc()
144 lv_free(data_p); in lv_realloc()
148 if(data_p == &zero_mem) return lv_malloc(new_size); in lv_realloc()
150 void * new_p = lv_realloc_core(data_p, new_size); in lv_realloc()
Dlv_mem.h106 void * lv_realloc(void * data_p, size_t new_size);
/lvgl-latest/docs/details/main-components/
Dtimer.rst175 :cpp:expr:`lv_async_call(my_function, data_p)` can be used to call ``my_function`` on
178 ``data_p`` will be passed to the function when it's called. Note that only the data's
182 :cpp:expr:`lv_async_call_cancel(my_function, data_p)`, which will remove all
183 asynchronous calls matching ``my_function`` and ``data_p``.
185 Note that if :cpp:expr:`lv_async_call(my_function, data_p)` is called from a thread