Lines Matching refs:pointer
213 Problem happens when an allocated memory's pointer (return value of :cpp:func:`lv_malloc`) is store…
214 **static global** or **static local** pointer variable and not as part of a previously allocated ``…
241 In C a callback is just a function pointer. But in MicroPython we need to register a *MicroPython c…
242 callback. Therefore in the MicroPython binding we need to register both a function pointer and a Mi…
246 next to the function pointer when registering a callback, and access that object when the callback …
250 pointer, and provided to the callback function itself.
262 …- A pointer to that struct is provided as the **first** argument of a callback registration functi…
263 - A pointer to that struct is provided as the **first** argument of the callback itself
273 - The API exposes a struct with both function pointer member and ``user_data`` member
275 - The function pointer member receives the same struct as its **first** argument
278 In practice it's also possible to mix these options, for example provide a struct pointer when regi…