/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/acr/ |
nouveau_nvkm_subdev_acr_base.c | 330 struct nvkm_acr_hsf *hsf, *hst; local in function:nvkm_acr_dtor 333 list_for_each_entry_safe(hsf, hst, &acr->hsf, head) {
|
/src/usr.sbin/lpr/lpd/ |
lpd.c | 371 chkplushost(int good, FILE *fhost, char *hst) 391 fatal("address for your hostname (%s) not matched", hst); 600 char hst[NI_MAXHOST], ip[NI_MAXHOST]; local in function:chkhost 617 error = getnameinfo(f, f->sa_len, hst, sizeof(hst), NULL, 0, 620 error = getnameinfo(f, f->sa_len, hst, sizeof(hst), NULL, 0, 625 fatal("Host name for your address (%s) unknown", hst); 628 (void)strlcpy(fromb, hst, sizeof(fromb)); 632 error = getnameinfo(f, f->sa_len, hst, sizeof(hst), NULL, 0 [all...] |
/src/sys/nfs/ |
nfs_vfsops.c | 582 char *pth, *hst; local in function:nfs_mount 655 hst = malloc(MNAMELEN, M_TEMP, M_WAITOK); 656 error = copyinstr(args->hostname, hst, MNAMELEN - 1, &len); 659 memset(&hst[len], 0, MNAMELEN - len); 667 error = mountnfs(args, mp, nam, pth, hst, &vp, l); 670 free(hst, M_TEMP); 683 mountnfs(struct nfs_args *argp, struct mount *mp, struct mbuf *nam, const char *pth, const char *hst, struct vnode **vpp, struct lwp *l) 746 error = set_statvfs_info(pth, UIO_SYSSPACE, hst, UIO_SYSSPACE,
|
/src/sys/fs/nfs/client/ |
nfs_clvfsops.c | 880 char hst[MNAMELEN]; local in function:nfs_mount 1229 error = copyinstr(args.hostname, hst, MNAMELEN - 1, &hstlen); 1232 bzero(&hst[hstlen], MNAMELEN - hstlen); 1233 args.hostname = hst; 1243 bcopy(args.hostname, hst, MNAMELEN); 1244 hst[MNAMELEN - 1] = '\0'; 1271 bcopy(args.hostname, hst, MNAMELEN); 1272 hst[MNAMELEN - 1] = '\0'; 1278 snprintf(srvkrbname, sizeof (srvkrbname), "nfs@%s", hst); 1318 error = mountnfs(&args, mp, nam, hst, krbname, krbnamelen, dirpath [all...] |
/src/usr.sbin/mountd/ |
mountd.c | 921 const char *hst, *usr, *dom; local in function:parse_host_netgroup 930 netgrp = getnetgrent(&hst, &usr, &dom); 937 if (hst == NULL) { 943 if (get_host(line, lineno, hst, *grp)) 948 } while (netgrp && getnetgrent(&hst, &usr, &dom));
|