Home
last modified time | relevance | path

Searched refs:reasonLength (Results 1 – 9 of 9) sorted by relevance

/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/crashreporter/
H A Dmac_utils.mm18 unsigned int reasonLength = [reason length];
23 unichar* reasonBuffer = (unichar*)moz_xmalloc(sizeof(unichar) * (reasonLength + 1));
32 reasonBuffer[reasonLength] = '\0';
/dports/www/firefox-legacy/firefox-52.8.0esr/toolkit/crashreporter/
H A Dmac_utils.mm18 unsigned int reasonLength = [reason length];
23 unichar* reasonBuffer = (unichar*)moz_xmalloc(sizeof(unichar) * (reasonLength + 1));
32 reasonBuffer[reasonLength] = '\0';
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/Interop/Windows/winhttp/
H A DInterop.winhttp.cs285 uint reasonLength); in WinHttpWebSocketShutdown() argument
292 uint reasonLength); in WinHttpWebSocketShutdown() argument
299 uint reasonLength); in WinHttpWebSocketClose() argument
306 uint reasonLength); in WinHttpWebSocketClose() argument
313 uint reasonLength, in WinHttpWebSocketQueryCloseStatus() argument
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/WebSockets/
H A DWebSocketPipe.cs192 ushort reasonLength; in GetCloseStatus()
193 int hr = _context.GetCloseStatus(out statusCode, out reasonPtr, out reasonLength); in GetCloseStatus()
210 closeStatusDescription = new String((char*)reasonPtr, 0, reasonLength); in GetCloseStatus()
/dports/security/snowflake-tor/snowflake-ead5a960d7fa19dc890ccbfc0765c5ab6629eaa9/vendor/github.com/pion/rtcp/
H A Dgoodbye.go133 reasonLength := len(g.Reason) + 1
135 l := headerLength + srcsLength + reasonLength
/dports/devel/mutagen/mutagen-0.11.8/vendor/github.com/pion/rtcp/
H A Dgoodbye.go134 reasonLength := len(g.Reason) + 1
136 l := headerLength + srcsLength + reasonLength
/dports/net/liveMedia/live/liveMedia/
H A DRTCP.cpp646 u_int8_t reasonLength = *pkt; in processIncomingReport()
647 if (reasonLength > length-1) { in processIncomingReport()
651 reasonLength, length-1); in processIncomingReport()
653 reasonLength = length-1; in processIncomingReport()
655 reason = new char[reasonLength + 1]; in processIncomingReport()
656 for (unsigned i = 0; i < reasonLength; ++i) { in processIncomingReport()
659 reason[reasonLength] = '\0'; in processIncomingReport()
1196 unsigned const reasonLength = strlen(reason);
1197 reasonLength8Bits = reasonLength < 0xFF ? (u_int8_t)reasonLength : 0xFF;
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/codec/
H A DQuicWriteCodec.cpp626 QuicInteger reasonLength(connectionCloseFrame.reasonPhrase.size()); in writeFrame() local
641 reasonLength.getSize() + connectionCloseFrame.reasonPhrase.size(); in writeFrame()
648 builder.write(reasonLength); in writeFrame()
/dports/net/vino/vino-3.22.0/server/libvncserver/rfb/
H A Drfbproto.h267 uint32_t reasonLength; member