Lines Matching refs:m_socket
75 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()
283 static_cast<void *>(this), static_cast<uint64_t>(m_socket)); in Close()
286 bool success = closesocket(m_socket) == 0; in Close()
288 bool success = ::close(m_socket) == 0; in Close()
291 m_socket = kInvalidSocketValue; in Close()
303 return ::getsockopt(m_socket, level, option_name, option_value_p, in GetOption()
310 return ::setsockopt(m_socket, level, option_name, option_value_p, in SetOption()
315 return ::send(m_socket, static_cast<const char *>(buf), num_bytes, 0); in Send()