HomeSort by relevance Sort by last modified time
    Searched refs:file_stat (Results 1 - 2 of 2) sorted by null

  /external/gtest/src/
gtest-filepath.cc 176 struct _stat file_stat = {};
177 return _stat(pathname_.c_str(), &file_stat) == 0;
180 struct stat file_stat = {};
181 return stat(pathname_.c_str(), &file_stat) == 0;
203 struct _stat file_stat = {}; local
204 result = _stat(path.c_str(), &file_stat) == 0 &&
205 (_S_IFDIR & file_stat.st_mode) != 0;
208 struct stat file_stat = {}; local
209 result = stat(pathname_.c_str(), &file_stat) == 0 &&
210 S_ISDIR(file_stat.st_mode)
    [all...]
  /external/bluetooth/glib/gio/
glocalfile.c 1706 struct stat file_stat, home_stat; local
    [all...]

Completed in 85 milliseconds