Lines Matching full:pool
3 * Memory pool API
51 /** Create the list of all memory pools managed by memp. MEMP_MAX represents a NULL pool at the end…
65 * Declare prototype for private memory pool if it is used in multiple files
83 * Declare a private memory pool
85 * .h: only when pool is used in multiple .c files: LWIP_MEMPOOL_PROTOTYPE(my_private_pool);
88 …* - call ONCE before using pool (e.g. in some init() function): LWIP_MEMPOOL_INIT(my_private_poo…
92 * To relocate a pool, declare it as extern in cc.h. Example for GCC:
115 * Initialize a private memory pool
120 * Allocate from a private memory pool
125 * Free element from a private memory pool
130 /** This structure is used to save the pool one element came from.
131 * This has to be defined here as it is required for pool size calculation. */