Lines Matching refs:defp
152 def_getuint(char *name, int defvalue, void *defp) in def_getuint() argument
157 if ((p = defread_r(name, defp)) != NULL) in def_getuint()
169 void *defp; in turn_on_default_aging() local
171 if ((defp = defopen_r(PWADMIN)) == NULL) { in turn_on_default_aging()
176 minweeks = def_getuint("MINWEEKS=", MINWEEKS, defp); in turn_on_default_aging()
177 maxweeks = def_getuint("MAXWEEKS=", MAXWEEKS, defp); in turn_on_default_aging()
178 warnweeks = def_getuint("WARNWEEKS=", WARNWEEKS, defp); in turn_on_default_aging()
179 defclose_r(defp); in turn_on_default_aging()
211 void *defp; in def_getint() local
213 if ((defp = defopen_r(PWADMIN)) == NULL) { in def_getint()
216 val = def_getuint(name, defvalue, defp); in def_getint()
217 defclose_r(defp); in def_getint()