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

/frameworks/compile/libbcc/lib/Support/
H A DFileBase.cpp103 struct stat fd_stat, file_stat; local
117 if (::stat(mName.c_str(), &file_stat) == 0) {
125 return ((fd_stat.st_dev == file_stat.st_dev) &&
126 (fd_stat.st_ino == file_stat.st_ino));
251 struct stat file_stat; local
253 if (::fstat(mFD, &file_stat) == 0) {
261 return file_stat.st_size;
/frameworks/compile/mclinker/lib/Support/
H A DFileHandle.cpp69 struct ::stat file_stat; local
70 if (-1 == ::fstat(pHandler, &file_stat)) {
74 pSize = file_stat.st_size;

Completed in 157 milliseconds