Searched refs:file_stat (Results 1 – 4 of 4) 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()
1388 struct stat file_stat; in is_file_public() local1389 if (stat(filename.c_str(), &file_stat) == 0) { in is_file_public()1390 return (file_stat.st_mode & S_IROTH) != 0; in is_file_public()2276 struct stat file_stat; in delete_odex() local2277 if (stat(path, &file_stat) != 0) { in delete_odex()2291 return static_cast<int64_t>(file_stat.st_size); in delete_odex()
560 struct stat file_stat; in GetSize() local561 if (stat(path.c_str(), &file_stat) == 0) { in GetSize()562 return static_cast<int64_t>(file_stat.st_size); in GetSize()