Home | History | Annotate | Download | only in base

Lines Matching defs:base

5 #include "base/platform_file.h"
11 #include "base/eintr_wrapper.h"
12 #include "base/file_path.h"
13 #include "base/logging.h"
14 #include "base/utf_string_conversions.h"
16 namespace base {
165 bool TouchPlatformFile(PlatformFile file, const base::Time& last_access_time,
166 const base::Time& last_modified_time) {
193 info->last_modified = base::Time::FromTimeT(file_info.st_mtime);
194 info->last_accessed = base::Time::FromTimeT(file_info.st_atime);
195 info->creation_time = base::Time::FromTimeT(file_info.st_ctime);
199 } // namespace base