Home
last modified time | relevance | path

Searched refs:spec1 (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/mtree/
H A Dmtree.c84 FILE *spec1, *spec2; in main() local
91 spec1 = stdin; in main()
120 if (spec1 == stdin) { in main()
121 spec1 = fopen(optarg, "r"); in main()
122 if (spec1 == NULL) in main()
303 dump_nodes(stdout, "", spec(spec1), Dflag); in main()
307 status = mtree_specspec(spec1, spec2); in main()
309 status = verify(spec1); in main()
/freebsd/lib/libugidfw/
H A Dugidfw.c514 char *spec1, *spec2, *endp; in bsde_parse_uidrange() local
518 spec1 = strsep(&spec2, ":"); in bsde_parse_uidrange()
520 pwd = getpwnam(spec1); in bsde_parse_uidrange()
524 value = strtoul(spec1, &endp, 10); in bsde_parse_uidrange()
526 snprintf(errstr, buflen, "invalid uid: '%s'", spec1); in bsde_parse_uidrange()
560 char *spec1, *spec2, *endp; in bsde_parse_gidrange() local
564 spec1 = strsep(&spec2, ":"); in bsde_parse_gidrange()
566 grp = getgrnam(spec1); in bsde_parse_gidrange()
570 value = strtoul(spec1, &endp, 10); in bsde_parse_gidrange()
572 snprintf(errstr, buflen, "invalid gid: '%s'", spec1); in bsde_parse_gidrange()
/freebsd/sys/dev/fdc/
H A Dfdc.c285 static int spec1 = NE7_SPEC_1(6, 240); variable
286 SYSCTL_INT(_debug_fdc, OID_AUTO, spec1, CTLFLAG_RW, &spec1, 0,
525 if (fdc_cmd(fdc, 3, NE7CMD_SPECIFY, spec1, spec2, 0)) in fdc_reset()