HomeSort by: relevance | last modified time | path
    Searched defs:dent (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/include/drm/
drm_debugfs.h 81 struct dentry *dent; member in struct:drm_info_node
  /src/tests/fs/kernfs/
t_basic.c 46 struct dirent *dent; local in function:ATF_TC_BODY
61 dent = (void *)buf;
62 ATF_REQUIRE_STREQ(dent->d_name, ".");
63 dent = _DIRENT_NEXT(dent);
64 ATF_REQUIRE_STREQ(dent->d_name, "..");
65 dent = _DIRENT_NEXT(dent);
66 ATF_REQUIRE_STREQ(dent->d_name, "boottime");
  /src/sys/ufs/chfs/
chfs_subr.c 138 struct dirent dent; local in function:chfs_filldir
141 memset(&dent, 0, sizeof(dent));
143 dent.d_fileno = ino;
146 dent.d_type = DT_BLK;
150 dent.d_type = DT_CHR;
154 dent.d_type = DT_DIR;
158 dent.d_type = DT_FIFO;
162 dent.d_type = DT_LNK;
166 dent.d_type = DT_REG
    [all...]
  /src/lib/libpuffs/
dispatcher.c 792 struct dirent *dent; local in function:dispatch
810 dent = (struct dirent *)
815 opcookie, dent, &auxt->pvnr_offset,
  /src/usr.sbin/puffs/mount_psshfs/
subr.c 504 struct psshfs_dir *dent; local in function:doreclaim
515 dent = lookup_by_entry(psn_parent->dir, psn_parent->dentnext, pn);
516 if (dent)
517 dent->entry = NULL;
  /src/sys/fs/tmpfs/
tmpfs_subr.c 811 struct dirent dent; local in function:tmpfs_dir_getdents
821 memset(&dent, 0, sizeof(dent));
824 if ((error = tmpfs_dir_getdotents(node, &dent, uio)) != 0) {
830 if ((error = tmpfs_dir_getdotents(node, &dent, uio)) != 0) {
854 dent.d_fileno = 1;
855 dent.d_type = DT_WHT;
857 dent.d_fileno = de->td_node->tn_id;
858 dent.d_type = vtype2dt(de->td_node->tn_type);
860 dent.d_namlen = de->td_namelen
    [all...]
  /src/usr.sbin/makefs/
walk.c 202 struct dirent *dent; local in function:walk_dir
226 while ((dent = readdir(dirp)) != NULL) {
227 name = dent->d_name;
  /src/usr.sbin/rarpd/
rarpd.c 527 struct dirent *dent; local in function:rarp_bootable
548 while (dent = readdir(d))
549 if (strncmp(dent->d_name, ipname, 8) == 0)

Completed in 35 milliseconds