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

  /external/webkit/Source/WebCore/platform/efl/
SharedBufferEfl.cpp 43 struct stat fileStat;
52 if (fstat(fileno(file), &fileStat)) {
58 result->m_buffer.resize(fileStat.st_size);
59 if (result->m_buffer.size() != static_cast<unsigned>(fileStat.st_size)) {
64 fread(result->m_buffer.data(), 1, fileStat.st_size, file);
  /external/webkit/Source/WebCore/platform/posix/
SharedBufferPOSIX.cpp 48 struct stat fileStat;
49 if (fstat(fd, &fileStat)) {
54 size_t bytesToRead = fileStat.st_size;
55 if (bytesToRead != fileStat.st_size) {
  /frameworks/base/tools/aapt/
FileFinder.cpp 24 struct stat fileStat;
25 if (stat(filename, &fileStat) == -1) {
28 return(S_ISDIR(fileStat.st_mode));
34 struct stat fileStat;
35 if (stat(filename, &fileStat) == -1) {
38 return(S_ISREG(fileStat.st_mode));
  /external/webkit/Source/WebCore/platform/network/win/
DownloadBundleWin.cpp 122 struct _stat64 fileStat;
123 if (_fstat64(_fileno(bundle), &fileStat))
127 fpos_t footerMagicNumberPosition = fileStat.st_size - 4;
147 fpos_t footerLengthPosition = fileStat.st_size - 8;
162 fpos_t footerStartPosition = fileStat.st_size - 8 - footerLength;
  /external/webkit/Tools/Scripts/
svn-create-patch 186 my $fileStat = substr($stat, 0, 1);
188 if ($fileStat eq "A" || $fileStat eq "R") {
192 return "modification" if ($fileStat eq "M" || $propertyStat eq "M");
193 return "deletion" if ($fileStat eq "D");
  /dalvik/vm/analysis/
DexPrepare.cpp 133 struct stat fdStat, fileStat;
195 cc = stat(cacheFileName, &fileStat);
197 fdStat.st_dev != fileStat.st_dev || fdStat.st_ino != fileStat.st_ino)
    [all...]

Completed in 619 milliseconds