Searched refs:file_stat (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/libbcc/lib/
H A DFileBase.cpp100 struct stat fd_stat, file_stat; local
114 if (::stat(mName.c_str(), &file_stat) == 0) {
122 return ((fd_stat.st_dev == file_stat.st_dev) &&
123 (fd_stat.st_ino == file_stat.st_ino));
/frameworks/compile/mclinker/lib/Support/
H A DFileHandle.cpp67 struct ::stat file_stat; local
68 if (-1 == ::fstat(pHandler, &file_stat)) {
72 pSize = file_stat.st_size;
/frameworks/av/media/vndk/xmlparser/1.0/
H A DMediaCodecsXmlParser.cpp54 struct stat file_stat; local
55 if (stat(out_path->c_str(), &file_stat) == 0 &&
56 S_ISREG(file_stat.st_mode)) {
/frameworks/av/media/libstagefright/
H A DMediaCodecList.cpp187 struct stat file_stat; local
188 if (stat(out_path, &file_stat) == 0 && S_ISREG(file_stat.st_mode)) {

Completed in 139 milliseconds