Lines Matching refs:modref
456 struct radiusd_module_ref *modref; variable
463 modref = create_module_ref($2);
465 if (modref == NULL)
467 authen.auth = modref;
471 struct radiusd_module_ref *modref; variable
474 if ((modref = create_module_ref($2.v[i]))
479 TAILQ_INSERT_TAIL(&authen.deco, modref, next);
488 struct radiusd_module_ref *modref, *modreft; variable
501 if ((modref = create_module_ref($6.v[i]))
504 TAILQ_INSERT_TAIL(&acct->deco, modref, next);
512 TAILQ_FOREACH_SAFE(modref, &acct->deco, next,
514 TAILQ_REMOVE(&acct->deco, modref, next);
515 free(modref);
943 struct radiusd_module_ref *modref, *modreft; in create_authen() local
956 if ((modref = create_module_ref(deco[i])) == NULL) in create_authen()
958 TAILQ_INSERT_TAIL(&auth->deco, modref, next); in create_authen()
962 TAILQ_FOREACH_SAFE(modref, &auth->deco, next, modreft) { in create_authen()
963 TAILQ_REMOVE(&auth->deco, modref, next); in create_authen()
964 free(modref); in create_authen()
1001 struct radiusd_module_ref *modref; in create_module_ref() local
1007 if ((modref = calloc(1, sizeof(struct radiusd_module_ref))) == NULL) { in create_module_ref()
1011 modref->module = module; in create_module_ref()
1013 return (modref); in create_module_ref()