Lines Matching defs:file
35 * If file-system access is to be excluded, this module has no function,
73 struct dirent *file; /* The latest directory entry */
107 dr->file = NULL;
249 dr->file = NULL;
255 * Read the next file from the directory opened with _dr_open_dir().
260 * return char * The name of the new file, or NULL if we reached
273 if(readdir_r(dr->dir, dr->buffer, &dr->file) == 0 && dr->file)
274 return dr->file->d_name;
276 dr->file = readdir(dr->dir);
277 if(dr->file)
278 return dr->file->d_name;
299 struct stat statbuf; /* The file-statistics return buffer */
301 * Look up the file attributes.
306 * Is the file a directory?