Lines Matching refs:m_socket
76 m_socket(kInvalidSocketValue), in Socket()
214 return m_socket; in GetWaitableHandle()
221 bytes_received = ::recv(m_socket, static_cast<char *>(buf), num_bytes, 0); in Read()
236 static_cast<void *>(this), static_cast<uint64_t>(m_socket), buf, in Read()
264 static_cast<void *>(this), static_cast<uint64_t>(m_socket), buf, in Write()
279 static_cast<void *>(this), static_cast<uint64_t>(m_socket)); in Close()
282 bool success = closesocket(m_socket) == 0; in Close()
284 bool success = ::close(m_socket) == 0; in Close()
287 m_socket = kInvalidSocketValue; in Close()
299 return ::getsockopt(m_socket, level, option_name, option_value_p, in GetOption()
306 return ::setsockopt(m_socket, level, option_name, option_value_p, in SetOption()
311 return ::send(m_socket, static_cast<const char *>(buf), num_bytes, 0); in Send()