Home
last modified time | relevance | path

Searched refs:file_stat (Results 1 – 4 of 4) 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.cpp1388 struct stat file_stat; in is_file_public() local
1389 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() local
2277 if (stat(path, &file_stat) != 0) { in delete_odex()
2291 return static_cast<int64_t>(file_stat.st_size); in delete_odex()
/frameworks/native/cmds/installd/tests/
Dinstalld_dexopt_test.cpp560 struct stat file_stat; in GetSize() local
561 if (stat(path.c_str(), &file_stat) == 0) { in GetSize()
562 return static_cast<int64_t>(file_stat.st_size); in GetSize()