Lines Matching refs:m_socket
76 m_socket(kInvalidSocketValue), in Socket()
213 return m_socket; in GetWaitableHandle()
220 bytes_received = ::recv(m_socket, static_cast<char *>(buf), num_bytes, 0); in Read()
235 static_cast<void *>(this), static_cast<uint64_t>(m_socket), buf, in Read()
263 static_cast<void *>(this), static_cast<uint64_t>(m_socket), buf, in Write()
278 static_cast<void *>(this), static_cast<uint64_t>(m_socket)); in Close()
281 bool success = closesocket(m_socket) == 0; in Close()
283 bool success = ::close(m_socket) == 0; in Close()
286 m_socket = kInvalidSocketValue; in Close()
298 return ::getsockopt(m_socket, level, option_name, option_value_p, in GetOption()
305 return ::setsockopt(m_socket, level, option_name, option_value_p, in SetOption()
310 return ::send(m_socket, static_cast<const char *>(buf), num_bytes, 0); in Send()