Lines Matching defs:dir
34 DIR *
37 struct DIR *dir = (struct DIR *)xmalloc (sizeof (struct DIR));
39 struct FAB *dfab = &dir->fab;
42 memset (dir, 0, sizeof *dir);
58 free (dir);
64 return dir;
78 readdir (DIR *dir)
80 struct FAB *dfab = &dir->fab;
82 struct direct *dentry = &dir->dir;
87 dnam->nam$l_rsa = dir->d_result;
117 closedir (DIR *dir)
119 if (dir != NULL)
121 struct FAB *dfab = &dir->fab;
126 free (dir);