Home
last modified time | relevance | path

Searched refs:maxBytesToWrite (Results 1 – 17 of 17) sorted by relevance

/dports/java/netty/netty-4.1.53.Final/
H A Dnetty_unix_filedescriptor.c122 …lass clazz, jint fd, jobjectArray buffers, const jint offset, jint length, jlong maxBytesToWrite) { in netty_unix_filedescriptor_writev() argument
133 if (bytesLength > maxBytesToWrite && i != offset) { in netty_unix_filedescriptor_writev()
137 maxBytesToWrite -= bytesLength; in netty_unix_filedescriptor_writev()
156 if (bytesLength > maxBytesToWrite && i != offset) { in netty_unix_filedescriptor_writev()
160 maxBytesToWrite -= bytesLength; in netty_unix_filedescriptor_writev()
179 if (bytesLength > maxBytesToWrite && i != offset) { in netty_unix_filedescriptor_writev()
183 maxBytesToWrite -= bytesLength; in netty_unix_filedescriptor_writev()
202 if (bytesLength > maxBytesToWrite && i != offset) { in netty_unix_filedescriptor_writev()
206 maxBytesToWrite -= bytesLength; in netty_unix_filedescriptor_writev()
/dports/java/netty/netty-4.1.53.Final/io/netty/channel/unix/
H A DFileDescriptor.java108 …public final long writev(ByteBuffer[] buffers, int offset, int length, long maxBytesToWrite) throw… in writev() argument
109 long res = writev(fd, buffers, offset, min(IOV_MAX, length), maxBytesToWrite); in writev()
228 …tic native long writev(int fd, ByteBuffer[] buffers, int offset, int length, long maxBytesToWrite); in writev() argument
/dports/devel/emscripten/emscripten-2.0.3/system/include/emscripten/
H A Dfetch.h233 void emscripten_asmfs_remote_url(const char *filename, char *outRemoteUrl, int maxBytesToWrite);
/dports/devel/emscripten/emscripten-2.0.3/site/source/docs/api_reference/
H A Dpreamble.js.rst171 .. js:function:: stringToUTF8(str, outPtr, maxBytesToWrite)
180maxBytesToWrite: A limit on the number of bytes that this function can at most write out. If the s…
192 .. js:function:: stringToUTF16(str, outPtr, maxBytesToWrite)
201maxBytesToWrite: A limit on the number of bytes that this function can at most write out. If the s…
213 .. js:function:: stringToUTF32(str, outPtr, maxBytesToWrite)
222maxBytesToWrite: A limit on the number of bytes that this function can at most write out. If the s…
/dports/devel/emscripten/emscripten-2.0.3/system/lib/fetch/
H A Dasmfs.cpp286 static int strcpy_safe(char* dst, const char* src, int maxBytesToWrite) { in strcpy_safe() argument
288 char* dst_end = dst + maxBytesToWrite - 1; in strcpy_safe()
642 void emscripten_asmfs_remote_url(const char* filename, char* outRemoteUrl, int maxBytesToWrite) { in emscripten_asmfs_remote_url() argument
643 if (maxBytesToWrite <= 0 || !outRemoteUrl) in emscripten_asmfs_remote_url()
646 if (maxBytesToWrite == 1) in emscripten_asmfs_remote_url()
684 int nWritten = strcpy_safe(outRemoteUrl, node->remoteurl, maxBytesToWrite); in emscripten_asmfs_remote_url()
685 if (maxBytesToWrite - nWritten > 1 && outRemoteUrl[nWritten - 1] != '/' && in emscripten_asmfs_remote_url()
696 maxBytesToWrite - nWritten); in emscripten_asmfs_remote_url()
712 strcpy_safe(outRemoteUrl, uriEncodedPathName, maxBytesToWrite); in emscripten_asmfs_remote_url()
/dports/devel/raknet/raknet-3.9.2_10,1/Source/
H A DBitStream_NoTemplate.cpp332 …dBytesSafe( const char *input, const unsigned int inputLength, const unsigned int maxBytesToWrite ) in WriteAlignedBytesSafe() argument
340 …nedBytes((const unsigned char*) input, inputLength < maxBytesToWrite ? inputLength : maxBytesToWri… in WriteAlignedBytesSafe()
H A DBitStream.cpp344 …Safe( const char *inByteArray, const unsigned int inputLength, const unsigned int maxBytesToWrite ) in WriteAlignedBytesSafe() argument
352 …es((const unsigned char*) inByteArray, inputLength < maxBytesToWrite ? inputLength : maxBytesToWri… in WriteAlignedBytesSafe()
H A DBitStream.h559 …afe( const char *inByteArray, const unsigned int inputLength, const unsigned int maxBytesToWrite );
H A DBitStream_NoTemplate.h786 …BytesSafe( const char *input, const unsigned int inputLength, const unsigned int maxBytesToWrite );
/dports/audio/carla/Carla-2.4.1/source/modules/water/text/
H A DCharacterFunctions.h325 …hDestByteLimit (DestCharPointerType& dest, SrcCharPointerType src, size_t maxBytesToWrite) noexcept in copyWithDestByteLimit() argument
328 ssize_t maxBytes = (ssize_t) maxBytesToWrite; in copyWithDestByteLimit()
/dports/audio/lewton/lewton-0.10.2/cargo-crates/curl-sys-0.4.25/curl/tests/python_dependencies/impacket/
H A Dsmb3.py1044 maxBytesToWrite = self._Connection['MaxWriteSize']
1046 maxBytesToWrite = bytesToWrite
1049 packet['CreditCharge'] = ( 1 + (maxBytesToWrite - 1) / 65536)
1051 maxBytesToWrite = min(65536,bytesToWrite)
1055 smbWrite['Length'] = maxBytesToWrite
1058 smbWrite['Buffer'] = data[:maxBytesToWrite]
1065 return maxBytesToWrite
/dports/net/py-impacket/impacket-0.9.17/impacket/
H A Dsmb3.py1102 maxBytesToWrite = self._Connection['MaxWriteSize']
1104 maxBytesToWrite = bytesToWrite
1107 packet['CreditCharge'] = ( 1 + (maxBytesToWrite - 1) / 65536)
1109 maxBytesToWrite = min(65536,bytesToWrite)
1113 smbWrite['Length'] = maxBytesToWrite
1116 smbWrite['Buffer'] = data[:maxBytesToWrite]
1123 return maxBytesToWrite
/dports/graphics/mupdf/mupdf-1.18.0-source/thirdparty/curl/tests/python_dependencies/impacket/
H A Dsmb3.py1044 maxBytesToWrite = self._Connection['MaxWriteSize']
1046 maxBytesToWrite = bytesToWrite
1049 packet['CreditCharge'] = ( 1 + (maxBytesToWrite - 1) / 65536)
1051 maxBytesToWrite = min(65536,bytesToWrite)
1055 smbWrite['Length'] = maxBytesToWrite
1058 smbWrite['Buffer'] = data[:maxBytesToWrite]
1065 return maxBytesToWrite
/dports/audio/carla/Carla-2.4.1/source/modules/juce_core/text/
H A Djuce_CharacterFunctions.h511 …hDestByteLimit (DestCharPointerType& dest, SrcCharPointerType src, size_t maxBytesToWrite) noexcept
514 auto maxBytes = (ssize_t) maxBytesToWrite;
/dports/audio/libopenshot-audio/libopenshot-audio-0.2.2/JuceLibraryCode/modules/juce_core/text/
H A Djuce_CharacterFunctions.h504 …hDestByteLimit (DestCharPointerType& dest, SrcCharPointerType src, size_t maxBytesToWrite) noexcept
507 auto maxBytes = (ssize_t) maxBytesToWrite;
/dports/devel/juce/JUCE-f37e9a1/modules/juce_core/text/
H A Djuce_CharacterFunctions.h550 …hDestByteLimit (DestCharPointerType& dest, SrcCharPointerType src, size_t maxBytesToWrite) noexcept
553 auto maxBytes = (ssize_t) maxBytesToWrite;
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/file_manager/image_loader/piex/
H A Dpiex.js.wasm1maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesTo…