domain            376 miscwrappers.cpp       SYSCALL_GET_ARGS_3(int,domain,int,type,int,protocol);
domain            377 miscwrappers.cpp       ret = socket(domain,type,protocol);
domain            137 nosyscallsreal.c int _real_socket (int domain, int type, int protocol)
domain            139 nosyscallsreal.c   REAL_FUNC_PASSTHROUGH (socket) (domain,type,protocol);
domain            226 plugin/ipc/socket/connectionrewirer.cpp                                     int domain)
domain            228 plugin/ipc/socket/connectionrewirer.cpp   JASSERT(domain == AF_INET || domain == AF_INET6 || domain == AF_UNIX)
domain            229 plugin/ipc/socket/connectionrewirer.cpp     (domain) .Text("Unsupported domain.");
domain            231 plugin/ipc/socket/connectionrewirer.cpp   if (domain == AF_INET) {
domain            233 plugin/ipc/socket/connectionrewirer.cpp   } else if (domain == AF_INET6) {
domain            239 plugin/ipc/socket/connectionrewirer.cpp   } else if (domain == AF_UNIX) {
domain             51 plugin/ipc/socket/connectionrewirer.h                             int domain);
domain             70 plugin/ipc/socket/socketconnection.cpp SocketConnection::SocketConnection(int domain, int type, int protocol)
domain             71 plugin/ipc/socket/socketconnection.cpp   : _sockDomain(domain)
domain            177 plugin/ipc/socket/socketconnection.cpp   TcpConnection::TcpConnection(int domain, int type, int protocol)
domain            179 plugin/ipc/socket/socketconnection.cpp   , SocketConnection(domain, type, protocol)
domain            184 plugin/ipc/socket/socketconnection.cpp   if (domain != -1) {
domain            191 plugin/ipc/socket/socketconnection.cpp       JWARNING((domain == AF_INET || domain == AF_UNIX || domain == AF_INET6)
domain            193 plugin/ipc/socket/socketconnection.cpp         (domain) (type) (protocol);
domain            195 plugin/ipc/socket/socketconnection.cpp     JTRACE("Creating TcpConnection.") (id()) (domain) (type) (protocol);
domain            639 plugin/ipc/socket/socketconnection.cpp RawSocketConnection::RawSocketConnection(int domain, int type, int protocol)
domain            641 plugin/ipc/socket/socketconnection.cpp     , SocketConnection(domain, type, protocol)
domain            644 plugin/ipc/socket/socketconnection.cpp   JASSERT(domain == -1 || domain == AF_NETLINK) (domain)
domain            646 plugin/ipc/socket/socketconnection.cpp   JTRACE("Creating Raw socket.") (id()) (domain) (type) (protocol);
domain             54 plugin/ipc/socket/socketconnection.h       SocketConnection(int domain, int type, int protocol);
domain             92 plugin/ipc/socket/socketconnection.h       TcpConnection(int domain, int type, int protocol);
domain            139 plugin/ipc/socket/socketconnection.h       RawSocketConnection(int domain, int type, int protocol);
domain             96 plugin/ipc/socket/socketconnlist.cpp       int domain = ((TcpConnection*)con)->sockDomain();
domain             97 plugin/ipc/socket/socketconnlist.cpp       if (domain == AF_INET) {
domain             99 plugin/ipc/socket/socketconnlist.cpp       } else if (domain == AF_INET6) {
domain            101 plugin/ipc/socket/socketconnlist.cpp       } else if (domain == AF_UNIX) {
domain             53 plugin/ipc/socket/socketwrappers.cpp extern "C" int socket(int domain, int type, int protocol)
domain             56 plugin/ipc/socket/socketwrappers.cpp   int ret = _real_socket(domain, type, protocol);
domain             59 plugin/ipc/socket/socketwrappers.cpp     JTRACE("socket created") (ret) (domain) (type) (protocol);
domain             61 plugin/ipc/socket/socketwrappers.cpp       JASSERT(domain == AF_NETLINK) (domain) (type)
domain             63 plugin/ipc/socket/socketwrappers.cpp       con = new RawSocketConnection(domain, type, protocol);
domain             65 plugin/ipc/socket/socketwrappers.cpp       con = new TcpConnection(domain, type, protocol);
domain            526 syscallsreal.c int _real_socket (int domain, int type, int protocol)
domain            528 syscallsreal.c   REAL_FUNC_PASSTHROUGH (socket) (domain,type,protocol);
domain            289 syscallwrappers.h   int _real_socket (int domain, int type, int protocol);