Home
last modified time | relevance | path

Searched refs:statBuf (Results 1 – 2 of 2) sorted by relevance

/external/bzip2/
Dbzip2.c690 struct MY_STAT statBuf; in cleanUpAndFail() local
701 retVal = MY_STAT ( inName, &statBuf ); in cleanUpAndFail()
984 struct MY_STAT statBuf; in notAStandardFile() local
986 i = MY_LSTAT ( name, &statBuf ); in notAStandardFile()
988 if (MY_S_ISREG(statBuf.st_mode)) return False; in notAStandardFile()
1001 struct MY_STAT statBuf; in countHardLinks() local
1003 i = MY_LSTAT ( name, &statBuf ); in countHardLinks()
1005 return (statBuf.st_nlink - 1); in countHardLinks()
1138 struct MY_STAT statBuf; in compress() local
1185 MY_STAT(inName, &statBuf); in compress()
[all …]
/external/clang/lib/Frontend/
DCompilerInvocation.cpp2185 struct stat statBuf; in getModuleHash() local
2186 if (stat(systemVersionFile.c_str(), &statBuf) == 0) in getModuleHash()
2187 code = hash_combine(code, statBuf.st_mtime); in getModuleHash()