Lines Matching refs:ce
299 config_entry_t *ce; in add_config() local
386 for (ce = ve->ve_configs; ce != NULL; ce = ce->ce_next) { in add_config()
387 if (ce->ce_txg == txg) in add_config()
391 if (ce == NULL) { in add_config()
392 if ((ce = zutil_alloc(hdl, sizeof (config_entry_t))) == NULL) { in add_config()
395 ce->ce_txg = txg; in add_config()
396 ce->ce_config = fnvlist_dup(config); in add_config()
397 ce->ce_next = ve->ve_configs; in add_config()
398 ve->ve_configs = ce; in add_config()
474 config_entry_t *ce; in get_configs() local
516 for (ce = ve->ve_configs; ce != NULL; in get_configs()
517 ce = ce->ce_next) { in get_configs()
519 if (ce->ce_txg > best_txg) { in get_configs()
520 tmp = ce->ce_config; in get_configs()
521 best_txg = ce->ce_txg; in get_configs()
1171 config_entry_t *ce, *cenext; in zpool_find_import_impl() local
1331 for (ce = ve->ve_configs; ce != NULL; ce = cenext) { in zpool_find_import_impl()
1332 cenext = ce->ce_next; in zpool_find_import_impl()
1333 nvlist_free(ce->ce_config); in zpool_find_import_impl()
1334 free(ce); in zpool_find_import_impl()