Home
last modified time | relevance | path

Searched full:streams (Results 1 – 25 of 785) sorted by relevance

12345678910>>...32

/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DStreamUtil.cpp66 SmallVectorImpl<StreamInfo> &Streams) { in discoverStreamPurposes()
67 // It's OK if we fail to load some of these streams, we still attempt to print in discoverStreamPurposes() argument
96 Streams.resize(StreamCount); in discoverStreamPurposes()
99 Streams[StreamIdx] = in discoverStreamPurposes()
102 Streams[StreamIdx] = stream(StreamPurpose::PDB, "PDB Stream", StreamIdx); in discoverStreamPurposes()
104 Streams[StreamIdx] = stream(StreamPurpose::DBI, "DBI Stream", StreamIdx); in discoverStreamPurposes()
106 Streams[StreamIdx] = stream(StreamPurpose::TPI, "TPI Stream", StreamIdx); in discoverStreamPurposes()
108 Streams[StreamIdx] = stream(StreamPurpose::IPI, "IPI Stream", StreamIdx); in discoverStreamPurposes()
110 Streams[StreamIdx] = in discoverStreamPurposes()
113 Streams[StreamId in discoverStreamPurposes()
[all...]
/freebsd/secure/lib/libcrypto/man/man7/
H A Dossl-guide-quic-multi-stream.775 .SH "QUIC STREAMS"
76 .IX Header "QUIC STREAMS"
84 Separately a connection can have zero or more streams associated with it
85 (although a connection with zero streams is probably not very useful, so
88 object. A stream is logically independent of all the other streams associated
91 streams, e.g. if an application sends data on stream 1 first and then sends some
98 "CREATING NEW STREAMS" below).
128 .SH "CREATING NEW STREAMS"
129 .IX Header "CREATING NEW STREAMS"
138 The peer may also initiate streams. An application can use the function
[all …]
H A Dossl-guide-quic-introduction.786 .IP "Multiple streams" 4
87 .IX Item "Multiple streams"
88 It supports multiple streams of communication (see "QUIC STREAMS" below),
94 logical streams without requiring a round\-trip exchange of packets between the
169 .SH "QUIC STREAMS"
170 .IX Header "QUIC STREAMS"
171 QUIC introduces the concept of "streams". A stream provides a reliable
176 QUIC application can have multiple uni\-directional or bi\-directional streams
179 In OpenSSL an \fBSSL\fR object is used to represent both connections and streams.
182 additional \fBSSL\fR objects can be created to represent streams (known as stream
/freebsd/contrib/ntp/html/hints/
H A Dparse28 implement the conversion of RS232 data streams into
33 - *SIMPLE* makefile to build a loadable STREAMS
37 - SUN Streams module (loadable) for radio clocks
38 This streams module is designed for SunOS 4.1.X.
41 - SUN Streams module (loadable) for radio clocks.
42 This streams module is designed for SunOS 5.x
47 - simple test program for STREAMS module. Its so simple,
60 - STREAMS specific definitions
/freebsd/crypto/openssl/doc/man7/
H A Dossl-guide-quic-multi-stream.pod22 =head1 QUIC STREAMS
31 Separately a connection can have zero or more streams associated with it
32 (although a connection with zero streams is probably not very useful, so
35 object. A stream is logically independent of all the other streams associated
38 streams, e.g. if an application sends data on stream 1 first and then sends some
45 L</CREATING NEW STREAMS> below).
77 =head1 CREATING NEW STREAMS
87 The peer may also initiate streams. An application can use the function
88 L<SSL_get_accept_stream_queue_len(3)> to determine the number of streams that
95 When using a default stream OpenSSL will prevent new streams from being
[all …]
H A Dossl-guide-quic-introduction.pod29 =item Multiple streams
31 It supports multiple streams of communication (see L</QUIC STREAMS> below),
37 logical streams without requiring a round-trip exchange of packets between the
123 =head1 QUIC STREAMS
125 QUIC introduces the concept of "streams". A stream provides a reliable
130 QUIC application can have multiple uni-directional or bi-directional streams
133 In OpenSSL an B<SSL> object is used to represent both connections and streams.
136 additional B<SSL> objects can be created to represent streams (known as stream
/freebsd/contrib/xz/src/liblzma/common/
H A Dindex.c100 /// memory usage in case someone concatenates many Streams that
108 /// Every index_stream is a node in the tree of Streams.
148 /// are many concatenated Streams.
149 index_tree streams; member
157 /// Total number of Records in all Streams in this lzma_index
160 /// Size of the List of Records field if all the Streams in this
384 index_tree_init(&i->streams); in index_init_plain()
410 index_tree_append(&i->streams, &s->node); in lzma_index_init()
422 index_tree_end(&i->streams, allocator, &index_stream_end); in lzma_index_end()
462 lzma_index_memusage(lzma_vli streams, lzma_vli blocks) in lzma_index_memusage() argument
[all …]
/freebsd/crypto/openssl/demos/http3/
H A Dossl-nghttp3.c72 LHASH_OF(OSSL_DEMO_H3_STREAM) *streams;
92 lh_OSSL_DEMO_H3_STREAM_doall(conn->streams, h3_stream_free); in OSSL_DEMO_H3_CONN_free()
96 lh_OSSL_DEMO_H3_STREAM_free(conn->streams); in OSSL_DEMO_H3_CONN_free()
118 lh_OSSL_DEMO_H3_STREAM_insert(conn->streams, s); in h3_conn_create_stream()
135 lh_OSSL_DEMO_H3_STREAM_insert(conn->streams, s); in h3_conn_accept_stream()
144 lh_OSSL_DEMO_H3_STREAM_delete(conn->streams, s); in h3_conn_remove_stream()
266 if ((conn->streams = lh_OSSL_DEMO_H3_STREAM_new(h3_stream_hash, h3_stream_eq)) == NULL) in OSSL_DEMO_H3_CONN_new_for_conn()
284 * incoming data on different streams, and e.g. incoming streams initiated in OSSL_DEMO_H3_CONN_new_for_conn()
290 * Disable default stream mode and create all streams explicitly. Each QUIC in OSSL_DEMO_H3_CONN_new_for_conn()
292 * also automatically enables us to accept incoming streams (see in OSSL_DEMO_H3_CONN_new_for_conn()
[all …]
/freebsd/lib/libc/isc/
H A Dev_streams.c80 if (ctx->streams != NULL) in evWrite()
81 ctx->streams->prev = new; in evWrite()
83 new->next = ctx->streams; in evWrite()
84 ctx->streams = new; in evWrite()
114 if (ctx->streams != NULL) in evRead()
115 ctx->streams->prev = new; in evRead()
117 new->next = ctx->streams; in evRead()
118 ctx->streams = new; in evRead()
156 * The streams list is doubly threaded. First, there's ctx->streams in evCancelRW()
157 * that's used by evDestroy() to find and cancel all streams. Second, in evCancelRW()
[all …]
/freebsd/lib/libc/stdio/
H A Dstdio.347 Input and output is mapped into logical data streams
80 Output streams are flushed (any unwritten buffer contents are transferred
93 streams are flushed) before program termination.
109 streams.
110 In effect, all streams are binary.
113 At program startup, three streams are predefined and need not be
126 These streams are abbreviated
131 is unbuffered; the standard input and output streams are
132 fully buffered if and only if the streams do not refer to
140 freshly-opened streams that refer to terminal devices
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zstream/
H A Dzstream_redup_001_pos.ksh25 # test streams. These input files contain no dedup records. However, the round
30 # 1. For each of the same-endian test streams, decompress with bzcat
37 log_assert "Verify zstream redup is an identity transform on non-dedup streams."
42 typeset -a streams=(
51 typeset -a streams=(
61 for stem in "${streams[@]}"; do
79 log_pass "zstream redup is an identity transform on non-dedup streams."
H A Dzstream_dump_004_neg.ksh23 # Verify that zstream dump on non-native-endian NATIVE-encoded streams
29 # 1. Determine system endianness to identify non-native NATIVE streams
37 log_assert "Non-native NATIVE-encoded streams exit with code 45 or 95."
42 typeset -a streams=(
47 typeset -a streams=(
55 for stem in "${streams[@]}"; do
88 log_pass "Non-native NATIVE-encoded streams exit with code 45 or 95."
H A Dzstream_dump_002_pos.ksh24 # same-endian, neutral (no BEGIN nvlists), and XDR-encoded test streams.
30 # 1. For each of the test streams, run zstream dump -v
40 typeset -a streams=(
52 streams+=(
57 streams+=(
65 for stem in "${streams[@]}"; do
H A Dzstream_dump_003_pos.ksh24 # test streams matches that of the previous version of zstream, with the
30 # The previous version of zstream does not dump opposite-endian streams
40 typeset -a streams=(
50 streams+=(
55 streams+=(
63 for stem in "${streams[@]}"; do
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dtx-packetiser.md28 QUIC_STREAM_MAP *qsm; /* QUIC Streams Map */
37 * Injected dependencies - crypto streams.
62 As per [RFC 9000 2.3 Stream Prioritization], streams should contain a priority
84 streams are active (i.e., need servicing by the TX packetiser).
85 - Crypto streams for each EL other than 0-RTT (each is one SSTREAM).
105 The TX packetiser queries the QUIC stream map for a list of active streams
108 instance (for streams with a send part). Streams are marked inactive when
111 ### Crypto Streams
113 The crypto streams for each EL (other than 0-RTT, which does not have a crypto
421 connection-level flow control, but controls rate at which new streams are
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMinidump.h38 /// Returns the list of streams (stream directory entries) in this file.
39 ArrayRef<minidump::Directory> streams() const { return Streams; } in streams() function
106 return createError("No exception streams"); in getExceptionStream()
236 ExceptionStreamsIterator(ArrayRef<minidump::Directory> Streams, in ExceptionStreamsIterator() argument
238 : Streams(Streams), File(File) {} in ExceptionStreamsIterator()
241 return Streams.size() == R.Streams.size();
249 return File->getExceptionStream(Streams.front());
253 if (!Streams.empty())
254 Streams = Streams.drop_front();
260 ArrayRef<minidump::Directory> Streams;
[all …]
/freebsd/sys/contrib/openzfs/man/man8/
H A Dzstreamdump.830 .Nd manipulate ZFS send streams
59 utility manipulates ZFS send streams output by the
153 Deduplicated send streams can be generated by using the
156 The ability to send deduplicated send streams is deprecated.
160 However, deduplicated send streams can still be received by utilizing
189 Note that encrypted send streams cannot be recompressed.
/freebsd/crypto/openssl/doc/man3/
H A DSSL_set_incoming_stream_policy.pod25 automatically reject incoming streams initiated by the peer. This is intended to
27 stream on a QUIC connection SSL object are not passed remotely-initiated streams
40 This is the default setting. Incoming streams are accepted according to the
61 Always accept incoming streams, allowing them to be dequeued using
66 Always reject incoming streams.
H A DSSL_accept_stream.pod24 If the queue of incoming streams is empty, this function returns NULL (in
40 SSL_get_accept_stream_queue_len() returns the number of incoming streams
46 necessary to explicitly configure the incoming stream policy before streams can
54 no new incoming streams are available, or if the connection has been terminated,
58 SSL_get_accept_stream_queue_len() returns the number of incoming streams
/freebsd/contrib/unbound/dnstap/
H A Ddnstap_fstrm.h2 * dnstap/dnstap_fstrm.h - Frame Streams protocol for dnstap
40 * Definitions for the Frame Streams data transport protocol for
47 /* Frame Streams data transfer protocol encode for DNSTAP messages.
54 * The Frame Streams can be unidirectional or bi-directional.
55 * bi-directional streams use control frame types READY, ACCEPT and FINISH.
56 * uni-directional streams use control frame types START and STOP.
97 /** max length of Frame Streams content type field string */
112 /** the content type for DNSTAP frame streams */
160 * for dnstap streams use DNSTAP_CONTENT_TYPE.
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zstream/test-stream-creation-scripts/
H A DREADME2 test streams used by the zstream test suite. They're not really
10 The "all-drr-types" streams have to be generated in two pieces because
15 Many test streams are big-endian, so given hardware's convergence on
17 streams under emulation with, e.g., QEMU. As of mid-2026, the easiest
/freebsd/crypto/openssl/include/internal/
H A Dquic_stream_map.h82 QUIC_STREAM_LIST_NODE accept_node; /* accept queue of remotely-created streams */
83 QUIC_STREAM_LIST_NODE ready_for_gc_node; /* queue of streams now ready for GC */
218 * The following frames relate to the streams layer for a specific
244 * streams (if they occur, they are probably just
262 * deleted streams. The important criterion is that the
551 * - tracks which streams are 'active' (currently have data for transmission);
552 * - allows iteration over the active streams only.
572 * limit for streams created by us. This mechanism is not used for
573 * peer-initiated streams. If a stream's stream ID is x, a stream is allowed if
576 * If uni is 1, get the limit for locally-initiated unidirectional streams, else
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/
H A Dzfs_receive_015_pos.ksh28 # snapshots from full and incremental streams.
34 # 4. Create different send streams with the properties.
35 # 5. Receive the send streams and verify the properties.
72 # 4. Create different send streams with the properties.
76 # 5. Receive the send streams and verify the properties.
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMinidumpYAML.h20 /// The base class for all minidump streams. The "Type" of the stream
22 /// specifies how are we going to treat it. For highly specialized streams (e.g.
46 /// Get the stream Kind used for representing streams of a given Type.
61 /// streams with a similar structure.
217 /// minidump header, and zero or more streams. To construct an Object from a
228 std::vector<std::unique_ptr<Stream>> Streams) in Object()
229 : Header(Header), Streams(std::move(Streams)) {} in Object()
234 /// The list of streams in this minidump object.
235 std::vector<std::unique_ptr<Stream>> Streams; member
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_send/
H A Dzfs_send_002_pos.ksh36 # Verify 'zfs send' can generate valid streams with a property setup.
41 # 3. Create a full send streams
82 log_fail "'$ZFS send' fails to create send streams."
85 log_fail "'$ZFS receive' fails to receive send streams."
109 log_assert "Verify 'zfs send' generates valid streams with a property setup"
147 log_pass "'zfs send' generates streams with a property setup as expected."

12345678910>>...32