Lines Matching defs:pool
84 i_ipadm_cong_free_list(uu_list_t *list, uu_list_pool_t *pool)
93 uu_list_node_fini(ent, &(ent->node), pool);
104 i_ipadm_cong_enlist_alg(const char *name, uu_list_t *list, uu_list_pool_t *pool)
114 uu_list_node_init(ent, &(ent->node), pool);
126 uu_list_pool_t *pool)
141 uu_list_node_init(ent, &ent->node, pool);
288 boolean_t *is_enabled, uu_list_t *prop_list, uu_list_pool_t *pool)
325 status = i_ipadm_cong_enlist_prop(pname, vstr, prop_list, pool);
362 uu_list_pool_t *pool;
374 pool = uu_list_pool_create("cong_pool",
379 if (pool == NULL)
393 enabled_list = uu_list_create(pool, NULL, UU_LIST_SORTED);
394 prop_list = uu_list_create(pool, NULL, 0);
399 &is_enabled, prop_list, pool) != IPADM_SUCCESS ||
406 pool) != IPADM_SUCCESS)
432 i_ipadm_cong_free_list(enabled_list, pool);
433 i_ipadm_cong_free_list(prop_list, pool);
437 if (pool != NULL)
438 uu_list_pool_destroy(pool);
449 i_ipadm_cong_get_algs_common(uu_list_pool_t **pool, uu_list_t **alg_list,
463 *pool = uu_list_pool_create("cong_pool",
468 if (*pool == NULL)
480 *alg_list = uu_list_create(*pool, NULL, UU_LIST_SORTED);
493 if (i_ipadm_cong_enlist_alg(alg, *alg_list, *pool) !=
513 uu_list_pool_t *pool = NULL;
520 status = i_ipadm_cong_get_algs_common(&pool, &alg_list, proto, enabled);
535 i_ipadm_cong_free_list(alg_list, pool);
536 if (pool != NULL)
537 uu_list_pool_destroy(pool);
912 uu_list_pool_t *pool = NULL;
919 status = i_ipadm_cong_get_algs_common(&pool, &alg_list, proto, B_TRUE);
931 i_ipadm_cong_free_list(alg_list, pool);
932 uu_list_pool_destroy(pool);