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

  /external/libchrome/base/files/
file_posix.cc 110 void File::Info::FromStat(const stat_wrapper_t& stat_info) {
111 is_directory = S_ISDIR(stat_info.st_mode);
112 is_symbolic_link = S_ISLNK(stat_info.st_mode);
113 size = stat_info.st_size;
116 time_t last_modified_sec = stat_info.st_mtim.tv_sec;
117 int64_t last_modified_nsec = stat_info.st_mtim.tv_nsec;
118 time_t last_accessed_sec = stat_info.st_atim.tv_sec;
119 int64_t last_accessed_nsec = stat_info.st_atim.tv_nsec;
120 time_t creation_time_sec = stat_info.st_ctim.tv_sec;
121 int64_t creation_time_nsec = stat_info.st_ctim.tv_nsec
    [all...]
file_util_posix.cc 98 stat_wrapper_t stat_info; local
99 if (CallLstat(path.value().c_str(), &stat_info) != 0) {
105 if (S_ISLNK(stat_info.st_mode)) {
111 if (stat_info.st_uid != owner_uid) {
117 if ((stat_info.st_mode & S_IWGRP) &&
118 !ContainsKey(group_gids, stat_info.st_gid)) {
124 if (stat_info.st_mode & S_IWOTH) {
file.h 134 // Fills this struct with values from |stat_info|.
135 void FromStat(const stat_wrapper_t& stat_info);
  /external/autotest/client/site_tests/logging_UserCrash/
logging_UserCrash.py 256 stat_info = os.stat(crash_dir)
257 user = pwd.getpwuid(stat_info.st_uid)[0]
258 group = grp.getgrgid(stat_info.st_gid)[0]
259 mode = stat.S_IMODE(stat_info.st_mode)
  /external/icu/icu4c/source/tools/tzcode/
tz2icu.cpp 647 struct stat stat_info; local
664 lstat(dir_entry->d_name,&stat_info);
665 if (S_ISDIR(stat_info.st_mode)) {
    [all...]

Completed in 2293 milliseconds