Home
last modified time | relevance | path

Searched full:stream (Results 1 – 25 of 3622) sorted by relevance

12345678910>>...145

/src/sys/i386/i386/
H A Dbpf_jit_machdep.h73 /* A stream of native binary code */
97 * The first parameter is the stream that will receive the data.
102 typedef void (*emit_func)(bpf_bin_stream *stream, u_int value, u_int n);
110 emitm(&stream, (11 << 4) | (1 << 3) | (r32 & 0x7), 1); \
111 emitm(&stream, i32, 4); \
116 emitm(&stream, 0x89, 1); \
117 emitm(&stream, \
123 emitm(&stream, 0x8b, 1); \
124 emitm(&stream, \
126 emitm(&stream, off, 1); \
[all …]
/src/contrib/libder/libder/
H A Dlibder_read.c97 libder_stream_init(struct libder_ctx *ctx, struct libder_stream *stream) in libder_stream_init() argument
101 stream->stream_ctx = ctx; in libder_stream_init()
102 stream->stream_error = 0; in libder_stream_init()
103 stream->stream_eof = false; in libder_stream_init()
104 stream->stream_offset = 0; in libder_stream_init()
105 stream->stream_consumed = 0; in libder_stream_init()
106 stream->stream_last_commit = 0; in libder_stream_init()
107 if (stream->stream_type == LDST_NONE) { in libder_stream_init()
108 assert(stream->stream_src_buf != NULL); in libder_stream_init()
109 assert(stream->stream_bufsz != 0); in libder_stream_init()
[all …]
/src/sys/amd64/amd64/
H A Dbpf_jit_machdep.h98 /* A stream of native binary code */
122 * The first parameter is the stream that will receive the data.
127 typedef void (*emit_func)(bpf_bin_stream *stream, u_int value, u_int n);
135 emitm(&stream, (11 << 4) | (1 << 3) | (r32 & 0x7), 1); \
136 emitm(&stream, i32, 4); \
141 emitm(&stream, 0x48, 1); \
142 emitm(&stream, (11 << 4) | (1 << 3) | (r64 & 0x7), 1); \
143 emitm(&stream, i64, 4); \
144 emitm(&stream, (i64 >> 32), 4); \
149 emitm(&stream, 0x89, 1); \
[all …]
/src/secure/lib/libcrypto/man/man7/
H A Dossl-guide-quic-multi-stream.760 .IX Title "OSSL-GUIDE-QUIC-MULTI-STREAM 7ossl"
61 .TH OSSL-GUIDE-QUIC-MULTI-STREAM 7ossl 2026-01-27 3.5.5 OpenSSL
67 ossl\-guide\-quic\-multi\-stream
68 \&\- OpenSSL Guide: Writing a simple multi\-stream QUIC client
72 QUIC multi\-stream application. It assumes a basic understanding of QUIC and how
77 In a QUIC multi\-stream application we separate out the concepts of a QUIC
78 "connection" and a QUIC "stream". A connection object represents the overarching
86 normally you would have at least one). A stream is used to send and receive
87 data between the two peers. Each stream is also represented by an \fBSSL\fR
88 object. A stream is logically independent of all the other streams associated
[all …]
/src/lib/libc/stdio/
H A Dstdio.344 library provides a simple and efficient buffered stream
54 A stream is associated with an external file (which may be a physical
63 associated with the stream is positioned at the start of the file (byte
77 A file is disassociated from a stream by
81 to the host environment) before the stream is disassociated from the file.
111 No translation is performed and no extra padding appears on any stream.
130 Initially, the standard error stream
143 whenever such an input stream is read.
242 .It "clearerr check and reset stream status"
244 .It "fclose close a stream"
[all …]
/src/crypto/openssl/doc/man7/
H A Dossl-guide-quic-multi-stream.pod6 demos/guide/quic-multi-stream.c
12 ossl-guide-quic-multi-stream
13 - OpenSSL Guide: Writing a simple multi-stream QUIC client
18 QUIC multi-stream application. It assumes a basic understanding of QUIC and how
24 In a QUIC multi-stream application we separate out the concepts of a QUIC
25 "connection" and a QUIC "stream". A connection object represents the overarching
33 normally you would have at least one). A stream is used to send and receive
34 data between the two peers. Each stream is also represented by an B<SSL>
35 object. A stream is logically independent of all the other streams associated
36 with the same connection. Data sent on a stream is guaranteed to be delivered
[all …]
/src/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCocoa.h16 #include "lldb/Utility/Stream.h"
22 bool NSIndexSetSummaryProvider(ValueObject &valobj, Stream &stream,
25 bool NSArraySummaryProvider(ValueObject &valobj, Stream &stream,
29 bool NSDataSummaryProvider(ValueObject &valobj, Stream &stream,
32 bool NSNumberSummaryProvider(ValueObject &valobj, Stream &stream,
35 bool NSDecimalNumberSummaryProvider(ValueObject &valobj, Stream &stream,
38 bool NSNotificationSummaryProvider(ValueObject &valobj, Stream &stream,
41 bool NSTimeZoneSummaryProvider(ValueObject &valobj, Stream &stream,
44 bool NSMachPortSummaryProvider(ValueObject &valobj, Stream &stream,
47 bool NSDateSummaryProvider(ValueObject &valobj, Stream &stream,
[all …]
/src/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_zlib.c52 zlib_deflateInit(z_stream *stream, int level) in zlib_deflateInit() argument
55 stream->zalloc = zcalloc; in zlib_deflateInit()
56 stream->opaque = NULL; in zlib_deflateInit()
57 stream->zfree = zcfree; in zlib_deflateInit()
59 return (deflateInit(stream, level)); in zlib_deflateInit()
63 zlib_deflate(z_stream *stream, int flush) in zlib_deflate() argument
65 return (deflate(stream, flush)); in zlib_deflate()
69 zlib_deflateEnd(z_stream *stream) in zlib_deflateEnd() argument
71 return (deflateEnd(stream)); in zlib_deflateEnd()
75 zlib_inflateInit(z_stream *stream) in zlib_inflateInit() argument
[all …]
/src/crypto/openssl/doc/man3/
H A DSSL_get_stream_id.pod7 SSL_is_stream_local - get QUIC stream ID and stream type information
25 The SSL_get_stream_id() function returns the QUIC stream ID for a QUIC stream
26 SSL object, or for a QUIC connection SSL object which has a default stream
30 on the stream, and returns one of the following values:
36 The SSL object is a QUIC connection SSL object without a default stream
41 The SSL object is a non-QUIC SSL object, or is a QUIC stream object (or QUIC
42 connection SSL object with a default stream attached), and that stream is a
43 bidirectional QUIC stream.
47 The SSL object is a QUIC stream object (or QUIC connection SSL object with a
48 default stream attached), and that stream is a unidirectional QUIC stream which
[all …]
H A DSSL_set_default_stream_mode.pod7 SSL_DEFAULT_STREAM_MODE_AUTO_UNI - manage the default stream for a QUIC
22 A QUIC connection SSL object may have a default stream attached to it. A default
23 stream is a QUIC stream to which calls to L<SSL_read(3)> and L<SSL_write(3)>
24 made on a QUIC connection SSL object are redirected. Default stream handling
28 When not disabled, a default stream is automatically created on an outgoing
31 A QUIC stream must be explicitly designated as client-initiated or
36 server to open the first server-initiated stream, and then bind this as the
37 default stream. Conversely, if L<SSL_write(3)> is called before any call to
39 client-initiated stream, and binds this as the default stream.
41 By default, the default stream created is bidirectional. If a unidirectional
[all …]
H A DSSL_new_stream.pod6 SSL_STREAM_FLAG_ADVANCE - create a new locally-initiated QUIC stream
20 a new locally-initiated bidirectional or unidirectional QUIC stream and returns
21 the newly created QUIC stream SSL object.
23 If the B<SSL_STREAM_FLAG_UNI> flag is passed, a unidirectional stream is
24 created; else a bidirectional stream is created.
26 To retrieve the stream ID of the newly created stream, use
29 It is the caller's responsibility to free the QUIC stream SSL object using
31 of the QUIC stream SSL object; in other words, the QUIC stream SSL object must
34 Once a stream has been created using SSL_new_stream(), it may be used in the
37 This function can only be used to create stream objects for locally-initiated
[all …]
/src/crypto/openssl/include/internal/
H A Dquic_stream_map.h26 * QUIC Stream
29 * Logical QUIC stream composing all relevant send and receive components.
39 * QUIC Send Stream States
43 * exception of the NONE state which represents the absence of a send stream
47 * data has been acknowledged received, or we have reset the stream, we don't
49 * don't have a QUIC_SSTREAM on a receive-only stream.
60 * QUIC Receive Stream States
64 * of the NONE state which represents the absence of a receive stream part.
70 * don't need a QUIC_RSTREAM on a send-only stream.
89 * QUIC Stream ID. Do not assume that this encodes a type as this is a
[all …]
H A Dquic_stream.h27 * QUIC Send Stream
30 * The QUIC Send Stream Manager (QUIC_SSTREAM) is responsible for:
32 * - accepting octet strings of stream data;
34 * - generating corresponding STREAM frames;
36 * - receiving notifications of lost frames, in order to generate new STREAM
40 * reuse memory used to store acknowledged stream data;
42 * - informing the caller of how much more stream data it can accept into
44 * data which can be written to a stream is not infinite and to allow the
47 * The QUIC_SSTREAM is instantiated once for every stream with a send component
48 * (i.e., for a unidirectional send stream or for the send component of a
[all …]
/src/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h20 /// The base class for all minidump streams. The "Type" of the stream
21 /// corresponds to the Stream Type field in the minidump file. The "Kind" field
24 /// one stream Kind can be used to represent multiple stream Types (e.g. any
25 /// unrecognised stream Type will be handled via RawContentStream). The mapping
27 struct Stream { struct
39 Stream(StreamKind Kind, minidump::StreamType Type) : Kind(Kind), Type(Type) {} in Stream() argument
40 virtual ~Stream(); // anchor
45 /// Get the stream Kind used for representing streams of a given Type.
48 /// Create an empty stream of the given Type.
49 static std::unique_ptr<Stream> create(minidump::StreamType Type);
[all …]
/src/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.h16 #include "lldb/Utility/Stream.h"
31 ValueObject &valobj, Stream &stream,
35 ValueObject &valobj, Stream &stream,
39 ValueObject &valobj, Stream &stream,
43 ValueObject &valobj, Stream &stream,
47 ValueObject &valueObj, Stream &stream,
51 ValueObject &valobj, Stream &stream,
55 ValueObject &valobj, Stream &stream,
59 ValueObject &valobj, Stream &stream,
63 ValueObject &valobj, Stream &stream,
[all …]
H A DLibCxx.cpp25 #include "lldb/Utility/Stream.h"
80 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) { in LibcxxFunctionSummaryProvider() argument
103 stream.Printf(" __f_ = %" PRIu64, callable_info.member_f_pointer_value); in LibcxxFunctionSummaryProvider()
107 stream.Printf( in LibcxxFunctionSummaryProvider()
113 stream.Printf( in LibcxxFunctionSummaryProvider()
119 stream.Printf(" Function = %s ", in LibcxxFunctionSummaryProvider()
128 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &options) { in LibcxxSmartPointerSummaryProvider() argument
142 stream.Printf("nullptr"); in LibcxxSmartPointerSummaryProvider()
150 stream, ValueObject::eValueObjectRepresentationStyleSummary, in LibcxxSmartPointerSummaryProvider()
157 stream.Printf("ptr = 0x%" PRIx64, ptr_sp->GetValueAsUnsigned(0)); in LibcxxSmartPointerSummaryProvider()
[all …]
H A DCxxStringTypes.cpp26 #include "lldb/Utility/Stream.h"
52 static bool CharStringSummaryProvider(ValueObject &valobj, Stream &stream) { in CharStringSummaryProvider() argument
60 options.SetStream(&stream); in CharStringSummaryProvider()
64 stream.Printf("Summary Unavailable"); in CharStringSummaryProvider()
70 static bool CharSummaryProvider(ValueObject &valobj, Stream &stream) { in CharSummaryProvider() argument
85 stream.Printf("%s ", value.c_str()); in CharSummaryProvider()
88 options.SetStream(&stream); in CharSummaryProvider()
98 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &) { in Char8StringSummaryProvider() argument
99 return CharStringSummaryProvider<StringElementType::UTF8>(valobj, stream); in Char8StringSummaryProvider()
103 ValueObject &valobj, Stream &stream, const TypeSummaryOptions &) { in Char16StringSummaryProvider() argument
[all …]
/src/secure/lib/libcrypto/man/man3/
H A DSSL_get_stream_id.369 SSL_is_stream_local \- get QUIC stream ID and stream type information
87 The \fBSSL_get_stream_id()\fR function returns the QUIC stream ID for a QUIC stream
88 SSL object, or for a QUIC connection SSL object which has a default stream
92 on the stream, and returns one of the following values:
95 The SSL object is a QUIC connection SSL object without a default stream
99 The SSL object is a non\-QUIC SSL object, or is a QUIC stream object (or QUIC
100 connection SSL object with a default stream attached), and that stream is a
101 bidirectional QUIC stream.
104 The SSL object is a QUIC stream object (or QUIC connection SSL object with a
105 default stream attached), and that stream is a unidirectional QUIC stream which
[all …]
H A DSSL_set_default_stream_mode.369 SSL_DEFAULT_STREAM_MODE_AUTO_UNI \- manage the default stream for a QUIC
84 A QUIC connection SSL object may have a default stream attached to it. A default
85 stream is a QUIC stream to which calls to \fBSSL_read\fR\|(3) and \fBSSL_write\fR\|(3)
86 made on a QUIC connection SSL object are redirected. Default stream handling
90 When not disabled, a default stream is automatically created on an outgoing
93 A QUIC stream must be explicitly designated as client\-initiated or
98 server to open the first server\-initiated stream, and then bind this as the
99 default stream. Conversely, if \fBSSL_write\fR\|(3) is called before any call to
101 client\-initiated stream, and binds this as the default stream.
103 By default, the default stream created is bidirectional. If a unidirectional
[all …]
/src/usr.sbin/inetd/
H A Dinetd.conf8 #ftp stream tcp nowait root /usr/local/libexec/ftpd ftpd -l
9 #ftp stream tcp6 nowait root /usr/local/libexec/ftpd ftpd -l
10 #ssh stream tcp nowait root /usr/sbin/sshd sshd -i
11 #ssh stream tcp6 nowait root /usr/sbin/sshd sshd -i
12 #telnet stream tcp nowait root /usr/local/libexec/telnetd telnetd
13 #telnet stream tcp6 nowait root /usr/local/libexec/telnetd telnetd
14 #shell stream tcp nowait root /usr/local/sbin/rshd rshd
15 #shell stream tcp6 nowait root /usr/local/sbin/rshd rshd
16 #login stream tcp nowait root /usr/local/sbin/rlogind rlogind
17 #login stream tcp6 nowait root /usr/local/sbin/rlogind rlogind
[all …]
/src/contrib/llvm-project/lldb/source/Utility/
H A DStream.cpp1 //===-- Stream.cpp --------------------------------------------------------===//
9 #include "lldb/Utility/Stream.h"
27 Stream::Stream(uint32_t flags, uint32_t addr_size, ByteOrder byte_order, in Stream() function in Stream
32 Stream::Stream(bool colors) in Stream() function in Stream
37 Stream::~Stream() = default;
39 ByteOrder Stream::SetByteOrder(ByteOrder byte_order) { in SetByteOrder()
45 // Put an offset "uval" out to the stream using the printf format in "format".
46 void Stream::Offset(uint32_t uval, const char *format) { Printf(format, uval); } in Offset()
48 // Put an SLEB128 "uval" out to the stream using the printf format in "format".
49 size_t Stream::PutSLEB128(int64_t sval) { in PutSLEB128()
[all …]
/src/contrib/xz/src/liblzma/api/lzma/
H A Dstream_flags.h5 * \brief .xz Stream Header and Stream Footer encoder and decoder
19 * \brief Size of Stream Header and Stream Footer
21 * Stream Header and Stream Footer have the same size and they are not
29 * \brief Options for encoding/decoding Stream Header and Stream Footer
33 * \brief Stream Flags format version
36 * Stream Header or Stream Footer, a version number is used to
44 * features indicated by the Stream Flags field. The application
47 * the application will decode the Stream incorrectly.
54 * Backward Size must be a multiple of four bytes. In this Stream
57 * Backward Size isn't actually part of the Stream Flags field, but
[all …]
/src/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStream.h1 //===-- Stream.h ------------------------------------------------*- C++ -*-===//
26 /// \class Stream Stream.h "lldb/Utility/Stream.h"
27 /// A stream class that can stream formatted output to a file.
28 class Stream {
36 /// Struct to store information for color highlighting in the stream.
47 /// Utility class for counting the bytes that were written to a stream in a
55 Stream *m_stream;
60 ByteDelta(Stream &s) : m_stream(&s), m_start(s.GetWrittenBytes()) {} in ByteDelta()
61 /// Returns the number of bytes written to the given Stream since this
70 Stream(uint32_t flags, uint32_t addr_size, lldb::ByteOrder byte_order,
[all …]
/src/sys/contrib/libsodium/src/libsodium/randombytes/salsa20/
H A Drandombytes_salsa20_random.c104 static TLS Salsa20Random stream = { variable
149 stream.nonce = sodium_hrtime(); in randombytes_salsa20_random_init()
150 assert(stream.nonce != (uint64_t) 0U); in randombytes_salsa20_random_init()
294 stream.nonce = sodium_hrtime(); in randombytes_salsa20_random_init()
296 assert(stream.nonce != (uint64_t) 0U); in randombytes_salsa20_random_init()
332 memset(stream.rnd32, 0, sizeof stream.rnd32); in randombytes_salsa20_random_stir()
333 stream.rnd32_outleft = (size_t) 0U; in randombytes_salsa20_random_stir()
345 arc4random_buf(stream.key, sizeof stream.key); in randombytes_salsa20_random_stir()
348 if (randombytes_linux_getrandom(stream.key, sizeof stream.key) != 0) { in randombytes_salsa20_random_stir()
352 safe_read(global.random_data_source_fd, stream.key, in randombytes_salsa20_random_stir()
[all …]
/src/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dfsl,imx8qxp-dc-intc.yaml50 (display controller, content stream 0)
53 (display controller, content stream 0)
56 (display controller, content stream 0)
59 (display controller, safety stream 0)
62 (display controller, safety stream 0)
65 (display controller, safety stream 0)
68 (display controller, content stream 1)
71 (display controller, content stream 1)
74 (display controller, content stream 1)
77 (display controller, safety stream 1)
[all …]

12345678910>>...145