Home | History | Annotate | Download | only in files

Lines Matching refs:stat_

19   memset(&stat_, 0, sizeof(stat_));
23 return S_ISDIR(stat_.st_mode);
31 return stat_.st_size;
35 return base::Time::FromTimeT(stat_.st_mtime);
102 if (recursive_ && S_ISDIR(i->stat_.st_mode))
105 if ((S_ISDIR(i->stat_.st_mode) && (file_type_ & DIRECTORIES)) ||
106 (!S_ISDIR(i->stat_.st_mode) && (file_type_ & FILES)))
141 ret = lstat(full_name.value().c_str(), &info.stat_);
143 ret = stat(full_name.value().c_str(), &info.stat_);
151 memset(&info.stat_, 0, sizeof(info.stat_));