Home
last modified time | relevance | path

Searched defs:bytesToRead (Results 1 – 13 of 13) sorted by relevance

/external/webkit/Source/WebKit2/Platform/CoreIPC/win/
DConnectionWin.cpp129 DWORD bytesToRead = 0; in readEventHandler() local
184 DWORD bytesToRead = 0; in readEventHandler() local
/external/webkit/Source/WebCore/platform/posix/
DSharedBufferPOSIX.cpp54 size_t bytesToRead = fileStat.st_size; in createWithContentsOfFile() local
/external/webkit/Source/WebCore/platform/win/
DSharedBufferWin.cpp54 DWORD bytesToRead = GetFileSize(fileHandle, 0); in createWithContentsOfFile() local
/external/webkit/Source/WebCore/platform/network/
DBlobResourceHandle.cpp374 int bytesToRead = (length > remaining) ? static_cast<int>(remaining) : length; in readDataSync() local
394 long long bytesToRead = m_itemLengthList[m_readItemCount] - m_currentItemReadSize; in readFileSync() local
449 long long bytesToRead = item.length - m_currentItemReadSize; in readDataAsync() local
465 long long bytesToRead = m_itemLengthList[m_readItemCount] - m_currentItemReadSize; in readFileAsync() local
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DDigestInputStream2Test.java111 int bytesToRead = inStream.available(); in test_read$BII() local
/external/webkit/Source/WebCore/platform/
DFileStream.cpp124 int bytesToRead = (remaining < bufferSize) ? static_cast<int>(remaining) : bufferSize; in read() local
/external/webkit/Tools/DumpRenderTree/qt/
DImageDiff.cpp64 size_t bytesToRead = qMin(imageSize, 2048); in main() local
/external/webkit/Source/WebCore/platform/audio/mac/
DAudioFileReaderMac.cpp117 size_t bytesToRead = 0; in readProc() local
/external/webkit/Tools/DumpRenderTree/gtk/
DImageDiff.cpp52 size_t bytesToRead = min<int>(imageSize, 2048); in readPixbufFromStdin() local
/external/webkit/Source/WebCore/platform/graphics/win/
DFontCustomPlatformData.cpp122 size_t bytesToRead = count; in read() local
/external/webkit/Tools/DumpRenderTree/cg/
DImageDiffCG.cpp78 size_t bytesToRead = min(bytesRemaining, 2048); in createImageFromStdin() local
/external/webkit/Tools/DumpRenderTree/win/
DImageDiffCairo.cpp79 size_t bytesToRead = min(bytesRemaining, s_bufferSize); in createImageFromStdin() local
/external/quake/src/com/android/quake/
DDownloaderActivity.java740 private void readIntoDigest(FileInputStream is, long bytesToRead, in readIntoDigest()