Home
last modified time | relevance | path

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

12345678910>>...30

/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.772 .SH "QUIC STREAMS"
73 .IX Header "QUIC STREAMS"
81 Separately a connection can have zero or more streams associated with it
82 (although a connection with zero streams is probably not very useful, so
85 object. A stream is logically independent of all the other streams associated
88 streams, e.g. if an application sends data on stream 1 first and then sends some
95 "CREATING NEW STREAMS" below).
125 .SH "CREATING NEW STREAMS"
126 .IX Header "CREATING NEW STREAMS"
135 The peer may also initiate streams. An application can use the function
[all …]
H A Dossl-guide-quic-introduction.783 .IP "Multiple streams" 4
84 .IX Item "Multiple streams"
85 It supports multiple streams of communication (see "QUIC STREAMS" below),
91 logical streams without requiring a round-trip exchange of packets between the
166 .SH "QUIC STREAMS"
167 .IX Header "QUIC STREAMS"
168 QUIC introduces the concept of "streams". A stream provides a reliable
173 QUIC application can have multiple uni-directional or bi-directional streams
176 In OpenSSL an \fBSSL\fR object is used to represent both connections and streams.
179 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/crypto/openssl/demos/http3/
H A Dossl-nghttp3.c70 LHASH_OF(OSSL_DEMO_H3_STREAM) *streams;
90 lh_OSSL_DEMO_H3_STREAM_doall(conn->streams, h3_stream_free); in OSSL_DEMO_H3_CONN_free()
94 lh_OSSL_DEMO_H3_STREAM_free(conn->streams); in OSSL_DEMO_H3_CONN_free()
116 lh_OSSL_DEMO_H3_STREAM_insert(conn->streams, s); in h3_conn_create_stream()
133 lh_OSSL_DEMO_H3_STREAM_insert(conn->streams, s); in h3_conn_accept_stream()
142 lh_OSSL_DEMO_H3_STREAM_delete(conn->streams, s); in h3_conn_remove_stream()
264 if ((conn->streams = lh_OSSL_DEMO_H3_STREAM_new(h3_stream_hash, h3_stream_eq)) == NULL) in OSSL_DEMO_H3_CONN_new_for_conn()
282 * incoming data on different streams, and e.g. incoming streams initiated in OSSL_DEMO_H3_CONN_new_for_conn()
288 * Disable default stream mode and create all streams explicitly. Each QUIC in OSSL_DEMO_H3_CONN_new_for_conn()
290 * 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/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/sys/contrib/openzfs/man/man8/
H A Dzstreamdump.830 .Nd manipulate ZFS send streams
55 utility manipulates ZFS send streams output by the
134 Deduplicated send streams can be generated by using the
137 The ability to send deduplicated send streams is deprecated.
141 However, deduplicated send streams can still be received by utilizing
170 Note that encrypted send streams cannot be recompressed.
H A Dzstream.830 .Nd manipulate ZFS send streams
55 utility manipulates ZFS send streams output by the
134 Deduplicated send streams can be generated by using the
137 The ability to send deduplicated send streams is deprecated.
141 However, deduplicated send streams can still be received by utilizing
170 Note that encrypted send streams cannot be recompressed.
/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.
45 /// Get the stream Kind used for representing streams of a given Type.
60 /// streams with a similar structure.
198 /// minidump header, and zero or more streams. To construct an Object from a
209 std::vector<std::unique_ptr<Stream>> Streams) in Object()
210 : Header(Header), Streams(std::move(Streams)) {} in Object()
215 /// The list of streams in this minidump object.
216 std::vector<std::unique_ptr<Stream>> Streams; member
/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
H A DSSL_new_stream.pod38 streams. To accept incoming streams initiated by a peer, use
44 The creation of new streams is subject to flow control by the QUIC protocol. If
62 might simply decide never to increase the number of allowed streams for the
81 from the server allowing additional streams to be created.
/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/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/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
550 * - tracks which streams are 'active' (currently have data for transmission);
551 * - allows iteration over the active streams only.
571 * limit for streams created by us. This mechanism is not used for
572 * peer-initiated streams. If a stream's stream ID is x, a stream is allowed if
575 * If uni is 1, get the limit for locally-initiated unidirectional streams, else
[all …]
/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."
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStreamTee.h63 // Allow for our collection to contain NULL streams. This allows the in Flush()
65 // want N total streams with only a few that are set to valid values. in Flush()
98 // Resize our stream vector as necessary to fit as many streams as needed. in SetStreamAtIndex()
100 // be used contain many streams, not all of which are valid. in SetStreamAtIndex()
119 // Allow for our collection to contain NULL streams. This allows the in WriteImpl()
121 // want N total streams with only a few that are set to valid values. in WriteImpl()
/freebsd/secure/lib/libcrypto/man/man3/
H A DSSL_set_incoming_stream_policy.384 automatically reject incoming streams initiated by the peer. This is intended to
86 stream on a QUIC connection SSL object are not passed remotely-initiated streams
96 This is the default setting. Incoming streams are accepted according to the
112 Always accept incoming streams, allowing them to be dequeued using
116 Always reject incoming streams.
/freebsd/sys/contrib/device-tree/Bindings/phy/
H A Dfsl,imx8qm-lvds-phy.yaml15 groups of four data lanes of LVDS data streams. A phase-locked
17 data streams over a fifth LVDS link. Every cycle of the transmit
19 through the two groups of LVDS data streams. Together with the
20 transmit clocks, the two groups of LVDS data streams form two
/freebsd/contrib/telnet/libtelnet/
H A Denc_des.c77 } streams[2]; member
123 fb[CFB].streams[0].str_flagshift = SHIFT_VAL(0, CFB); in cfb64_init()
124 fb[CFB].streams[1].str_flagshift = SHIFT_VAL(1, CFB); in cfb64_init()
132 fb[CFB].streams[0].str_flagshift = SHIFT_VAL(0, OFB); in ofb64_init()
133 fb[CFB].streams[1].str_flagshift = SHIFT_VAL(1, OFB); in ofb64_init()
268 fb64_stream_iv((void *)data, &fbp->streams[DIR_DECRYPT-1]); in fb64_is()
337 fb64_stream_iv(fbp->temp_feed, &fbp->streams[DIR_ENCRYPT-1]); in fb64_reply()
346 fb64_stream_iv(fbp->temp_feed, &fbp->streams[DIR_ENCRYPT-1]); in fb64_reply()
387 fb64_stream_key(fbp->krbdes_key, &fbp->streams[DIR_ENCRYPT-1]); in fb64_session()
388 fb64_stream_key(fbp->krbdes_key, &fbp->streams[DIR_DECRYPT-1]); in fb64_session()
[all …]
/freebsd/crypto/heimdal/appl/telnet/libtelnet/
H A Denc_des.c86 struct stinfo streams[2]; member
133 fb[CFB].streams[0].str_flagshift = SHIFT_VAL(0, CFB); in cfb64_init()
134 fb[CFB].streams[1].str_flagshift = SHIFT_VAL(1, CFB); in cfb64_init()
142 fb[CFB].streams[0].str_flagshift = SHIFT_VAL(0, OFB); in ofb64_init()
143 fb[CFB].streams[1].str_flagshift = SHIFT_VAL(1, OFB); in ofb64_init()
279 fb64_stream_iv(data, &fbp->streams[DIR_DECRYPT-1]); in fb64_is()
347 fb64_stream_iv(fbp->temp_feed, &fbp->streams[DIR_ENCRYPT-1]); in fb64_reply()
356 fb64_stream_iv(fbp->temp_feed, &fbp->streams[DIR_ENCRYPT-1]); in fb64_reply()
395 fb64_stream_key(fbp->krbdes_key, &fbp->streams[DIR_ENCRYPT-1]); in fb64_session()
396 fb64_stream_key(fbp->krbdes_key, &fbp->streams[DIR_DECRYPT-1]); in fb64_session()
[all …]

12345678910>>...30