reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Host/SocketAddress.h
   76   sa_family_t GetFamily() const;

References

tools/lldb/source/Host/common/SocketAddress.cpp
  119   return GetFamilyLength(GetFamily());
  138   switch (GetFamily()) {
  140     if (inet_ntop(GetFamily(), &m_socket_addr.sa_ipv4.sin_addr, str,
  145     if (inet_ntop(GetFamily(), &m_socket_addr.sa_ipv6.sin6_addr, str,
  154   switch (GetFamily()) {
  164   switch (GetFamily()) {
  298   return (GetFamily() == AF_INET)
  304   return (GetFamily() == AF_INET)
  311   if (GetFamily() != rhs.GetFamily())
  311   if (GetFamily() != rhs.GetFamily())
  315   switch (GetFamily()) {
tools/lldb/source/Host/common/TCPSocket.cpp
  155     error = CreateSocket(address.GetFamily());
  193     int fd = Socket::CreateSocket(address.GetFamily(), kType, IPPROTO_TCP,
  209       listen_address.SetToAnyAddress(address.GetFamily(), port);
tools/lldb/unittests/Host/SocketAddressTest.cpp
   48   EXPECT_EQ(AF_INET, addr[0].GetFamily());