protocol 376 miscwrappers.cpp SYSCALL_GET_ARGS_3(int,domain,int,type,int,protocol); protocol 377 miscwrappers.cpp ret = socket(domain,type,protocol); protocol 421 miscwrappers.cpp SYSCALL_GET_ARGS_4(int,d,int,type,int,protocol,int*,sv); protocol 422 miscwrappers.cpp ret = socketpair(d,type,protocol,sv); protocol 137 nosyscallsreal.c int _real_socket (int domain, int type, int protocol) protocol 139 nosyscallsreal.c REAL_FUNC_PASSTHROUGH (socket) (domain,type,protocol); protocol 246 nosyscallsreal.c int _real_socketpair (int d, int type, int protocol, int sv[2]) protocol 248 nosyscallsreal.c REAL_FUNC_PASSTHROUGH (socketpair) (d,type,protocol,sv); protocol 70 plugin/ipc/socket/socketconnection.cpp SocketConnection::SocketConnection(int domain, int type, int protocol) protocol 73 plugin/ipc/socket/socketconnection.cpp , _sockProtocol(protocol) protocol 177 plugin/ipc/socket/socketconnection.cpp TcpConnection::TcpConnection(int domain, int type, int protocol) protocol 179 plugin/ipc/socket/socketconnection.cpp , SocketConnection(domain, type, protocol) protocol 193 plugin/ipc/socket/socketconnection.cpp (domain) (type) (protocol); protocol 195 plugin/ipc/socket/socketconnection.cpp JTRACE("Creating TcpConnection.") (id()) (domain) (type) (protocol); protocol 639 plugin/ipc/socket/socketconnection.cpp RawSocketConnection::RawSocketConnection(int domain, int type, int protocol) protocol 641 plugin/ipc/socket/socketconnection.cpp , SocketConnection(domain, type, protocol) protocol 646 plugin/ipc/socket/socketconnection.cpp JTRACE("Creating Raw socket.") (id()) (domain) (type) (protocol); protocol 54 plugin/ipc/socket/socketconnection.h SocketConnection(int domain, int type, int protocol); protocol 92 plugin/ipc/socket/socketconnection.h TcpConnection(int domain, int type, int protocol); protocol 139 plugin/ipc/socket/socketconnection.h RawSocketConnection(int domain, int type, int protocol); protocol 53 plugin/ipc/socket/socketwrappers.cpp extern "C" int socket(int domain, int type, int protocol) protocol 56 plugin/ipc/socket/socketwrappers.cpp int ret = _real_socket(domain, type, protocol); protocol 59 plugin/ipc/socket/socketwrappers.cpp JTRACE("socket created") (ret) (domain) (type) (protocol); protocol 63 plugin/ipc/socket/socketwrappers.cpp con = new RawSocketConnection(domain, type, protocol); protocol 65 plugin/ipc/socket/socketwrappers.cpp con = new TcpConnection(domain, type, protocol); protocol 264 plugin/ipc/socket/socketwrappers.cpp extern "C" int socketpair(int d, int type, int protocol, int sv[2]) protocol 269 plugin/ipc/socket/socketwrappers.cpp int rv = _real_socketpair(d,type,protocol,sv); protocol 275 plugin/ipc/socket/socketwrappers.cpp a = new TcpConnection(d, type, protocol); protocol 526 syscallsreal.c int _real_socket (int domain, int type, int protocol) protocol 528 syscallsreal.c REAL_FUNC_PASSTHROUGH (socket) (domain,type,protocol); protocol 695 syscallsreal.c int _real_socketpair (int d, int type, int protocol, int sv[2]) protocol 697 syscallsreal.c REAL_FUNC_PASSTHROUGH (socketpair) (d,type,protocol,sv); protocol 289 syscallwrappers.h int _real_socket (int domain, int type, int protocol); protocol 340 syscallwrappers.h int _real_socketpair (int d, int type, int protocol, int sv[2]);