Lines Matching refs:m_socket
76 m_socket(kInvalidSocketValue), in Socket()
304 return m_socket; in GetWaitableHandle()
311 bytes_received = ::recv(m_socket, static_cast<char *>(buf), num_bytes, 0); in Read()
325 static_cast<void *>(this), static_cast<uint64_t>(m_socket), buf, in Read()
351 static_cast<void *>(this), static_cast<uint64_t>(m_socket), buf, in Write()
372 m_socket); in Close()
375 bool success = !!closesocket(m_socket); in Close()
377 bool success = !!::close(m_socket); in Close()
380 m_socket = kInvalidSocketValue; in Close()
392 return ::getsockopt(m_socket, level, option_name, option_value_p, in GetOption()
399 return ::setsockopt(m_socket, level, option_name, option_value_p, in SetOption()
404 return ::send(m_socket, static_cast<const char *>(buf), num_bytes, 0); in Send()