Searched defs:fileStat (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/tools/aapt/
H A DFileFinder.cpp24 struct stat fileStat; local
25 if (stat(filename, &fileStat) == -1) {
28 return(S_ISDIR(fileStat.st_mode));
34 struct stat fileStat; local
35 if (stat(filename, &fileStat) == -1) {
38 return(S_ISREG(fileStat.st_mode));

Completed in 27 milliseconds