/src/sys/net/ |
if_ieee1394subr.c | 256 struct ieee1394_fraghdr *ifh; local in function:ieee1394_fragment 275 ifh = mtod(m0, struct ieee1394_fraghdr *); 276 ifh->ifh_ft_size = htons(IEEE1394_FT_MORE | (totlen - 1)); 277 ifh->ifh_etype_off = etype; 278 ifh->ifh_dgl = htons(ic->ic_dgl); 279 ifh->ifh_reserved = 0; 291 ifh = mtod(m, struct ieee1394_fraghdr *); 292 ifh->ifh_ft_size = 294 ifh->ifh_etype_off = htons(off); 295 ifh->ifh_dgl = htons(ic->ic_dgl) 404 struct ieee1394_fraghdr *ifh; local in function:ieee1394_reass [all...] |
/src/sys/fs/filecorefs/ |
filecore_vfsops.c | 527 struct ifid ifh; local in function:filecore_fhtovp 535 memcpy(&ifh, fhp, sizeof(ifh)); 536 if ((error = VFS_VGET(mp, ifh.ifid_ino, lktype, &nvp)) != 0) { 583 struct ifid ifh; local in function:filecore_vptofh 589 memset(&ifh, 0, sizeof(ifh)); 590 ifh.ifid_len = sizeof(struct ifid); 591 ifh.ifid_ino = ip->i_number; 592 memcpy(fhp, &ifh, sizeof(ifh)) [all...] |
/src/sys/fs/cd9660/ |
cd9660_vfsops.c | 707 struct ifid ifh; local in function:cd9660_fhtovp 712 if (fhp->fid_len != sizeof(ifh)) 715 memcpy(&ifh, fhp, sizeof(ifh)); 718 ifh.ifid_ino, ifh.ifid_start); 721 if ((error = VFS_VGET(mp, ifh.ifid_ino, lktype, &nvp)) != 0) { 909 struct ifid ifh; local in function:cd9660_vptofh 917 memset(&ifh, 0, sizeof(ifh)); [all...] |
/src/sys/fs/adosfs/ |
advfsops.c | 695 struct ifid ifh; local in function:adosfs_fhtovp 709 memcpy(&ifh, fhp, sizeof(ifh)); 711 if ((error = VFS_VGET(mp, ifh.ifid_ino, lktype, &nvp)) != 0) { 731 struct ifid ifh; local in function:adosfs_vptofh 739 memset(&ifh, 0, sizeof(ifh)); 740 ifh.ifid_len = sizeof(struct ifid); 741 ifh.ifid_ino = ap->block; 742 ifh.ifid_start = ap->block [all...] |
/src/sys/dev/usb/ |
uhso.c | 460 struct usbd_interface *ifh; local in function:uhso_attach 500 status = usbd_device2interface_handle(sc->sc_udev, i, &ifh); 517 uhso_mux_attach(sc, ifh, UHSOPORT(spec)); 520 uhso_bulk_attach(sc, ifh, UHSOPORT(spec)); 523 uhso_ifnet_attach(sc, ifh, UHSOPORT(spec)); 589 struct usbd_interface *ifh; local in function:uhso_switch_mode 594 status = usbd_device2interface_handle(udev, 0, &ifh); 598 ed = uhso_get_endpoint(ifh, UE_BULK, UE_DIR_OUT); 602 status = usbd_open_pipe(ifh, ed->bEndpointAddress, 0, &pipe); 690 uhso_get_endpoint(struct usbd_interface *ifh, int type, int dir [all...] |