/third_party/node/src/ |
D | node_http2.cc | 79 Http2Scope::Http2Scope(Http2Stream* stream) : Http2Scope(stream->session()) {} in Http2Scope() 631 void Http2Stream::EmitStatistics() { in EmitStatistics() 729 BaseObjectPtr<Http2Stream> Http2Session::FindStream(int32_t id) { in FindStream() 731 return s != streams_.end() ? s->second : BaseObjectPtr<Http2Stream>(); in FindStream() 743 has_available_session_memory(sizeof(Http2Stream)); in CanAddStream() 746 void Http2Session::AddStream(Http2Stream* stream) { in AddStream() 748 streams_[stream->id()] = BaseObjectPtr<Http2Stream>(stream); in AddStream() 756 BaseObjectPtr<Http2Stream> Http2Session::RemoveStream(int32_t id) { in RemoveStream() 757 BaseObjectPtr<Http2Stream> stream; in RemoveStream() 889 BaseObjectPtr<Http2Stream> stream = session->FindStream(id); in OnBeginHeadersCallback() [all …]
|
D | node_http2.h | 166 class Http2Stream; variable 174 explicit Http2Scope(Http2Stream* stream); 270 class Http2Stream : public AsyncWrap, 273 static Http2Stream* New( 278 ~Http2Stream() override; 318 Http2Stream* SubmitPushPromise( 438 SET_MEMORY_INFO_NAME(Http2Stream) 439 SET_SELF_SIZE(Http2Stream) 470 Http2Stream(Http2Session* session, 509 class Http2Stream::Provider { [all …]
|
/third_party/node/doc/api/ |
D | http2.md | 164 `Http2Stream` objects. 233 with a specific `Http2Stream`, an attempt to emit a `'frameError'` event on the 234 `Http2Stream` is made. 314 * `stream` {Http2Stream} A reference to the stream 320 The `'stream'` event is emitted when a new `Http2Stream` is created. 402 complete on their own and preventing new `Http2Stream` instances from being 404 are no open `Http2Stream` instances. 485 * `lastStreamID` {number} The numeric ID of the last processed `Http2Stream` 674 next time a new `Http2Stream` is created by this `Http2Session`. 677 * `lastProcStreamID` {number} The numeric id of the `Http2Stream` [all …]
|
D | perf_hooks.md | 571 If `performanceEntry.name` is equal to `Http2Stream`, the `detail` 575 `Http2Stream`. 577 `Http2Stream`. 578 * `id` {number} The identifier of the associated `Http2Stream` 600 all `Http2Stream` instances. 601 * `streamCount` {number} The number of `Http2Stream` instances processed by
|
D | errors.md | 1645 An attempt was made to use the `Http2Stream.prototype.responseWithFile()` API to 1652 An attempt was made to use the `Http2Stream.prototype.responseWithFile()` API to 1699 An `Http2Stream` was destroyed before any data was transmitted to the connected 1731 Trailing headers have already been sent on the `Http2Stream`. 1738 `'wantTrailers'` event is emitted on an `Http2Stream` object. The 1740 is set for the `Http2Stream`. 3211 `Http2Stream.prototype.respond()` method.
|
/third_party/node/test/parallel/ |
D | test-http2-respond-errors.js | 10 const { Http2Stream } = internalBinding('http2'); 14 Http2Stream.prototype.respond = () => 1; class
|
D | test-http2-server-push-stream-errors.js | 11 Http2Stream, 68 Http2Stream.prototype.pushPromise = () => currentError.ngError; class
|
D | test-http2-info-headers-errors.js | 11 Http2Stream, 43 Http2Stream.prototype.info = () => currentError.ngError; class
|
D | test-http2-respond-with-fd-errors.js | 16 Http2Stream, 51 Http2Stream.prototype.respond = () => currentError.ngError; class
|
D | test-http2-respond-nghttperrors.js | 11 Http2Stream, 44 Http2Stream.prototype.respond = () => currentError.ngError; class
|
D | test-http2-stream-client.js | 14 assert.match(insp, /Http2Stream {/);
|
/third_party/node/lib/internal/http2/ |
D | core.js | 1955 class Http2Stream extends Duplex { class 2659 class ServerHttp2Stream extends Http2Stream { 2967 class ClientHttp2Stream extends Http2Stream { 2988 ObjectDefineProperty(Http2Stream.prototype, 'setTimeout', setTimeoutValue); 3417 Http2Stream, property
|
/third_party/node/tools/doc/ |
D | type-parser.mjs | 151 'Http2Stream': 'http2.html#class-http2stream', property
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V8.md | 479 …thub.com/nodejs/node/commit/4f0035485f)] - **doc**: add parameters for Http2Stream:error event (Uj… 1078 …ttps://github.com/nodejs/node/commit/fc40b7de46)] - **http2**: cleanup Http2Stream/Http2Session de… 1079 …om/nodejs/node/commit/1d65f2b879)] - **http2**: be sure to destroy the Http2Stream (James M Snell)… 2721 * \[[`7842f63069`](https://github.com/nodejs/node/commit/7842f63069)] - **test**: Http2Stream destr… 2818 ….com/nodejs/node/commit/66a5f99828)] - **http2**: improved coverage of Http2Stream destroy (Simon … 3244 …js/node/commit/1d40850338)] - **http2**: fix \[kInspect]\() output for Http2Stream (Evan Lucas) [#…
|
D | CHANGELOG_V9.md | 1145 …* Refactoring and cleanup of Http2Session and Http2Stream destroy (James M Snell) [#17406](https:/… 1276 …ttps://github.com/nodejs/node/commit/5abb60933e)] - **http2**: cleanup Http2Stream/Http2Session de… 1277 …om/nodejs/node/commit/f699a74e66)] - **http2**: be sure to destroy the Http2Stream (James M Snell)…
|
D | CHANGELOG_V12.md | 978 …odejs/node/commit/2615e55d93)] - **doc**: document the ready event for Http2Stream (James M Snell)… 1384 …mit/bcdf4c808d)] - **http2**: reuse .\_onTimeout() in Http2Session and Http2Stream classes (rickye… 1542 …ejs/node/commit/66dbaff848)] - **http2**: add `bytesWritten` test for `Http2Stream` (Pranshu Sriva… 3300 …ps://github.com/nodejs/node/commit/e0811cd8cc)] - **doc**: improve doc Http2Stream: FrameError, Ti… 5043 …thub.com/nodejs/node/commit/d25d40e1e5)] - **doc**: fix sentence about Http2Stream destruction (cj… 5260 …https://github.com/nodejs/node/commit/360c708f64)] - **doc**: document Http2Stream#id property (mu… 5450 …ithub.com/nodejs/node/commit/6cd64c8279)] - **doc,test**: clarify that Http2Stream is destroyed af…
|
D | CHANGELOG_V10.md | 546 …ithub.com/nodejs/node/commit/56a834a53f)] - **doc,test**: clarify that Http2Stream is destroyed af… 847 …om/nodejs/node/commit/4f60364201)] - **(SEMVER-MINOR)** **http2**: add Http2Stream.bufferSize (Ouy… 3782 …thub.com/nodejs/node/commit/88bc6da6e9)] - **doc**: add parameters for Http2Stream:error event (Uj… 4788 …ode/commit/cef909797a)] - **http2**: do not emit our own close emit in Http2Stream (James M Snell)…
|
D | CHANGELOG_V14.md | 3158 …odejs/node/commit/9339f9f602)] - **doc**: document the ready event for Http2Stream (James M Snell)… 3498 …mit/8457033d83)] - **http2**: reuse .\_onTimeout() in Http2Session and Http2Stream classes (rickye… 3720 …ejs/node/commit/41c5524432)] - **http2**: add `bytesWritten` test for `Http2Stream` (Pranshu Sriva…
|
D | CHANGELOG_V11.md | 981 …dejs/node/commit/7ab34ae421)] - **src**: remove unused method in class Http2Stream (gengjiawen) [#… 2256 …om/nodejs/node/commit/4a0f27656d)] - **(SEMVER-MINOR)** **http2**: add Http2Stream.bufferSize (Ouy…
|
D | CHANGELOG_V17.md | 81 …https://github.com/nodejs/node/commit/6e56924274)] - **doc**: simplify Http2Stream encoding text (…
|
D | CHANGELOG_V13.md | 1564 …ps://github.com/nodejs/node/commit/0022d7544a)] - **doc**: improve doc Http2Stream: FrameError, Ti…
|
D | CHANGELOG_V18.md | 1937 …//github.com/nodejs/node/commit/a534175aa5)] - **http2**: fix crash on Http2Stream::diagnostic\_na…
|