Home | History | Annotate | Download | only in stand

Lines Matching defs:dp

84 typedef struct dirent	DP;
89 register char *dp;
94 for (dp = dirbuf; (dp < (dirbuf + size)) &&
95 (dp + ((DP *)dp)->d_reclen) < (dirbuf + size);
96 dp += ((DP *)dp)->d_reclen) {
97 if (((DP *)dp)->d_fileno == 0)
99 if (((DP *)dp)->d_namlen > NAME_MAX + 1) {
103 printf("%d\t%s\n", ((DP *)dp)->d_fileno,
104 ((DP *)dp)->d_name);