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

  /external/lldb/source/Host/common/
FileSpec.cpp 543 struct stat file_stats; local
544 return GetFileStats (this, &file_stats);
603 struct stat file_stats; local
604 if (GetFileStats (this, &file_stats))
605 return file_stats.st_size;
612 struct stat file_stats; local
613 if (GetFileStats (this, &file_stats))
615 mode_t file_type = file_stats.st_mode & S_IFMT;
635 struct stat file_stats; local
636 if (GetFileStats (this, &file_stats))
    [all...]
File.cpp 601 struct stat file_stats; local
602 if (::fstat (fd, &file_stats) == 0)
604 if (file_stats.st_size > offset)
606 const size_t bytes_left = file_stats.st_size - offset;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pstats.py 113 file_stats = os.stat(arg)
114 arg = time.ctime(file_stats.st_mtime) + " " + arg
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pstats.py 113 file_stats = os.stat(arg)
114 arg = time.ctime(file_stats.st_mtime) + " " + arg

Completed in 81 milliseconds