Lines Matching defs:pool
24 static void poison_error(mempool_t *pool, void *element, size_t size, in poison_error()
41 static void __check_element(mempool_t *pool, void *element, size_t size) in __check_element()
57 static void check_element(mempool_t *pool, void *element) in check_element()
80 static void poison_element(mempool_t *pool, void *element) in poison_element()
95 static inline void check_element(mempool_t *pool, void *element) in check_element()
98 static inline void poison_element(mempool_t *pool, void *element) in poison_element()
103 static __always_inline void kasan_poison_element(mempool_t *pool, void *element) in kasan_poison_element()
112 static void kasan_unpoison_element(mempool_t *pool, void *element) in kasan_unpoison_element()
121 static __always_inline void add_element(mempool_t *pool, void *element) in add_element()
129 static void *remove_element(mempool_t *pool) in remove_element()
150 void mempool_exit(mempool_t *pool) in mempool_exit()
169 void mempool_destroy(mempool_t *pool) in mempool_destroy()
179 int mempool_init_node(mempool_t *pool, int min_nr, mempool_alloc_t *alloc_fn, in mempool_init_node()
227 int mempool_init(mempool_t *pool, int min_nr, mempool_alloc_t *alloc_fn, in mempool_init()
264 mempool_t *pool; in mempool_create_node() local
298 int mempool_resize(mempool_t *pool, int new_min_nr) in mempool_resize()
374 void *mempool_alloc(mempool_t *pool, gfp_t gfp_mask) in mempool_alloc()
451 void mempool_free(void *element, mempool_t *pool) in mempool_free()