Searched refs:data_p (Results 1 – 3 of 3) sorted by relevance
139 void * lv_realloc(void * data_p, size_t new_size) in lv_realloc() argument141 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()
106 void * lv_realloc(void * data_p, size_t new_size);
175 :cpp:expr:`lv_async_call(my_function, data_p)` can be used to call ``my_function`` on178 ``data_p`` will be passed to the function when it's called. Note that only the data's182 :cpp:expr:`lv_async_call_cancel(my_function, data_p)`, which will remove all183 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