/src/sys/arch/hp300/dev/ |
frodovar.h | 77 const char *fd_name; /* device name */ member in struct:frodo_device
|
frodo.c | 191 for (fd = frodo_subdevs; fd->fd_name != NULL; fd++) { 205 fa.fa_name = fd->fd_name;
|
/src/sys/dev/ic/ |
apple_smc_fan.c | 89 char fd_name[12]; member in struct:fan_desc 249 char name[sizeof(fan_desc.fd_name) + 1]; 296 (void)memcpy(name, fan_desc.fd_name, sizeof(fan_desc.fd_name)); 297 name[sizeof(fan_desc.fd_name)] = '\0';
|
/src/sys/external/bsd/ipf/netinet/ |
ip_dstlist.c | 461 /* itself. When loading filter rules, fd_name is a 'pointer' to the name. */ 464 /* fd_name must include the trailing \0, so it should be strlen(str) + 1. */ 465 /* For simple sanity checking, an upper bound on the size of fd_name is */ 505 if (dest.fd_name < -1 || dest.fd_name > 128) { 510 KMALLOCS(node, ipf_dstnode_t *, sizeof(*node) + dest.fd_name); 516 bzero((char *)node, sizeof(*node) + dest.fd_name); 519 node->ipfd_size = sizeof(*node) + dest.fd_name; 521 if (dest.fd_name > 0) { 523 * fd_name starts out as the length of the string to cop [all...] |
ip_fil_compat.c | 1944 fr->fr_dif.fd_name = -1; 1945 fr->fr_tifs[0].fd_name = -1; 1946 fr->fr_tifs[1].fd_name = -1; 1980 fr->fr_tifs[0].fd_name = nlen; 1986 fr->fr_tifs[1].fd_name = nlen; 1992 fr->fr_dif.fd_name = nlen; 2073 fr->fr_dif.fd_name = -1; 2074 fr->fr_tifs[0].fd_name = -1; 2075 fr->fr_tifs[1].fd_name = -1; 2108 fr->fr_tifs[0].fd_name = nlen [all...] |
fil.c | 4816 if (fp->fr_tif.fd_name != -1) { 4817 if ((fp->fr_tif.fd_name < 0) || 4818 (fp->fr_tif.fd_name >= fp->fr_namelen)) { 4825 if (fp->fr_dif.fd_name != -1) { 4826 if ((fp->fr_dif.fd_name < 0) || 4827 (fp->fr_dif.fd_name >= fp->fr_namelen)) { 4834 if (fp->fr_rif.fd_name != -1) { 4835 if ((fp->fr_rif.fd_name < 0) || 4836 (fp->fr_rif.fd_name >= fp->fr_namelen)) { 7295 if (fdp->fd_name != -1) [all...] |
ip_fil.h | 578 int fd_name; member in struct:frdest
|
/src/sys/dev/wsfont/ |
wsfontdev.c | 90 strncpy(fd.fd_name, f->name, sizeof(fd.fd_name) - 1);
|
/src/usr.sbin/wsfontload/ |
wsfontload.c | 219 printf("%s %dx%d\n", fi.fi_fonts[i].fd_name,
|
/src/sys/dev/wscons/ |
wsconsio.h | 715 char fd_name[64]; member in struct:wsdisplayio_fontdesc
|