Lines Matching refs:TCPWrap

56 MaybeLocal<Object> TCPWrap::Instantiate(Environment* env,
58 TCPWrap::SocketType type) {
72 void TCPWrap::Initialize(Local<Object> target,
99 GetSockOrPeerName<TCPWrap, uv_tcp_getsockname>);
103 GetSockOrPeerName<TCPWrap, uv_tcp_getpeername>);
131 void TCPWrap::RegisterExternalReferences(ExternalReferenceRegistry* registry) {
140 registry->Register(GetSockOrPeerName<TCPWrap, uv_tcp_getsockname>);
141 registry->Register(GetSockOrPeerName<TCPWrap, uv_tcp_getpeername>);
150 void TCPWrap::New(const FunctionCallbackInfo<Value>& args) {
159 TCPWrap::SocketType type = static_cast<TCPWrap::SocketType>(type_value);
173 new TCPWrap(env, args.This(), provider);
177 TCPWrap::TCPWrap(Environment* env, Local<Object> object, ProviderType provider)
185 void TCPWrap::SetNoDelay(const FunctionCallbackInfo<Value>& args) {
186 TCPWrap* wrap;
196 void TCPWrap::SetKeepAlive(const FunctionCallbackInfo<Value>& args) {
197 TCPWrap* wrap;
211 void TCPWrap::SetSimultaneousAccepts(const FunctionCallbackInfo<Value>& args) {
212 TCPWrap* wrap;
223 void TCPWrap::Open(const FunctionCallbackInfo<Value>& args) {
224 TCPWrap* wrap;
241 void TCPWrap::Bind(
245 TCPWrap* wrap;
270 void TCPWrap::Bind(const FunctionCallbackInfo<Value>& args) {
275 void TCPWrap::Bind6(const FunctionCallbackInfo<Value>& args) {
280 void TCPWrap::Listen(const FunctionCallbackInfo<Value>& args) {
281 TCPWrap* wrap;
295 void TCPWrap::Connect(const FunctionCallbackInfo<Value>& args) {
306 void TCPWrap::Connect6(const FunctionCallbackInfo<Value>& args) {
318 void TCPWrap::Connect(const FunctionCallbackInfo<Value>& args,
322 TCPWrap* wrap;
361 void TCPWrap::Reset(const FunctionCallbackInfo<Value>& args) {
362 TCPWrap* wrap;
371 int TCPWrap::Reset(Local<Value> close_callback) {
453 NODE_BINDING_CONTEXT_AWARE_INTERNAL(tcp_wrap, node::TCPWrap::Initialize)
455 node::TCPWrap::RegisterExternalReferences)