/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/chromium_org/base/files/ |
memory_mapped_file_posix.cc | 25 struct stat file_stat; local 26 if (fstat(file_, &file_stat) == kInvalidPlatformFileValue) { 30 length_ = file_stat.st_size;
|
/frameworks/compile/libbcc/lib/Support/ |
FileBase.cpp | 103 struct stat fd_stat, file_stat; local 117 if (::stat(mName.c_str(), &file_stat) == 0) { 125 return ((fd_stat.st_dev == file_stat.st_dev) && 126 (fd_stat.st_ino == file_stat.st_ino)); 251 struct stat file_stat; local 253 if (::fstat(mFD, &file_stat) == 0) { 261 return file_stat.st_size;
|
/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/chromium_org/testing/gtest/src/ |
gtest-filepath.cc | 211 posix::StatStruct file_stat; 212 return posix::Stat(pathname_.c_str(), &file_stat) == 0; 238 posix::StatStruct file_stat; local 239 result = posix::Stat(path.c_str(), &file_stat) == 0 && 240 posix::IsDir(file_stat);
|
/external/chromium_org/third_party/mesa/src/src/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 | 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/mesa3d/src/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/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);
|
/ndk/sources/third_party/googletest/googletest/src/ |
gtest-filepath.cc | 211 posix::StatStruct file_stat; 212 return posix::Stat(pathname_.c_str(), &file_stat) == 0; 238 posix::StatStruct file_stat; local 239 result = posix::Stat(path.c_str(), &file_stat) == 0 && 240 posix::IsDir(file_stat);
|
/external/chromium_org/net/disk_cache/simple/ |
simple_util.cc | 116 struct stat file_stat; local 117 if (stat(path.value().c_str(), &file_stat) != 0) 121 if (GetNanoSecsFromStat(file_stat, &sec, &nsec)) {
|
/frameworks/compile/mclinker/lib/Support/ |
FileHandle.cpp | 69 struct ::stat file_stat; local 70 if (-1 == ::fstat(pHandler, &file_stat)) { 74 pSize = file_stat.st_size;
|
/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/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_org/v8/src/ |
platform-posix.cc | 373 struct stat file_stat; local 374 if (fstat(fileno(file), &file_stat) != 0) return NULL; 375 bool is_regular_file = ((file_stat.st_mode & S_IFREG) != 0);
|
d8.cc | [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/libvpx/libvpx/third_party/googletest/src/src/ |
gtest-all.cc | [all...] |