Lines Matching refs:cv
322 struct config_value *cv; in _check_host_filters() local
333 for (cv = cn->v; cv; cv = cv->next) { in _check_host_filters()
334 if (cv->type != CFG_STRING) { in _check_host_filters()
339 if (!strcmp(cv->v.str, cmd->hostname)) { in _check_host_filters()
547 struct config_value *cv; in _init_dev_cache() local
563 for (cv = cn->v; cv; cv = cv->next) { in _init_dev_cache()
564 if (cv->type != CFG_STRING) { in _init_dev_cache()
570 if (!dev_cache_add_dir(cv->v.str)) { in _init_dev_cache()
572 cv->v.str); in _init_dev_cache()
580 for (cv = cn->v; cv; cv = cv->next) { in _init_dev_cache()
581 if (cv->type != CFG_STRING) { in _init_dev_cache()
587 if (!dev_cache_add_loopfile(cv->v.str)) { in _init_dev_cache()
589 "device cache", cv->v.str); in _init_dev_cache()
757 struct config_value *cv; in _init_formats() local
761 for (cv = cn->v; cv; cv = cv->next) { in _init_formats()
762 if (cv->type != CFG_STRING) { in _init_formats()
767 if (!(lib = load_shared_library(cmd, cv->v.str, in _init_formats()
773 "format functions", cv->v.str); in _init_formats()
919 struct config_value *cv; in _init_segtypes() local
923 for (cv = cn->v; cv; cv = cv->next) { in _init_segtypes()
924 if (cv->type != CFG_STRING) { in _init_segtypes()
929 seglib.libname = cv->v.str; in _init_segtypes()