Home | History | Annotate | Download | only in newfs

Lines Matching refs:direct

23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
62 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
114 static int makedir(union Buffer *, struct direct *, int);
1004 struct direct root_dir[] = {
1005 { UFS_ROOTINO, sizeof(struct direct), DT_DIR, 1, "." },
1006 { UFS_ROOTINO, sizeof(struct direct), DT_DIR, 2, ".." },
1008 { LOSTFOUNDINO, sizeof(struct direct), DT_DIR, 10, "lost+found" },
1017 { UFS_ROOTINO, sizeof(struct direct), 1, "." },
1018 { UFS_ROOTINO, sizeof(struct direct), 2, ".." },
1020 { LOSTFOUNDINO, sizeof(struct direct), 10, "lost+found" },
1024 struct direct lost_found_dir[] = {
1025 { LOSTFOUNDINO, sizeof(struct direct), DT_DIR, 1, "." },
1026 { UFS_ROOTINO, sizeof(struct direct), DT_DIR, 2, ".." },
1030 { LOSTFOUNDINO, sizeof(struct direct), 1, "." },
1031 { UFS_ROOTINO, sizeof(struct direct), 2, ".." },
1036 static void copy_dir(struct direct *, struct direct *);
1067 (void)makedir(&buf, (struct direct *)olost_found_dir, 2);
1069 copy_dir((struct direct*)&olost_found_dir[2],
1070 (struct direct*)&buf[i]);
1074 copy_dir(&lost_found_dir[2], (struct direct*)&buf[i]);
1139 (struct direct *)oroot_dir, PREDEFDIR);
1273 makedir(union Buffer *buf, struct direct *protodir, int entries)
1285 copy_dir(&protodir[i], (struct direct*)cp);
1290 copy_dir(&protodir[i], (struct direct*)cp);
1565 copy_dir(struct direct *dir, struct direct *dbuf)