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

References

examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/server.cpp
   60   int sockfd = socket(PF_INET, SOCK_STREAM, 0);
examples/Kaleidoscope/BuildingAJIT/Chapter5/toy.cpp
 1235   int sockfd = socket(PF_INET, SOCK_STREAM, 0);
tools/lldb/source/Host/common/TCPSocket.cpp
   46 const int kType = SOCK_STREAM;
  153       host_str.c_str(), nullptr, AF_UNSPEC, SOCK_STREAM, IPPROTO_TCP);
  191       host_str.c_str(), nullptr, AF_UNSPEC, SOCK_STREAM, IPPROTO_TCP);
tools/lldb/source/Host/posix/DomainSocket.cpp
   32 const int kType = SOCK_STREAM;
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 3478     if (socketpair(AF_UNIX, SOCK_STREAM, 0, sockets) == -1) {
tools/lldb/tools/lldb-vscode/lldb-vscode.cpp
   78   SOCKET sockfd = socket(AF_INET, SOCK_STREAM, 0);
tools/lldb/unittests/Host/SocketAddressTest.cpp
   46                                             SOCK_STREAM, IPPROTO_TCP);
tools/lldb/unittests/Host/SocketTestUtilities.cpp
   97       ip.c_str(), NULL, AF_UNSPEC, SOCK_STREAM, IPPROTO_TCP);
utils/unittest/googletest/src/gtest.cc
 3787   hints.ai_socktype = SOCK_STREAM;