Home
last modified time | relevance | path

Searched refs:fgn (Results 1 – 5 of 5) sorted by relevance

/freebsd/lib/libc/gen/
H A Dfdevname.c38 struct fiodgname_arg fgn; in fdevname_r() local
40 fgn.buf = buf; in fdevname_r()
41 fgn.len = len; in fdevname_r()
43 if (_ioctl(fd, FIODGNAME, &fgn) == -1) in fdevname_r()
/freebsd/sys/kern/
H A Dtty_pts.c282 struct fiodgname_arg *fgn; in ptsdev_ioctl() local
287 fgn = data; in ptsdev_ioctl()
290 if (i > fgn->len) in ptsdev_ioctl()
292 return (copyout(p, fiodgname_buf_get_ptr(fgn, cmd), i)); in ptsdev_ioctl()
/freebsd/sys/fs/devfs/
H A Ddevfs_vnops.c890 struct fiodgname_arg fgn; in fiodgname_buf_get_ptr() member
899 return (fgnup->fgn.buf); in fiodgname_buf_get_ptr()
912 struct fiodgname_arg *fgn; in devfs_ioctl() local
941 fgn = ap->a_data; in devfs_ioctl()
944 if (i > fgn->len) in devfs_ioctl()
947 error = copyout(p, fiodgname_buf_get_ptr(fgn, com), i); in devfs_ioctl()
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_compat.c1578 struct fiodgname_arg *fgn; in linux_file_ioctl() local
1616 fgn = data; in linux_file_ioctl()
1619 if (i > fgn->len) { in linux_file_ioctl()
1623 error = copyout(p, fiodgname_buf_get_ptr(fgn, cmd), i); in linux_file_ioctl()
/freebsd/contrib/ntp/ntpd/
H A Dntp_parser.c2708 filegen_node *fgn; in yyparse()
2710 fgn = create_filegen_node((yyvsp[-1].Integer), (yyvsp[0].Attr_val_fifo)); in yyparse()
2711 APPEND_G_FIFO(cfgt.filegen_opts, fgn); in yyparse()
2724 filegen_node *fgn; yyparse() local