HomeSort by: relevance | last modified time | path
    Searched defs:file_stat (Results 1 - 4 of 4) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/gtest/src/
gtest-filepath.cc 212 posix::StatStruct file_stat;
213 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
239 posix::StatStruct file_stat; local
240 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
241 posix::IsDir(file_stat);
  /xsrc/external/mit/MesaLib.old/dist/src/gtest/src/
gtest-filepath.cc 216 posix::StatStruct file_stat;
217 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
243 posix::StatStruct file_stat; local
244 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
245 posix::IsDir(file_stat);
  /xsrc/external/mit/fontconfig/dist/fc-cat/
fc-cat.c 356 struct stat file_stat; local
363 cache = FcDirCacheLoadFile (arg, &file_stat);
  /xsrc/external/mit/fontconfig/dist/src/
fccache.c 346 FcDirCacheOpenFile (const FcChar8 *cache_file, struct stat *file_stat)
352 if (FcStat (cache_file, file_stat) < 0)
361 if (fstat (fd, file_stat) < 0)
386 struct stat file_stat, dir_stat; local
428 fd = FcDirCacheOpenFile (cache_hashed, &file_stat);
430 ret = (*callback) (config, fd, &file_stat, &dir_stat, &latest_mtime, closure);
1138 FcDirCacheLoadFile (const FcChar8 *cache_file, struct stat *file_stat)
1145 if (!file_stat)
1146 file_stat = &my_file_stat;
1150 fd = FcDirCacheOpenFile (cache_file, file_stat);
    [all...]

Completed in 5 milliseconds