Lines Matching refs:m_socket
78 m_socket(kInvalidSocketValue), in Socket()
320 return m_socket; in GetWaitableHandle()
327 bytes_received = ::recv(m_socket, static_cast<char *>(buf), num_bytes, 0); in Read()
342 static_cast<void *>(this), static_cast<uint64_t>(m_socket), buf, in Read()
370 static_cast<void *>(this), static_cast<uint64_t>(m_socket), buf, in Write()
390 static_cast<void *>(this), static_cast<uint64_t>(m_socket)); in Close()
393 bool success = !!closesocket(m_socket); in Close()
395 bool success = !!::close(m_socket); in Close()
398 m_socket = kInvalidSocketValue; in Close()
410 return ::getsockopt(m_socket, level, option_name, option_value_p, in GetOption()
417 return ::setsockopt(m_socket, level, option_name, option_value_p, in SetOption()
422 return ::send(m_socket, static_cast<const char *>(buf), num_bytes, 0); in Send()