• Home
  • Raw
  • Download

Lines Matching refs:socket

590 static int unix_listen(struct socket *sock, int backlog)  in unix_listen()
621 static int unix_release(struct socket *);
622 static int unix_bind(struct socket *, struct sockaddr *, int);
623 static int unix_stream_connect(struct socket *, struct sockaddr *,
625 static int unix_socketpair(struct socket *, struct socket *);
626 static int unix_accept(struct socket *, struct socket *, int);
627 static int unix_getname(struct socket *, struct sockaddr *, int *, int);
628 static unsigned int unix_poll(struct file *, struct socket *, poll_table *);
629 static unsigned int unix_dgram_poll(struct file *, struct socket *,
631 static int unix_ioctl(struct socket *, unsigned int, unsigned long);
632 static int unix_shutdown(struct socket *, int);
633 static int unix_stream_sendmsg(struct kiocb *, struct socket *,
635 static int unix_stream_recvmsg(struct kiocb *, struct socket *,
637 static int unix_dgram_sendmsg(struct kiocb *, struct socket *,
639 static int unix_dgram_recvmsg(struct kiocb *, struct socket *,
641 static int unix_dgram_connect(struct socket *, struct sockaddr *,
643 static int unix_seqpacket_sendmsg(struct kiocb *, struct socket *,
645 static int unix_seqpacket_recvmsg(struct kiocb *, struct socket *,
742 static struct sock *unix_create1(struct net *net, struct socket *sock) in unix_create1()
783 static int unix_create(struct net *net, struct socket *sock, int protocol, in unix_create()
814 static int unix_release(struct socket *sock) in unix_release()
827 static int unix_autobind(struct socket *sock) in unix_autobind()
972 static int unix_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) in unix_bind()
1082 static int unix_dgram_connect(struct socket *sock, struct sockaddr *addr, in unix_dgram_connect()
1179 static int unix_stream_connect(struct socket *sock, struct sockaddr *uaddr, in unix_stream_connect()
1354 static int unix_socketpair(struct socket *socka, struct socket *sockb) in unix_socketpair()
1375 static void unix_sock_inherit_flags(const struct socket *old, in unix_sock_inherit_flags()
1376 struct socket *new) in unix_sock_inherit_flags()
1384 static int unix_accept(struct socket *sock, struct socket *newsock, int flags) in unix_accept()
1428 static int unix_getname(struct socket *sock, struct sockaddr *uaddr, int *uaddr_len, int peer) in unix_getname()
1561 static void maybe_add_creds(struct sk_buff *skb, const struct socket *sock, in maybe_add_creds()
1578 static int unix_dgram_sendmsg(struct kiocb *kiocb, struct socket *sock, in unix_dgram_sendmsg()
1792 static int unix_stream_sendmsg(struct kiocb *kiocb, struct socket *sock, in unix_stream_sendmsg()
1901 static int unix_seqpacket_sendmsg(struct kiocb *kiocb, struct socket *sock, in unix_seqpacket_sendmsg()
1920 static int unix_seqpacket_recvmsg(struct kiocb *iocb, struct socket *sock, in unix_seqpacket_recvmsg()
1942 static int unix_dgram_recvmsg(struct kiocb *iocb, struct socket *sock, in unix_dgram_recvmsg()
2083 static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock, in unix_stream_recvmsg()
2256 static int unix_shutdown(struct socket *sock, int mode) in unix_shutdown()
2332 static int unix_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) in unix_ioctl()
2357 static unsigned int unix_poll(struct file *file, struct socket *sock, poll_table *wait) in unix_poll()
2392 static unsigned int unix_dgram_poll(struct file *file, struct socket *sock, in unix_dgram_poll()