Lines Matching defs:bdp
403 struct dirent *bdp;
433 bdp = (struct dirent *) inp;
434 reclen = bdp->d_reclen;
435 linuxreclen = LINUX_RECLEN(bdp->d_namlen);
446 linux_dirent->d_ino = bdp->d_fileno;
447 linux_dirent->d_off = bdp->d_off;
452 lbuf[linuxreclen - 1] = bdp->d_type;
453 strlcpy(linux_dirent->d_name, bdp->d_name,
480 struct dirent *bdp;
510 bdp = (struct dirent *) inp;
511 reclen = bdp->d_reclen;
512 linuxreclen = LINUX_RECLEN64(bdp->d_namlen);
522 linux_dirent64->d_ino = bdp->d_fileno;
523 linux_dirent64->d_off = bdp->d_off;
525 linux_dirent64->d_type = bdp->d_type;
526 strlcpy(linux_dirent64->d_name, bdp->d_name,
553 struct dirent *bdp;
560 buflen = sizeof(*bdp);
575 bdp = (struct dirent *) buf;
576 linuxreclen = LINUX_RECLEN(bdp->d_namlen);
578 linux_dirent->d_ino = bdp->d_fileno;
579 linux_dirent->d_off = bdp->d_off;
580 linux_dirent->d_reclen = bdp->d_namlen;
581 strlcpy(linux_dirent->d_name, bdp->d_name,