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

  /frameworks/compile/libbcc/lib/Support/
FileBase.cpp 91 struct stat fd_stat, file_stat; local
105 if (::stat(mName.c_str(), &file_stat) == 0) {
113 return ((fd_stat.st_dev == file_stat.st_dev) &&
114 (fd_stat.st_ino == file_stat.st_ino));
239 struct stat file_stat; local
241 if (::fstat(mFD, &file_stat) == 0) {
249 return file_stat.st_size;
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-filepath.cc 115 struct _stat file_stat; local
116 return _stat(pathname_.c_str(), &file_stat) == 0;
118 struct stat file_stat;
119 return stat(pathname_.c_str(), &file_stat) == 0;
129 struct _stat file_stat; local
130 file_stat.st_mode = 0;
131 result = _stat(removed_sep.c_str(), &file_stat) == 0 &&
132 (_S_IFDIR & file_stat.st_mode) != 0;
134 struct stat file_stat; local
135 file_stat.st_mode = 0
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest-filepath.cc 207 posix::StatStruct file_stat;
208 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
234 posix::StatStruct file_stat; local
235 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
236 posix::IsDir(file_stat);
  /external/open-vcdiff/gtest/src/
gtest-filepath.cc 178 posix::StatStruct file_stat;
179 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
205 posix::StatStruct file_stat; local
206 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
207 posix::IsDir(file_stat);
  /external/protobuf/gtest/src/
gtest-filepath.cc 178 posix::StatStruct file_stat;
179 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
205 posix::StatStruct file_stat; local
206 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
207 posix::IsDir(file_stat);
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 83 struct ::stat file_stat; local
84 if (-1 == ::fstat(pHandler, &file_stat)) {
88 pSize = file_stat.st_size;
  /external/bluetooth/bluedroid/btif/co/
bta_fs_co.c 332 struct stat file_stat; local
349 if (fstat(fd, &file_stat) == 0)
351 file_size = file_stat.st_size;
    [all...]
  /external/chromium/testing/gtest/src/
gtest-filepath.cc 209 posix::StatStruct file_stat;
210 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
236 posix::StatStruct file_stat; local
237 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
238 posix::IsDir(file_stat);
  /external/gtest/src/
gtest-filepath.cc 209 posix::StatStruct file_stat;
210 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
236 posix::StatStruct file_stat; local
237 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
238 posix::IsDir(file_stat);
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-filepath.cc 209 posix::StatStruct file_stat;
210 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
236 posix::StatStruct file_stat; local
237 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
238 posix::IsDir(file_stat);
  /hardware/ti/wpan/ti_st/uim-sysfs/
uim.c 664 struct stat file_stat; local
694 if (0 == lstat("/st_drv.ko", &file_stat)) {
702 if (0 == lstat(INSTALL_SYSFS_ENTRY, &file_stat)) {
710 if (0 == lstat("/btwilink.ko", &file_stat)) {
721 if (0 == lstat("/fm_drv.ko", &file_stat)) {
732 if (0 == lstat("/gps_drv.ko", &file_stat)) {
743 if (0 == lstat("/fm_v4l2_drv.ko", &file_stat)) {
754 if ((0 == lstat("/dev/radio0", &file_stat)) && chmod("/dev/radio0", 0666) < 0) {
757 if ((0 == lstat("/dev/tifm", &file_stat)) && chmod("/dev/tifm", 0666) < 0) {
  /external/oprofile/opjitconv/
opjitconv.c 256 struct stat file_stat; local
274 if (lstat(dmp_pathname, &file_stat) == -1) {
279 if (S_ISLNK(file_stat.st_mode)) {
348 rc = fstat(jofd, &file_stat);
364 if (!(file_stat.st_ctime < dumpfile_modtime ||
365 file_stat.st_mtime < dumpfile_modtime)) {
  /external/v8/src/
platform-posix.cc 217 struct stat file_stat; local
218 if (fstat(fileno(file), &file_stat) != 0) return NULL;
219 bool is_regular_file = ((file_stat.st_mode & S_IFREG) != 0);
  /hardware/ti/wlan/mac80211/ti-utils/uim_rfkill/
uim.c 689 struct stat file_stat; local
760 if (0 == lstat("/st_drv.ko", &file_stat)) {
768 if (0 == lstat("/dev/rfkill", &file_stat)) {
782 if (0 == lstat(tist_ko_path, &file_stat)) {
805 if (0 == lstat(tist_ko_path, &file_stat)) {
823 if (0 == lstat(tist_ko_path, &file_stat)) {
839 if (0 == lstat("/bt_drv.ko", &file_stat)) {
850 if (0 == lstat("/fm_drv.ko", &file_stat)) {
861 if (0 == lstat("/gps_drv.ko", &file_stat)) {
  /external/chromium/base/
file_util_posix.cc 765 struct stat file_stat; local
766 if (fstat(file_, &file_stat) == base::kInvalidPlatformFileValue) {
770 length_ = file_stat.st_size;

Completed in 887 milliseconds