Searched refs:file_stat (Results 1 – 3 of 3) sorted by relevance
100 struct stat fd_stat, file_stat; in checkFileIntegrity() local114 if (::stat(mName.c_str(), &file_stat) == 0) { in checkFileIntegrity()122 return ((fd_stat.st_dev == file_stat.st_dev) && in checkFileIntegrity()123 (fd_stat.st_ino == file_stat.st_ino)); in checkFileIntegrity()
67 struct ::stat file_stat; in get_size() local68 if (-1 == ::fstat(pHandler, &file_stat)) { in get_size()72 pSize = file_stat.st_size; in get_size()
1805 struct stat file_stat; in is_file_public() local1806 if (stat(filename.c_str(), &file_stat) == 0) { in is_file_public()1807 return (file_stat.st_mode & S_IROTH) != 0; in is_file_public()