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

/frameworks/compile/libbcc/lib/Support/
H A DFileBase.cpp83 struct stat fd_stat, file_stat; local
97 if (::stat(mName.c_str(), &file_stat) == 0) {
105 return ((fd_stat.st_dev == file_stat.st_dev) &&
106 (fd_stat.st_ino == file_stat.st_ino));
231 struct stat file_stat; local
233 if (::fstat(mFD, &file_stat) == 0) {
241 return file_stat.st_size;
/frameworks/compile/mclinker/lib/Support/
H A DFileHandle.cpp61 struct ::stat file_stat; local
62 if (-1 == ::fstat(pHandler, &file_stat)) {
66 pSize = file_stat.st_size;

Completed in 1266 milliseconds