Searched refs:TCPWrap (Results 1 – 7 of 7) sorted by relevance
/third_party/node/src/ |
D | tcp_wrap.cc | 54 MaybeLocal<Object> TCPWrap::Instantiate(Environment* env, in Instantiate() 56 TCPWrap::SocketType type) { in Instantiate() 70 void TCPWrap::Initialize(Local<Object> target, in Initialize() 94 GetSockOrPeerName<TCPWrap, uv_tcp_getsockname>); in Initialize() 96 GetSockOrPeerName<TCPWrap, uv_tcp_getpeername>); in Initialize() 124 void TCPWrap::New(const FunctionCallbackInfo<Value>& args) { in New() 133 TCPWrap::SocketType type = static_cast<TCPWrap::SocketType>(type_value); in New() 147 new TCPWrap(env, args.This(), provider); in New() 151 TCPWrap::TCPWrap(Environment* env, Local<Object> object, ProviderType provider) in TCPWrap() function in node::TCPWrap 159 void TCPWrap::SetNoDelay(const FunctionCallbackInfo<Value>& args) { in SetNoDelay() [all …]
|
D | tcp_wrap.h | 34 class TCPWrap : public ConnectionWrap<TCPWrap, uv_tcp_t> { 50 SET_SELF_SIZE(TCPWrap) in SET_SELF_SIZE() argument 69 TCPWrap(Environment* env, v8::Local<v8::Object> object,
|
D | connection_wrap.cc | 119 template ConnectionWrap<TCPWrap, uv_tcp_t>::ConnectionWrap( 127 template void ConnectionWrap<TCPWrap, uv_tcp_t>::OnConnection( 133 template void ConnectionWrap<TCPWrap, uv_tcp_t>::AfterConnect(
|
D | stream_wrap.cc | 254 pending_obj = AcceptHandle<TCPWrap>(env(), this); in OnUvRead()
|
/third_party/node/test/parallel/ |
D | test-net-persistent-ref-unref.js | 7 const TCPWrap = internalBinding('tcp_wrap').TCP; constant 13 const ref = TCPWrap.prototype.ref; 14 const unref = TCPWrap.prototype.unref; 18 TCPWrap.prototype.ref = function() { class 24 TCPWrap.prototype.unref = function() {
|
D | test-net-persistent-nodelay.js | 7 const TCPWrap = internalBinding('tcp_wrap').TCP; constant 17 const setNoDelay = TCPWrap.prototype.setNoDelay; 19 TCPWrap.prototype.setNoDelay = function(enable) { class
|
/third_party/node/doc/api/ |
D | async_hooks.md | 64 // called 0-N times for handles (such as TCPWrap), and will be called exactly 1 298 connection is made, the `TCPWrap` instance is immediately constructed. This
|