Home
last modified time | relevance | path

Searched refs:pushStream (Results 1 – 20 of 20) sorted by relevance

/third_party/node/test/parallel/
Dtest-http2-dont-lose-data.js14 s.pushStream({ ':path': '/file' }, common.mustSucceed((pushStream) => {
15 pushStream.respond();
16 pushStream.end('a push stream');
31 let pushStream; variable
35 pushStream = s;
40 pushStream.setEncoding('utf8');
41 pushStream.on('data', (d) => pushData += d);
42 pushStream.on('end', common.mustCall(() => {
Dtest-http2-compat-serverresponse-createpushresponse.js69 client.on('stream', common.mustCall((pushStream, headers) => {
76 pushStream.on('push', common.mustCall((headers) => {
80 pushStream.setEncoding('utf8');
81 pushStream.on('data', (chunk) => actual += chunk);
82 pushStream.on('end', common.mustCall(() => {
Dtest-http2-server-push-stream-errors-args.js18 () => stream.pushStream({
31 () => stream.pushStream({ 'connection': 'test' }, {}, () => {}),
Dtest-http2-options-max-reserved-streams.js21 stream.pushStream({
32 stream.pushStream({
Dtest-http2-server-push-stream.js13 stream.pushStream({
26 push.pushStream({}, common.mustNotCall());
Dtest-http2-server-push-disabled.js25 stream.pushStream({
Dtest-http2-server-stream-session-destroy.js31 () => stream.pushStream({}, common.mustNotCall()),
Dtest-http2-server-push-stream-errors.js72 stream.pushStream({}, common.expectsError(currentError.error));
Dtest-http2-server-push-stream-head.js17 stream.pushStream({
Dtest-http2-respond-file-push.js29 stream.pushStream({
Dtest-http2-client-data-end.js13 stream.pushStream({ ':path': '/foobar' }, (err, push, headers) => {
Dtest-http2-capture-rejection.js114 stream.pushStream({
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
DGlyfEncoder.java44 private final ByteArrayOutputStream pushStream; field in GlyfEncoder
50 pushStream = new ByteArrayOutputStream(); in GlyfEncoder()
299 encodePushSequence(pushStream, result); in splitPush()
336 return pushStream.toByteArray(); in getPushBytes()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
DGlyfEncoder.java44 private final ByteArrayOutputStream pushStream; field in GlyfEncoder
50 pushStream = new ByteArrayOutputStream(); in GlyfEncoder()
299 encodePushSequence(pushStream, result); in splitPush()
336 return pushStream.toByteArray(); in getPushBytes()
/third_party/node/doc/api/
Dhttp2.md911 event), or in response to a call to the `http2stream.pushStream()` method.
944 * The `http2stream.pushStream()` method is called.
1386 provide additional methods such as `http2stream.pushStream()` and
1419 #### `http2stream.pushStream(headers[, options], callback)`
1435 * `pushStream` {ServerHttp2Stream} The returned `pushStream` object.
1436 * `headers` {HTTP/2 Headers Object} Headers object the `pushStream` was
1448 stream.pushStream({ ':path': '/' }, (err, pushStream, headers) => {
1450 pushStream.respond({ ':status': 200 });
1451 pushStream.end('some pushed data');
1461 Calling `http2stream.pushStream()` from within a pushed stream is not permitted
[all …]
/third_party/node/lib/internal/http2/
Dcompat.js775 this[kStream].pushStream(headers, {}, (err, stream, headers, options) => {
Dcore.js2595 pushStream(headers, options, callback) { method in ServerHttp2Stream
/third_party/node/doc/changelogs/
DCHANGELOG_V8.md465 …/github.com/nodejs/node/commit/2116ace0ad)] - **doc**: fix http2stream.pushStream error doc (Сково…
981 * [[`d9d0d0e98e`](https://github.com/nodejs/node/commit/d9d0d0e98e)] - **doc**: update pushStream d…
2071 …s://github.com/nodejs/node/commit/a7540d59e8)] - **doc**: remove http2 pushStream weight option (S…
DCHANGELOG_V9.md1025 * [[`1c81a055df`](https://github.com/nodejs/node/commit/1c81a055df)] - **doc**: update pushStream d…
DCHANGELOG_V10.md2814 …/github.com/nodejs/node/commit/51db88b0f1)] - **doc**: fix http2stream.pushStream error doc (Сково…