Searched defs:filestat (Results 1 - 2 of 2) sorted by relevance

/bind-9.11.3/lib/isc/unix/
H A Dfile.c427 struct stat filestat; local
428 memset(&filestat,0,sizeof(struct stat));
430 if ((stat(filename, &filestat)) == -1)
433 if(! S_ISREG(filestat.st_mode))
444 struct stat filestat; local
445 memset(&filestat,0,sizeof(struct stat));
447 if ((fstat(fd, &filestat)) == -1)
450 if(! S_ISREG(filestat.st_mode))
462 struct stat filestat; local
463 memset(&filestat,
[all...]
/bind-9.11.3/lib/isc/win32/
H A Dfile.c485 struct stat filestat; local
486 memset(&filestat,0,sizeof(struct stat));
488 if ((stat(filename, &filestat)) == -1)
491 if(! S_ISREG(filestat.st_mode))
502 struct stat filestat; local
503 memset(&filestat,0,sizeof(struct stat));
505 if ((fstat(fd, &filestat)) == -1)
508 if(! S_ISREG(filestat.st_mode))
519 struct stat filestat; local
520 memset(&filestat,
[all...]

Completed in 24 milliseconds