Home
last modified time | relevance | path

Searched refs:WriteWrap (Results 1 – 25 of 31) sorted by relevance

12

/third_party/node/src/
Dstream_base.h19 class WriteWrap; variable
26 WriteWrap* wrap;
90 class WriteWrap : public StreamReq {
94 inline WriteWrap(
98 static inline WriteWrap* FromObject(v8::Local<v8::Object> req_wrap_obj);
100 static inline WriteWrap* FromObject(
146 virtual void OnStreamAfterWrite(WriteWrap* w, int status);
185 void OnStreamAfterWrite(WriteWrap* w, int status) override;
253 virtual int DoWrite(WriteWrap* w,
283 inline void EmitAfterWrite(WriteWrap* w, int status);
[all …]
Dstream_base-inl.h51 WriteWrap::WriteWrap( in WriteWrap() function
107 void StreamResource::EmitAfterWrite(WriteWrap* w, int status) { in EmitAfterWrite()
194 WriteWrap* req_wrap = CreateWriteWrap(req_wrap_obj); in Write()
231 : WriteWrap(stream, req_wrap_obj), in SimpleWriteWrap()
251 WriteWrap* WriteWrap::FromObject(v8::Local<v8::Object> req_wrap_obj) { in FromObject()
252 return static_cast<WriteWrap*>(StreamReq::FromObject(req_wrap_obj)); in FromObject()
256 WriteWrap* WriteWrap::FromObject( in FromObject()
273 void WriteWrap::SetAllocatedStorage(AllocatedBuffer&& storage) { in SetAllocatedStorage()
Dtls_wrap.h42 class WriteWrap; variable
74 int DoWrite(WriteWrap* w,
153 void OnStreamAfterWrite(WriteWrap* w, int status) override;
Dstream_wrap.h54 int DoWrite(WriteWrap* w,
77 WriteWrap* CreateWriteWrap(v8::Local<v8::Object> object) override;
Dtls_wrap.cc101 WriteWrap* w = WriteWrap::FromObject(current_write); in InvokeQueued()
374 void TLSWrap::OnStreamAfterWrite(WriteWrap* req_wrap, int status) { in OnStreamAfterWrite()
381 WriteWrap* finishing = WriteWrap::FromObject(current_empty_write); in OnStreamAfterWrite()
701 int TLSWrap::DoWrite(WriteWrap* w, in DoWrite()
748 OnStreamAfterWrite(WriteWrap::FromObject(current_empty_write_), 0); in DoWrite()
Djs_stream.h26 int DoWrite(WriteWrap* w,
Djs_stream.cc109 int JSStream::DoWrite(WriteWrap* w, in DoWrite()
206 env->SetProtoMethod(t, "finishWrite", Finish<WriteWrap>); in Initialize()
Dstream_pipe.h59 void OnStreamAfterWrite(WriteWrap* w, int status) override;
Dstream_base.cc575 WriteWrap* req_wrap, int status) { in OnStreamAfterWrite()
589 void WriteWrap::OnDone(int status) { in OnDone()
604 void StreamListener::OnStreamAfterWrite(WriteWrap* w, int status) { in OnStreamAfterWrite()
629 WriteWrap* StreamBase::CreateWriteWrap( in CreateWriteWrap()
Dstream_wrap.cc310 WriteWrap* LibuvStreamWrap::CreateWriteWrap(Local<Object> object) { in CreateWriteWrap()
371 int LibuvStreamWrap::DoWrite(WriteWrap* req_wrap, in DoWrite()
Dnode_http2.cc1446 void Http2Session::OnStreamAfterWrite(WriteWrap* w, int status) { in OnStreamAfterWrite()
1539 WriteWrap::FromObject(wrap)->Done(0); in ClearOutgoing()
1822 if (wr.req_wrap && WriteWrap::FromObject(wr.req_wrap)->stream() == stream) in HasWritesOnSocketForStream()
2003 WriteWrap::FromObject(head.req_wrap)->Done(UV_ECANCELED); in Destroy()
2236 int Http2Stream::DoWrite(WriteWrap* req_wrap, in DoWrite()
2350 WriteWrap::FromObject(finished)->Done(0); in OnRead()
Dstream_pipe.cc165 void StreamPipe::WritableListener::OnStreamAfterWrite(WriteWrap* w, in OnStreamAfterWrite()
Dnode_http2.h429 int DoWrite(WriteWrap* w, uv_buf_t* bufs, size_t count,
687 void OnStreamAfterWrite(WriteWrap* w, int status) override;
Dheap_utils.cc285 int DoWrite(WriteWrap* w, in DoWrite()
Dnode_file.h266 int DoWrite(WriteWrap* w,
Dnode_file.cc189 int FileHandle::DoWrite(WriteWrap* w, in DoWrite()
/third_party/node/test/pseudo-tty/
Dtest-tty-wrap.js7 const { WriteWrap } = internalBinding('stream_wrap');
10 const req = new WriteWrap();
/third_party/node/benchmark/net/
Dtcp-raw-pipe.js26 const { WriteWrap } = common.binding('stream_wrap');
53 const writeReq = new WriteWrap();
120 const writeReq = new WriteWrap();
Dtcp-raw-c2s.js26 const { WriteWrap } = common.binding('stream_wrap');
106 const writeReq = new WriteWrap();
Dtcp-raw-s2c.js26 const { WriteWrap } = common.binding('stream_wrap');
63 const writeReq = new WriteWrap();
/third_party/node/test/parallel/
Dtest-tcp-wrap-listen.js9 WriteWrap,
47 const req = new WriteWrap();
/third_party/node/lib/internal/
Dstream_base_commons.js11 WriteWrap,
107 const req = new WriteWrap();
Dchild_process.js40 WriteWrap,
834 const req = new WriteWrap();
/third_party/node/test/sequential/
Dtest-async-wrap-getasyncid.js217 testUninitialized(new binding.WriteWrap(), 'WriteWrap');
244 const wreq = new stream_wrap.WriteWrap();
/third_party/node/doc/changelogs/
DCHANGELOG_V9.md554 …s/node/commit/08b83ee27a)] - **src**: refactor setting JS properties on WriteWrap (Anna Henningsen…
628 * [[`91694497ba`](https://github.com/nodejs/node/commit/91694497ba)] - **src**: refactor WriteWrap
643 …ttps://github.com/nodejs/node/commit/3543c5543b)] - **test**: make sure WriteWrap tests are actual…
2036 …js/node/commit/a87f846cc1)] - **src**: add method to compute storage in WriteWrap (Anna Henningsen…

12