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

  /external/libchrome/base/files/
file_posix.cc 114 void File::Info::FromStat(const stat_wrapper_t& stat_info) {
115 is_directory = S_ISDIR(stat_info.st_mode);
116 is_symbolic_link = S_ISLNK(stat_info.st_mode);
117 size = stat_info.st_size;
120 time_t last_modified_sec = stat_info.st_mtim.tv_sec;
121 int64_t last_modified_nsec = stat_info.st_mtim.tv_nsec;
122 time_t last_accessed_sec = stat_info.st_atim.tv_sec;
123 int64_t last_accessed_nsec = stat_info.st_atim.tv_nsec;
124 time_t creation_time_sec = stat_info.st_ctim.tv_sec;
125 int64_t creation_time_nsec = stat_info.st_ctim.tv_nsec
    [all...]
file_util_posix.cc 97 stat_wrapper_t stat_info; local
98 if (CallLstat(path.value().c_str(), &stat_info) != 0) {
104 if (S_ISLNK(stat_info.st_mode)) {
109 if (stat_info.st_uid != owner_uid) {
114 if ((stat_info.st_mode & S_IWGRP) &&
115 !ContainsKey(group_gids, stat_info.st_gid)) {
121 if (stat_info.st_mode & S_IWOTH) {
    [all...]
file.h 126 // Fills this struct with values from |stat_info|.
127 void FromStat(const stat_wrapper_t& stat_info);
  /external/autotest/client/cros/crash/
user_crash_test.py 316 stat_info = os.stat(crash_dir)
317 user = pwd.getpwuid(stat_info.st_uid).pw_name
318 group = grp.getgrgid(stat_info.st_gid).gr_name
319 mode = stat.S_IMODE(stat_info.st_mode)
  /external/python/cpython3/Lib/test/test_import/
__init__.py 457 stat_info = os.stat(cached_path)
461 self.assertEqual(oct(stat.S_IMODE(stat_info.st_mode)),
476 stat_info = os.stat(cached_path)
478 self.assertEqual(oct(stat.S_IMODE(stat_info.st_mode)), oct(mode))
491 stat_info = os.stat(cached_path)
494 self.assertEqual(oct(stat.S_IMODE(stat_info.st_mode)), oct(expected))
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
tz2icu.cpp 648 struct stat stat_info; local
665 lstat(dir_entry->d_name,&stat_info);
666 if (S_ISDIR(stat_info.st_mode)) {
    [all...]
  /external/python/cpython3/Lib/importlib/
_bootstrap_external.py 87 stat_info = _path_stat(path)
90 return (stat_info.st_mode & 0o170000) == mode
    [all...]

Completed in 340 milliseconds