Searched defs:bytesWritten (Results 1 - 22 of 22) sorted by relevance

/external/webkit/LayoutTests/http/tests/resources/
H A DportabilityLayer.php28 $bytesWritten = fwrite($handle, $data); variable
31 return $bytesWritten;
/external/libvpx/libmkv/
H A Dtestlibmkv.c60 size_t bytesWritten = fwrite(data, 1, ebml.offset, file_out); local
/external/webkit/Source/WebCore/platform/graphics/win/
H A DDIBPixelData.cpp78 DWORD bytesWritten = 0; local
79 ::WriteFile(hFile, &header, sizeof(header), &bytesWritten, 0);
80 ::WriteFile(hFile, &info, sizeof(info), &bytesWritten, 0);
81 ::WriteFile(hFile, buffer(), bufferLength(), &bytesWritten, 0);
/external/webkit/Source/WebCore/platform/network/
H A DSocketStreamHandleBase.cpp65 int bytesWritten = 0; local
67 bytesWritten = platformSend(data, length);
68 if (bytesWritten < 0)
70 if (m_buffer.size() + length - bytesWritten > bufferSize) {
74 if (bytesWritten < length)
75 m_buffer.append(data + bytesWritten, length - bytesWritten);
99 int bytesWritten = platformSend(m_buffer.data(), m_buffer.size()); local
100 if (bytesWritten <= 0)
103 ASSERT(m_buffer.size() - bytesWritten <
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DCountOutputStream.java26 private int bytesWritten = 0; field in class:CountOutputStream
46 bytesWritten += len;
57 bytesWritten += buf.length;
68 bytesWritten++;
73 * @return the bytesWritten
77 return bytesWritten;
/external/chromium/net/base/
H A Dgzip_filter.cc218 int bytesWritten = *dest_len - zlib_stream_.get()->avail_out; local
224 *dest_len = bytesWritten;
246 *dest_len = bytesWritten;
/external/webkit/Tools/DumpRenderTree/
H A DPixelDumpSupport.cpp130 size_t bytesWritten = fwrite(data, 1, bytesToWriteInThisChunk, stdout); local
131 if (bytesWritten != bytesToWriteInThisChunk)
133 dataRemainingToWrite -= bytesWritten;
134 data += bytesWritten;
/external/webkit/Tools/WebKitTestRunner/cg/
H A DTestInvocationCG.cpp121 size_t bytesWritten = fwrite(data, 1, bytesToWriteInThisChunk, stdout); local
122 if (bytesWritten != bytesToWriteInThisChunk)
124 dataRemainingToWrite -= bytesWritten;
125 data += bytesWritten;
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecUTF8.cpp306 size_t bytesWritten = 0; local
310 U8_APPEND_UNSAFE(bytes.data(), bytesWritten, character);
313 return CString(reinterpret_cast<char*>(bytes.data()), bytesWritten);
/external/skia/include/core/
H A DSkStream.h275 size_t bytesWritten() const { return fBytesWritten; } function in class:SkMemoryWStream
294 size_t bytesWritten() const { return fBytesWritten; } function in class:SkDynamicMemoryWStream
/external/webkit/Source/WebCore/fileapi/
H A DFileStreamProxy.cpp185 static void didWrite(ScriptExecutionContext*, FileStreamProxy* proxy, int bytesWritten) argument
188 proxy->client()->didWrite(bytesWritten);
198 int bytesWritten = m_stream->write(blobURL, position, length); local
199 m_context->postTask(createCallbackTask(&didWrite, this, bytesWritten));
/external/webkit/Source/WebCore/platform/brew/
H A DFileSystemBrew.cpp235 int bytesWritten = IFILE_Write(handle, data, length); local
236 if (!bytesWritten)
238 return bytesWritten;
/external/webkit/Source/WebCore/platform/gtk/
H A DFileSystemGtk.cpp297 gsize bytesWritten; local
299 data, length, &bytesWritten, 0, 0);
300 return bytesWritten;
/external/webkit/Source/WebCore/platform/posix/
H A DFileSystemPOSIX.cpp123 int bytesWritten = write(handle, data, static_cast<size_t>(length)); local
124 if (bytesWritten >= 0)
125 return bytesWritten;
/external/webkit/Source/WebCore/platform/text/gtk/
H A DTextCodecGtk.cpp448 gsize bytesWritten = 0; local
477 &bytesRead, &bytesWritten,
508 result.append(reinterpret_cast<UChar*>(buffer), bytesWritten / sizeof(UChar));
529 gsize bytesWritten = 0; local
542 &bytesRead, &bytesWritten, local
546 if (bytesWritten > 0) {
547 result.grow(size + bytesWritten);
548 memcpy(result.data() + size, buffer, bytesWritten);
549 size += bytesWritten;
/external/webkit/Source/WebCore/platform/text/mac/
H A DTextCodecMac.cpp137 unsigned long bytesWritten = 0; local
151 reinterpret_cast<unsigned char*>(outputBuffer), outputBufferLength, &bytesWritten);
185 static_cast<unsigned char*>(outputBuffer), outputBufferLength, &bytesWritten);
190 if (status == kTECBufferBelowMinimumSizeErr && bytesWritten != 0)
194 outputLength = bytesWritten;
213 int bytesWritten = 0; local
214 OSStatus status = decode(sourcePointer, sourceLength, bytesRead, buffer, sizeof(buffer), bytesWritten);
254 ASSERT(!(bytesWritten % sizeof(UChar)));
255 result.append(buffer, bytesWritten / sizeof(UChar));
261 unsigned long bytesWritten local
[all...]
/external/webkit/Source/WebCore/plugins/
H A DPluginStream.cpp447 int bytesWritten = writeToFile(m_tempFileHandle, data, length); local
448 if (bytesWritten != length)
/external/webkit/Source/WebCore/platform/network/win/
H A DResourceHandleWin.cpp191 DWORD bytesWritten; local
195 &bytesWritten);
196 d->m_bytesRemainingToWrite -= bytesWritten;
/external/webkit/Source/WebCore/platform/network/cf/
H A DResourceHandleCFNet.cpp214 static void didSendBodyData(CFURLConnectionRef conn, CFIndex bytesWritten, CFIndex totalBytesWritten, CFIndex totalBytesExpectedToWrite, const void *clientInfo) argument
/external/webkit/Source/WebKit/win/
H A DWebHistory.cpp394 CFIndex bytesWritten = CFWriteStreamWrite(stream.get(), dataPtr, length); local
395 if (bytesWritten <= 0) {
399 dataPtr += bytesWritten;
400 length -= bytesWritten;
/external/webkit/Tools/DumpRenderTree/qt/
H A DDumpRenderTreeQt.cpp1017 quint32 bytesWritten = fwrite(ptr, 1, bytesToWriteInThisChunk, stdout); local
1018 if (bytesWritten != bytesToWriteInThisChunk)
1020 dataRemainingToWrite -= bytesWritten;
1021 ptr += bytesWritten;
/external/icu4c/test/cintltst/
H A Dcitertst.c1510 int bytesWritten = sprintf(codepointText, " %04X", *codepoints++); local
1511 if (bytesWritten <= 0) {
1514 codepointText += bytesWritten;

Completed in 402 milliseconds