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

  /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...]
  /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)) {
  /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/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/llvm/utils/unittest/googletest/
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/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);
  /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);
d8.cc 997 struct stat file_stat;
998 if (fstat(fileno(file), &file_stat) != 0) return NULL;
999 bool is_regular_file = ((file_stat.st_mode & S_IFREG) != 0);
    [all...]
  /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;
  /external/bluetooth/glib/gio/
glocalfile.c 1706 struct stat file_stat, home_stat; local
    [all...]
  /frameworks/compile/mclinker/utils/gtest/src/
gtest-all.cpp     [all...]

Completed in 543 milliseconds