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