Searched refs:OnStreamRead (Results 1 - 10 of 10) sorted by relevance
/third_party/node/src/ |
H A D | stream_pipe.h | 54 void OnStreamRead(ssize_t nread, const uv_buf_t& buf) override; 61 void OnStreamRead(ssize_t nread, const uv_buf_t& buf) override;
|
H A D | stream_pipe.cc | 115 void StreamPipe::ReadableListener::OnStreamRead(ssize_t nread, in OnStreamRead() function in node::StreamPipe::ReadableListener 128 previous_listener_->OnStreamRead(nread, uv_buf_init(nullptr, 0)); in OnStreamRead() 208 OnStreamRead(UV_EPIPE, uv_buf_init(nullptr, 0)); in OnStreamDestroy() 237 void StreamPipe::WritableListener::OnStreamRead(ssize_t nread, in OnStreamRead() function in node::StreamPipe::WritableListener 240 return previous_listener_->OnStreamRead(nread, buf); in OnStreamRead()
|
H A D | stream_base-inl.h | 57 previous_listener_->OnStreamRead(nread, uv_buf_init(nullptr, 0)); in PassReadErrorToPreviousListener() 79 listener_->OnStreamRead(nread, buf); in EmitRead()
|
H A D | stream_base.h | 122 // by a `OnStreamRead()` call). 126 // `OnStreamRead()` call. 131 // It is not guaranteed that the corresponding `OnStreamRead()` call 135 // `OnStreamRead()` is called when data is available on the socket and has 141 virtual void OnStreamRead(ssize_t nread, 200 void OnStreamRead(ssize_t nread, const uv_buf_t& buf) override; 209 void OnStreamRead(ssize_t nread, const uv_buf_t& buf) override; 284 // Call the current listener's OnStreamRead() method and update the
|
H A D | stream_base.cc | 649 void EmitToJSStreamListener::OnStreamRead(ssize_t nread, const uv_buf_t& buf_) { in OnStreamRead() function in node::EmitToJSStreamListener 676 void CustomBufferJSListener::OnStreamRead(ssize_t nread, const uv_buf_t& buf) { in OnStreamRead() function in node::CustomBufferJSListener
|
H A D | node_http2.h | 256 void OnStreamRead(ssize_t nread, const uv_buf_t& buf) override; 693 void OnStreamRead(ssize_t nread, const uv_buf_t& buf) override;
|
H A D | node_http2.cc | 1294 void Http2StreamListener::OnStreamRead(ssize_t nread, const uv_buf_t& buf) { in OnStreamRead() function in node::http2::Http2StreamListener 1898 void Http2Session::OnStreamRead(ssize_t nread, const uv_buf_t& buf_) { in OnStreamRead() function in node::http2::Http2Session 2005 session->OnStreamRead(copy, buf); in Receive()
|
H A D | node_http_parser.cc | 758 // For most types of streams, OnStreamRead will be immediately after 772 void OnStreamRead(ssize_t nread, const uv_buf_t& buf) override {
|
/third_party/node/src/crypto/ |
H A D | crypto_tls.h | 151 // enc_in_ via the stream listener's OnStreamAlloc()/OnStreamRead() interface. 168 void OnStreamRead(ssize_t nread, const uv_buf_t& buf) override;
|
H A D | crypto_tls.cc | 522 wrap->OnStreamRead(copy, buf); in Receive() 1094 void TLSWrap::OnStreamRead(ssize_t nread, const uv_buf_t& buf) { in OnStreamRead() function in node::crypto::TLSWrap 1115 // this TLSWrap as a stream listener, so we should not receive OnStreamRead() in OnStreamRead()
|
Completed in 22 milliseconds