Home
last modified time | relevance | path

Searched refs:postBuffer (Results 1 – 25 of 163) sorted by relevance

1234567

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/Sockets/
H A D_TransmitFileOverlappedAsyncResult.cs49 …internal void SetUnmanagedStructures(byte[] preBuffer, byte[] postBuffer, FileStream fileStream, T… in SetUnmanagedStructures() argument
65 if (postBuffer != null && postBuffer.Length>0) in SetUnmanagedStructures()
83 if (postBuffer != null && postBuffer.Length>0) { in SetUnmanagedStructures()
84 m_buffers.postBufferLength = postBuffer.Length; in SetUnmanagedStructures()
85 objectsToPin[--buffsNumber] = postBuffer; in SetUnmanagedStructures()
102 if (postBuffer != null && postBuffer.Length > 0) in SetUnmanagedStructures()
104 m_buffers.postBuffer = Marshal.UnsafeAddrOfPinnedArrayElement(postBuffer, 0); in SetUnmanagedStructures()
114 …internal void SetUnmanagedStructures(byte[] preBuffer, byte[] postBuffer, FileStream fileStream, T… in SetUnmanagedStructures() argument
117 SetUnmanagedStructures(preBuffer, postBuffer, fileStream, flags, false); in SetUnmanagedStructures()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/src/System/Net/Sockets/
H A DTransmitFileAsyncResult.Windows.cs19 …SetUnmanagedStructures(FileStream fileStream, byte[] preBuffer, byte[] postBuffer, bool doDisconne… in SetUnmanagedStructures() argument
29 if (postBuffer != null && postBuffer.Length > 0) in SetUnmanagedStructures()
42 if (postBuffer != null && postBuffer.Length > 0) in SetUnmanagedStructures()
44 objectsToPin[--buffsNumber] = postBuffer; in SetUnmanagedStructures()
H A DSocket.Unix.cs126 …private void SendFileInternal(string fileName, byte[] preBuffer, byte[] postBuffer, TransmitFileOp… in SendFileInternal() argument
159 if (postBuffer != null && postBuffer.Length > 0) in SendFileInternal()
161 Send(postBuffer); in SendFileInternal()
165 …rivate async Task SendFileInternalAsync(FileStream fileStream, byte[] preBuffer, byte[] postBuffer) in SendFileInternalAsync() argument
197 if (postBuffer != null && postBuffer.Length > 0) in SendFileInternalAsync()
200 … await this.SendAsync(new ArraySegment<byte>(postBuffer), SocketFlags.None).ConfigureAwait(false); in SendFileInternalAsync()
204 …Result BeginSendFileInternal(string fileName, byte[] preBuffer, byte[] postBuffer, TransmitFileOpt… in BeginSendFileInternal() argument
212 … return TaskToApm.Begin(SendFileInternalAsync(fileStream, preBuffer, postBuffer), callback, state); in BeginSendFileInternal()
H A DSocket.Windows.cs209 …private void SendFileInternal(string fileName, byte[] preBuffer, byte[] postBuffer, TransmitFileOp… in SendFileInternal() argument
220 errorCode = SocketPal.SendFile(_handle, fileHandle, preBuffer, postBuffer, flags); in SendFileInternal()
237 …Result BeginSendFileInternal(string fileName, byte[] preBuffer, byte[] postBuffer, TransmitFileOpt… in BeginSendFileInternal() argument
244 …or errorCode = SocketPal.SendFileAsync(_handle, fileStream, preBuffer, postBuffer, flags, asyncRes… in BeginSendFileInternal()
H A DSocketPal.Windows.cs193 …loseSocket handle, SafeFileHandle fileHandle, byte[] preBuffer, byte[] postBuffer, TransmitFileOpt… in SendFile() argument
196 fixed (byte* postPinnedBuffer = postBuffer) in SendFile()
198 … bool success = TransmitFileHelper(handle, fileHandle, null, preBuffer, postBuffer, flags); in SendFile()
865 byte[] postBuffer, in TransmitFileHelper() argument
878 if (postBuffer != null && postBuffer.Length > 0) in TransmitFileHelper()
881 transmitFileBuffers.Tail = Marshal.UnsafeAddrOfPinnedArrayElement(postBuffer, 0); in TransmitFileHelper()
882 transmitFileBuffers.TailLength = postBuffer.Length; in TransmitFileHelper()
891 …afeCloseSocket handle, FileStream fileStream, byte[] preBuffer, byte[] postBuffer, TransmitFileOpt… in SendFileAsync() argument
893 …asyncResult.SetUnmanagedStructures(fileStream, preBuffer, postBuffer, (flags & (TransmitFileOption… in SendFileAsync()
901 postBuffer, in SendFileAsync()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/tests/FunctionalTests/
H A DSendFile.cs40 …int size, bool sendPreAndPostBuffers, out byte[] preBuffer, out byte[] postBuffer, out Fletcher32 … in CreateFileToSend() argument
64 postBuffer = null; in CreateFileToSend()
67 postBuffer = new byte[256]; in CreateFileToSend()
68 random.NextBytes(postBuffer); in CreateFileToSend()
69 checksum.Add(postBuffer, 0, postBuffer.Length); in CreateFileToSend()
118 byte[] postBuffer; in SendFile_Synchronous()
120 …reateFileToSend(bytesToSend, sendPreAndPostBuffers, out preBuffer, out postBuffer, out sentChecksu… in SendFile_Synchronous()
170 … client.SendFile(filename, preBuffer, postBuffer, TransmitFileOptions.UseDefaultWorkerThread); in SendFile_Synchronous()
191 byte[] preBuffer, postBuffer; in SendFile_APM()
193 …reateFileToSend(bytesToSend, sendPreAndPostBuffers, out preBuffer, out postBuffer, out sentChecksu… in SendFile_APM()
[all …]
/dports/net/kea/kea-2.0.1/src/lib/cc/tests/
H A Djson_feed_unittests.cc83 feed.postBuffer(&input_json[i], chunk); in testRead()
119 feed.postBuffer(&input_json[i], chunk); in testRead()
139 ASSERT_NO_THROW(feed.postBuffer(&input_json[0], input_json.size())); in testInvalidRead()
162 feed.postBuffer(&json[0], json.size()); in TEST_F()
173 feed.postBuffer(&json[0], json.size()); in TEST_F()
347 feed.postBuffer(&json[0], json.size()); in TEST_F()
373 feed.postBuffer(&json[0], json.size()); in TEST_F()
395 feed.postBuffer(&json[0], json.size()); in TEST_F()
418 feed.postBuffer(&json[0], json.size()); in TEST_F()
442 feed.postBuffer(&json[0], json.size()); in TEST_F()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/renderings/
H A DTableRenderingContentInput.java42 …public TableRenderingContentInput(IMemoryRendering rendering, int preBuffer, int postBuffer, BigIn… in TableRenderingContentInput() argument
46 fPostBuffer = postBuffer; in TableRenderingContentInput()
78 public void setPostBuffer(int postBuffer) { in setPostBuffer() argument
79 fPostBuffer = postBuffer; in setPostBuffer()
H A DTableRenderingContentDescriptor.java59 public void setPostBuffer(int postBuffer) { in setPostBuffer() argument
60 fPostBuffer = postBuffer; in setPostBuffer()
H A DTableRenderingPreferencePage.java135 int postBuffer = fPostBufferSize.getIntValue(); in validatePageSize() local
146 if (preBuffer < 1 || postBuffer < 1) in validatePageSize()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/doc/topics/git/
H A Dtroubleshooting_git.md37 git config http.postBuffer 52428800
192 [http.postBuffer](https://git-scm.com/docs/git-config#Documentation/git-config.txt-httppostBuffer)
195 repository, you should set `http.postBuffer` to `524288000`:
198 # Set the http.postBuffer size, in bytes
199 git config http.postBuffer 524288000
202 - You can increase the `http.postBuffer` on the server side:
209 # Set the http.postBuffer size, in bytes
210 "http" => ["postBuffer => 524288000"]
222 even a depth of 1 may be too large, thus requiring the `postBuffer` change.
223 If you increase your local `postBuffer` but the NGINX value on the backend is still
/dports/net/kea/kea-2.0.1/src/lib/http/tests/
H A Drequest_parser_unittests.cc47 parser.postBuffer(&http_req[0], http_req.size()); in doParse()
63 parser.postBuffer(&http_req[0], http_req.size()); in testInvalidHttpRequest()
103 parser.postBuffer(&http_req[i], chunk); in TEST_F()
156 parser.postBuffer(&http_req[0], http_req.size()); in TEST_F()
358 ASSERT_NO_THROW(parser.postBuffer(&http_req[0], http_req.size())); in TEST_F()
H A Dresponse_parser_unittests.cc47 parser.postBuffer(&http_resp[0], http_resp.size()); in doParse()
63 parser.postBuffer(&http_resp[0], http_resp.size()); in testInvalidHttpResponse()
99 parser.postBuffer(&http_resp[0], chunk); in testResponseWithJson()
173 parser.postBuffer(&http_resp[0], http_resp.size()); in TEST_F()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNetscapeBrowserFuncs.cpp222 const char* postBuffer = 0; in parsePostBuffer() local
230 postBuffer = fileContents->data(); in parsePostBuffer()
235 postBuffer = buffer; in parsePostBuffer()
240 if (startsWithBlankLine(postBuffer, postBufferSize)) { in parsePostBuffer()
241 postBuffer++; in parsePostBuffer()
244 int location = locationAfterFirstBlankLine(postBuffer, postBufferSize); in parsePostBuffer()
247 headerFields = parseRFC822HeaderFields(postBuffer, location); in parsePostBuffer()
259 postBuffer += location; in parsePostBuffer()
267 bodyData.append(postBuffer, postBufferSize); in parsePostBuffer()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_core/native/
H A Djuce_curl_Network.cpp333 postBuffer = &headersAndPostData; in connect()
556 if (curl == nullptr || postBuffer == nullptr || lastError != CURLE_OK) in curlReadCallback()
561 size_t max = jmin (postBuffer->getSize() - postPosition, len); in curlReadCallback()
562 memcpy (ptr, (char*)postBuffer->getData() + postPosition, max); in curlReadCallback()
639 const MemoryBlock* postBuffer = nullptr; member in juce::WebInputStream::Pimpl
/dports/audio/carla/Carla-2.4.1/source/modules/juce_core/native/
H A Djuce_curl_Network.cpp327 postBuffer = &headersAndPostData; in connect()
550 if (curl == nullptr || postBuffer == nullptr || lastError != CURLE_OK) in curlReadCallback()
555 size_t max = jmin (postBuffer->getSize() - postPosition, len); in curlReadCallback()
556 memcpy (ptr, (char*)postBuffer->getData() + postPosition, max); in curlReadCallback()
633 const MemoryBlock* postBuffer = nullptr; member in juce::WebInputStream::Pimpl
/dports/audio/libopenshot-audio/libopenshot-audio-0.2.2/JuceLibraryCode/modules/juce_core/native/
H A Djuce_curl_Network.cpp327 postBuffer = &headersAndPostData; in connect()
550 if (curl == nullptr || postBuffer == nullptr || lastError != CURLE_OK) in curlReadCallback()
555 size_t max = jmin (postBuffer->getSize() - postPosition, len); in curlReadCallback()
556 memcpy (ptr, (char*)postBuffer->getData() + postPosition, max); in curlReadCallback()
633 const MemoryBlock* postBuffer = nullptr; member in juce::WebInputStream::Pimpl
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.core.filebuffers.tests/src/org/eclipse/core/filebuffers/tests/
H A DFileStoreFileBufferFunctions.java506 public IFileBuffer preBuffer, postBuffer; in test12_1() field in FileStoreFileBufferFunctions.Listener
518 postBuffer= buffer; in test12_1()
526 …ount == 0 && listener.postCount == 0 && listener.preBuffer == null && listener.postBuffer == null); in test12_1()
540 assertTrue(listener.postBuffer == fileBuffer); in test12_1()
558 public IFileBuffer preBuffer, postBuffer; in test12_2() field in FileStoreFileBufferFunctions.Listener
570 postBuffer= buffer; in test12_2()
578 …ount == 0 && listener.postCount == 0 && listener.preBuffer == null && listener.postBuffer == null); in test12_2()
589 assertTrue(listener.postBuffer == fileBuffer); in test12_2()
H A DFileBufferFunctions.java540 public IFileBuffer preBuffer, postBuffer; in test12_1() field in FileBufferFunctions.Listener
552 postBuffer= buffer; in test12_1()
560 …ount == 0 && listener.postCount == 0 && listener.preBuffer == null && listener.postBuffer == null); in test12_1()
574 assertSame(fileBuffer, listener.postBuffer); in test12_1()
592 public IFileBuffer preBuffer, postBuffer; in test12_2() field in FileBufferFunctions.Listener
604 postBuffer= buffer; in test12_2()
612 …ount == 0 && listener.postCount == 0 && listener.preBuffer == null && listener.postBuffer == null); in test12_2()
623 assertSame(fileBuffer, listener.postBuffer); in test12_2()
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/scripts/misc/
H A Ddefensive-submodule.sh7 git config --global http.postBuffer 524288000
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A D_OSSOCK.cs38 internal IntPtr postBuffer;// Pointer to Buffer field in System.Net.TransmitFileBuffers
/dports/net/kea/kea-2.0.1/src/lib/http/
H A Dhttp_message_parser_base.h142 void postBuffer(const void* buf, const size_t buf_size);
H A Dhttp_message_parser_base.cc61 HttpMessageParserBase::postBuffer(const void* buf, const size_t buf_size) { in postBuffer() function in isc::http::HttpMessageParserBase
/dports/net/kea/kea-2.0.1/src/lib/cc/
H A Djson_feed.h212 void postBuffer(const void* buf, const size_t buf_size);
/dports/net/kea/kea-2.0.1/src/lib/config/
H A Dclient_connection.cc231 feed_->postBuffer(&read_buf_[0], length); in doReceive()

1234567