Home
last modified time | relevance | path

Searched refs:Http2Stream (Results 1 - 8 of 8) sorted by relevance

/third_party/node/src/
H A Dnode_http2.cc79 Http2Scope::Http2Scope(Http2Stream* stream) : Http2Scope(stream->session()) {} in Http2Scope()
531 // Ensure that all `Http2Stream` instances and the memory they hold in ~Http2Session()
637 void Http2Stream::EmitStatistics() { in EmitStatistics()
647 "Http2Stream", in EmitStatistics()
735 BaseObjectPtr<Http2Stream> Http2Session::FindStream(int32_t id) { in FindStream()
737 return s != streams_.end() ? s->second : BaseObjectPtr<Http2Stream>(); in FindStream()
749 has_available_session_memory(sizeof(Http2Stream)); in CanAddStream()
752 void Http2Session::AddStream(Http2Stream* stream) { in AddStream()
754 streams_[stream->id()] = BaseObjectPtr<Http2Stream>(stream); in AddStream()
762 BaseObjectPtr<Http2Stream> Http2Sessio
2026 Http2Stream::Http2Stream(Http2Session* session, Http2Stream() function in node::http2::Http2Stream
[all...]
H A Dnode_http2.h60 // Http2Stream internal states
166 class Http2Stream;
174 explicit Http2Scope(Http2Stream* stream);
270 class Http2Stream : public AsyncWrap, class
273 static Http2Stream* New(
278 ~Http2Stream() override;
318 Http2Stream* SubmitPushPromise(
438 SET_MEMORY_INFO_NAME(Http2Stream)
439 SET_SELF_SIZE(Http2Stream)
470 Http2Stream(Http2Sessio
[all...]
/third_party/node/test/parallel/
H A Dtest-http2-respond-errors.js10 const { Http2Stream } = internalBinding('http2');
14 Http2Stream.prototype.respond = () => 1;
12 Http2Stream.prototype.respond = () => 1; global() class
H A Dtest-http2-info-headers-errors.js11 Http2Stream,
43 Http2Stream.prototype.info = () => currentError.ngError;
40 Http2Stream.prototype.info = () => currentError.ngError; global() class
H A Dtest-http2-respond-nghttperrors.js11 Http2Stream,
44 Http2Stream.prototype.respond = () => currentError.ngError;
41 Http2Stream.prototype.respond = () => currentError.ngError; global() class
H A Dtest-http2-server-push-stream-errors.js11 Http2Stream,
68 Http2Stream.prototype.pushPromise = () => currentError.ngError;
65 Http2Stream.prototype.pushPromise = () => currentError.ngError; global() class
H A Dtest-http2-respond-with-fd-errors.js16 Http2Stream,
51 Http2Stream.prototype.respond = () => currentError.ngError;
48 Http2Stream.prototype.respond = () => currentError.ngError; global() class
/third_party/node/lib/internal/http2/
H A Dcore.js198 debug('Http2Stream %s [Http2Session %s]: ' + message,
335 // create the associated Http2Stream instance and emit the 'stream'
425 // Called when the Http2Stream has finished sending data and is ready for
440 // This will cause the Http2Stream to be closed.
493 // Also keep track of listeners for the Http2Stream instances, as some events
534 // At this point the underlying node::http2:Http2Stream handle is no
1551 // last currently open Http2Stream closes.
1728 // associated Http2Stream instance.
1919 // If the writable side of the Http2Stream is still open, emit the
1953 // An Http2Stream i
[all...]

Completed in 8 milliseconds