Searched defs:fileStat (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/platform/efl/
H A DSharedBufferEfl.cpp43 struct stat fileStat; local
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/
H A DSharedBufferPOSIX.cpp48 struct stat fileStat; local
49 if (fstat(fd, &fileStat)) {
54 size_t bytesToRead = fileStat.st_size;
55 if (bytesToRead != fileStat.st_size) {
/external/webkit/Source/WebCore/platform/network/win/
H A DDownloadBundleWin.cpp122 struct _stat64 fileStat; local
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;

Completed in 81 milliseconds