Lines Matching full:int

34 static_assert(BITS_PER_TYPE(int) >= TRANSPORT_NUM);
52 unsigned int peer_cid;
53 unsigned int peer_port;
72 unsigned int parse_cid(const char *str);
73 unsigned int parse_port(const char *str);
74 int vsock_connect_fd(int fd, unsigned int cid, unsigned int port);
75 int vsock_connect(unsigned int cid, unsigned int port, int type);
76 int vsock_accept(unsigned int cid, unsigned int port,
77 struct sockaddr_vm *clientaddrp, int type);
78 int vsock_stream_connect(unsigned int cid, unsigned int port);
79 int vsock_bind_try(unsigned int cid, unsigned int port, int type);
80 int vsock_bind(unsigned int cid, unsigned int port, int type);
81 int vsock_bind_connect(unsigned int cid, unsigned int port,
82 unsigned int bind_port, int type);
83 int vsock_seqpacket_connect(unsigned int cid, unsigned int port);
84 int vsock_stream_accept(unsigned int cid, unsigned int port,
86 int vsock_stream_listen(unsigned int cid, unsigned int port);
87 int vsock_seqpacket_accept(unsigned int cid, unsigned int port,
89 void vsock_wait_remote_close(int fd);
90 bool vsock_ioctl_int(int fd, unsigned long op, int expected);
91 bool vsock_wait_sent(int fd);
92 void send_buf(int fd, const void *buf, size_t len, int flags,
94 void recv_buf(int fd, void *buf, size_t len, int flags, ssize_t expected_ret);
95 void send_byte(int fd, int expected_ret, int flags);
96 void recv_byte(int fd, int expected_ret, int flags);
107 struct iovec *alloc_test_iovec(const struct iovec *test_iovec, int iovnum);
109 struct iovec *iovec, int iovnum);
110 void setsockopt_ull_check(int fd, int level, int optname,
112 void setsockopt_int_check(int fd, int level, int optname, int val,
114 void setsockopt_timeval_check(int fd, int level, int optname,
116 void enable_so_zerocopy_check(int fd);
117 void enable_so_linger(int fd, int timeout);
118 int get_transports(void);