Home
last modified time | relevance | path

Searched refs:file_stat (Results 1 – 3 of 3) sorted by relevance

/frameworks/compile/libbcc/lib/
DFileBase.cpp100 struct stat fd_stat, file_stat; in checkFileIntegrity() local
114 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()
/frameworks/compile/mclinker/lib/Support/
DFileHandle.cpp67 struct ::stat file_stat; in get_size() local
68 if (-1 == ::fstat(pHandler, &file_stat)) { in get_size()
72 pSize = file_stat.st_size; in get_size()
/frameworks/native/cmds/installd/
Ddexopt.cpp1805 struct stat file_stat; in is_file_public() local
1806 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()