/system/update_engine/payload_generator/ |
filesystem_interface.h | 48 memset(&file_stat, 0, sizeof(file_stat)); 53 struct stat file_stat; member in struct:chromeos_update_engine::FilesystemInterface::File
|
/external/libbrillo/brillo/ |
file_utils.cc | 68 struct stat file_stat; local 69 if (fstat(scoped_fd.get(), &file_stat) != -1 && 70 S_ISREG(file_stat.st_mode) && file_stat.st_uid == uid && 71 file_stat.st_gid == gid) {
|
/external/autotest/client/bin/ |
site_sysinfo.py | 74 class file_stat(object): class in inherits:object 130 self._log_stats[file_path] = file_stat(file_path)
|
/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;
|
/frameworks/compile/mclinker/lib/Support/ |
FileHandle.cpp | 67 struct ::stat file_stat; local 68 if (-1 == ::fstat(pHandler, &file_stat)) { 72 pSize = file_stat.st_size;
|
/system/core/bootstat/ |
boot_event_record_store.cpp | 41 struct stat file_stat; local 42 if (stat(path.c_str(), &file_stat) == -1) { 47 *uptime = file_stat.st_mtime; 104 struct stat file_stat; local 105 if (stat(record_path.c_str(), &file_stat) == -1) { 113 struct utimbuf times = {/* actime */ file_stat.st_atime, /* modtime */ value};
|
/bionic/linker/ |
linker_phdr.cpp | 768 struct stat file_stat; variable in typeref:struct:stat 769 if (TEMP_FAILURE_RETRY(fstat(fd, &file_stat)) != 0) { 772 off_t file_size = file_stat.st_size; [all...] |
/external/autotest/client/site_tests/platform_CompressedSwapPerf/src/ |
hog.c | 116 struct stat file_stat; local 117 if (stat(argv[1], &file_stat) == 0) { 118 if (S_ISSOCK(file_stat.st_mode)) {
|
/external/llvm/utils/unittest/googletest/src/ |
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/curl/lib/ |
file.c | 311 struct_stat file_stat; local 349 if(fstat(fd, &file_stat)) { 355 data->state.resume_from = (curl_off_t)file_stat.st_size;
|
/external/google-breakpad/src/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 | 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/libbrillo/brillo/streams/ |
file_stream.cc | 54 struct stat file_stat; variable in typeref:struct:brillo::FileDescriptor::stat 55 if (fstat(fd_, &file_stat) < 0) 57 return file_stat.st_mode; 61 struct stat file_stat; variable in typeref:struct:brillo::FileDescriptor::stat 62 if (fstat(fd_, &file_stat) < 0) 64 return file_stat.st_size;
|
/external/libbrillo/policy/ |
device_policy_impl.cc | 399 struct stat file_stat; local 400 stat(policy_path_.value().c_str(), &file_stat); 401 if (file_stat.st_uid != 0) { 405 stat(keyfile_path_.value().c_str(), &file_stat); 406 if (file_stat.st_uid != 0) {
|
/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/protobuf/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/vulkan-validation-layers/tests/gtest-1.7.0/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);
|
/hardware/intel/common/libva/va/ |
va_fool.c | 272 struct stat file_stat = {0}; local 283 fstat(fd, &file_stat); 290 fool_ctx->segbuf_enc = realloc(fool_ctx->segbuf_enc, file_stat.st_size); 291 read(fd, fool_ctx->segbuf_enc, file_stat.st_size); 297 codedbuf->size = file_stat.st_size; 309 struct stat file_stat = {0}; local 314 fstat(fd, &file_stat); 315 fool_ctx->segbuf_jpg = realloc(fool_ctx->segbuf_jpg, file_stat.st_size); 316 read(fd, fool_ctx->segbuf_jpg, file_stat.st_size); 322 codedbuf->size = file_stat.st_size [all...] |
/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/v8/src/base/platform/ |
platform-posix.cc | 405 struct stat file_stat; local 406 if (fstat(fileno(file), &file_stat) != 0) return NULL; 407 bool is_regular_file = ((file_stat.st_mode & S_IFREG) != 0);
|
/toolchain/binutils/binutils-2.25/gold/ |
fileread.cc | 103 struct stat file_stat; local 105 if (stat(filename, &file_stat) < 0) 108 mtime->seconds = file_stat.st_mtim.tv_sec; 109 mtime->nanoseconds = file_stat.st_mtim.tv_nsec; 111 mtime->seconds = file_stat.st_mtime; 946 struct stat file_stat; local 949 if (fstat(this->descriptor_, &file_stat) < 0) 953 return Timespec(file_stat.st_mtim.tv_sec, file_stat.st_mtim.tv_nsec); 955 return Timespec(file_stat.st_mtime, 0) [all...] |