Searched refs:port (Results 126 - 150 of 366) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/mlx4/
H A Ddevice.h890 __be32 port; member in struct:mlx4_eqe::__anon810::__anon816
898 u8 port; member in struct:mlx4_eqe::__anon810::__anon818
911 u8 port; member in struct:mlx4_eqe::__anon810::__anon821
929 u8 port; member in struct:mlx4_eqe::__anon810::__anon825
972 #define mlx4_foreach_port(port, dev, type) \
973 for ((port) = 1; (port) <= (dev)->caps.num_ports; (port)++) \
974 if ((type) == (dev)->caps.port_mask[(port)])
976 #define mlx4_foreach_non_ib_transport_port(port, de
1221 u8 port; member in struct:mlx4_net_trans_rule
1233 u8 port; member in struct:mlx4_net_trans_rule_hw_ctrl
[all...]
/barrelfish-2018-10-04/lib/net_device_manager/
H A Dsoft_filt_cl_impl.c63 static uint64_t populate_rx_tx_filter_mem(uint16_t port,
70 static errval_t register_soft_filt_impl(uint16_t port,
109 // * converting port requests into filters
113 static errval_t register_soft_filt_impl(uint16_t port, argument
130 /* create rx, tx filter around that port */
133 *id = populate_rx_tx_filter_mem(port, type, &len_rx, &len_tx);
364 static uint64_t populate_rx_tx_filter_mem(uint16_t port, net_ports_port_type_t type, argument
392 (port_t) port
399 (port_t) port
402 /* FIXME: shouldn't be above two ports be wrapped in htons(port)
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/lib/
H A Dtracer.pl50 The handler then generates ports from notifications and calls port/2
51 for each port. Note that because of the mismatch between notifications
73 struct(trace_line(port,frame)).
113 ( NewStack = tf{parent:Parent} -> % call port
119 port(Port, NewStack)
120 ; % exit port
143 port('*exit' of ports, Frame)
145 port(exit of ports, Frame)
154 % FailLeave: fail port or leave port
[all...]
/barrelfish-2018-10-04/usr/bench/net_latency/elb/
H A Dudp_server.c23 struct pbuf *p, struct ip_addr *addr, u16_t port)
30 udp_sendto(pcb, p, &destaddr, port);
44 //bind it to every IP of every interface and define a specific port to
76 struct pbuf *p, struct ip_addr *addr, u16_t port)
106 // Connecting to given IP address, port no.
107 //don't use htons() on port no. (don't know why...)
22 udp_recv_handler_bm(void *arg, struct udp_pcb *pcb, struct pbuf *p, struct ip_addr *addr, u16_t port) argument
75 udp_recv_handler_bm_client(void *arg, struct udp_pcb *pcb, struct pbuf *p, struct ip_addr *addr, u16_t port) argument
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/net/mlx4/
H A Dmcg.c98 static int mlx4_WRITE_PROMISC(struct mlx4_dev *dev, u8 port, u8 steer,
103 in_mod = (u32) port << 16 | steer << 1;
122 static struct mlx4_promisc_qp *get_promisc_qp(struct mlx4_dev *dev, u8 port, argument
127 if (port < 1 || port > dev->caps.num_ports)
130 s_steer = &mlx4_priv(dev)->steer[port - 1];
143 static int new_steering_entry(struct mlx4_dev *dev, u8 port, argument
155 if (port < 1 || port > dev->caps.num_ports)
158 s_steer = &mlx4_priv(dev)->steer[port
233 existing_steering_entry(struct mlx4_dev *dev, u8 port, enum mlx4_steer_type steer, unsigned int index, u32 qpn) argument
663 find_entry(struct mlx4_dev *dev, u8 port, u8 *gid, enum mlx4_protocol prot, struct mlx4_cmd_mailbox *mgm_mailbox, int *prev, int *index) argument
991 u8 port = gid[5]; local
1234 mlx4_trans_to_dmfs_attach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], u8 port, int block_mcast_loopback, enum mlx4_protocol prot, u64 *reg_id) argument
1271 mlx4_multicast_attach(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], u8 port, int block_mcast_loopback, enum mlx4_protocol prot, u64 *reg_id) argument
[all...]
H A Dmlx4_devif_queue.c338 /* Sense port always allowed on supported devices for ConnectX-1 and -2 */
341 /* Don't do sense port on multifunction devices (for now at least) */
363 * if IB and ETH are supported, we set the port
364 * type according to user selection of port type;
375 MLX4_DEBUG( "Port %d is valid port. "
382 /*TODO: let the user select the port like above*/
389 * Link sensing is allowed on the port if 3 conditions are true:
390 * 1. Both protocols are supported on the port.
391 * 2. Different types are supported on the port
404 * If "default_sense" bit is set, we move the port t
1197 int port; local
1390 mlx4_init_port_info(int port) argument
1447 int port; local
1636 __mlx4_counter_alloc(struct mlx4_dev *dev, int slave, int port, int *idx) argument
1708 mlx4_counter_alloc(struct mlx4_dev *dev, u8 port, int *idx) argument
[all...]
/barrelfish-2018-10-04/lib/lwip2/src/api/
H A Dapi_lib.c201 * Get the local or remote IP address and port of a netconn.
202 * For RAW netconns, this returns the protocol instead of a port!
206 * @param port a pointer to which to save the port (or protocol for RAW)
212 netconn_getaddr(struct netconn *conn, ip_addr_t *addr, u16_t *port, u8_t local) argument
219 LWIP_ERROR("netconn_getaddr: invalid port", (port != NULL), return ERR_ARG;);
227 *port = msg->msg.ad.port;
230 msg.msg.ad.port
250 netconn_bind(struct netconn *conn, const ip_addr_t *addr, u16_t port) argument
294 netconn_connect(struct netconn *conn, const ip_addr_t *addr, u16_t port) argument
683 netconn_sendto(struct netconn *conn, struct netbuf *buf, const ip_addr_t *addr, u16_t port) argument
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Pds/src/
H A Dnsrv.h46 #define NSRV_NOPORT (PDS_RET_MAX + 1) /* no such port */
61 #define NSRV_PORT_DEFAULT 4916 /* number of 1st default port */
154 aport_t * port);
160 aport_t * port);
164 bport_t * port);
170 bport_t * port);
H A Dnsrv_client.c469 /* get port number */
503 *port_number = number; /* update port number */
615 /* update port number */
647 bport_t port;
659 /* close name server port */
663 /* wait till name server port has actually been closed */
665 bret = bport_port(nsrv_port.bport_id,&port);
691 nsrv_aport_register(key,name,signature,port)
695 aport_t * port;
702 if (!key || !name || !signature || !port)
646 bport_t port; local
[all...]
/barrelfish-2018-10-04/kernel/arch/armv7/
H A Dplat_omap44xx.c47 errval_t serial_init(unsigned port, bool initialize_hw) argument
49 lvaddr_t base = paging_map_device(uart_base[port], uart_size[port]);
50 omap_uart_init(port, base, initialize_hw);
/barrelfish-2018-10-04/usr/arrakismon/
H A Dkeyboard.c138 keyboard_handle_pio_read (struct keyboard *k, uint16_t port, argument
141 switch (port) {
152 keyboard_handle_pio_write (struct keyboard *k, uint16_t port, argument
155 switch (port) {
H A Drealmode.c35 io_inb (uint16_t port) argument
42 io_inw (uint16_t port) argument
49 io_inl (uint16_t port) argument
56 io_outb (uint16_t port, uint8_t val) argument
61 info1 |= port << 16;
72 io_outw (uint16_t port, uint16_t val) argument
78 io_outl (uint16_t port, uint32_t val) argument
/barrelfish-2018-10-04/usr/block_server/
H A Dnetwork_client.h30 uint16_t port);
/barrelfish-2018-10-04/include/lwip/lwip/
H A Dapi.h50 /* Throughout this file, IP addresses and port numbers are expected to be in
179 struct ip_addr *addr, u16_t * port, u8_t local);
183 err_t netconn_bind(struct netconn *conn, struct ip_addr *addr, u16_t port);
195 struct ip_addr *addr, u16_t port);
202 struct netbuf *buf, struct ip_addr *addr, u16_t port);
/barrelfish-2018-10-04/usr/vmkitmon/
H A Dkeyboard.c138 keyboard_handle_pio_read (struct keyboard *k, uint16_t port, argument
141 switch (port) {
152 keyboard_handle_pio_write (struct keyboard *k, uint16_t port, argument
155 switch (port) {
H A Dpc16550d.c172 pc16550d_handle_pio_read (struct pc16550d *u, uint16_t port, argument
176 assert(port >= u->base_port);
178 port -= u->base_port;
180 switch (port) {
251 assert(!"pc16550d: read access to unknown port");
262 pc16550d_handle_pio_write (struct pc16550d *u, uint16_t port, argument
266 assert(port >= u->base_port);
268 port -= u->base_port;
274 switch (port) {
332 assert(!"pc16550d: write access to unknown port");
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Ds_apps.h151 int do_server(int port, int type, int *ret, int (*cb) (char *hostname, int s, unsigned char *context), unsigned char *context);
159 int init_client(int *sock, char *server, int port, int type);
/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dnetbuf.h54 /** This netbuf has dest-addr/port set */
63 u16_t port; member in struct:netbuf
97 #define netbuf_fromport(buf) ((buf)->port)
/barrelfish-2018-10-04/include/lwip2/lwip/priv/
H A Dapi_msg.h73 /* IP addresses and port numbers are expected to be in
96 u16_t port; member in struct:api_msg::__anon129::__anon131
101 u16_t API_MSG_M_DEF(port);
/barrelfish-2018-10-04/include/lwip2/netif/ppp/
H A Dpppapi.h78 u16_t port; member in struct:pppapi_msg_msg::__anon156::__anon160
119 ppp_pcb *pppapi_pppol2tp_create(struct netif *pppif, struct netif *netif, ip_addr_t *ipaddr, u16_t port,
/barrelfish-2018-10-04/usr/eclipseclp/JavaInterface/src/com/parctechnologies/eclipse/
H A DRemoteEclipse.java139 * (IP address, port number, password) are specified as parameters and must match those
158 * (IP address, port number) are specified as parameters and must match those
177 * (IP address, port number) are specified as parameters and must match those
224 * (IP address, port number, password) are specified as parameters and must match those
401 // port to be used on eclipse side for socket
402 int port;
443 // extract port number from the response
444 port = ((Integer) result1.arg(1)).intValue();
446 setupRemoteFromecQueue(nameAtom, port);
452 private void setupRemoteFromecQueue(Atom nameAtom, int port) argument
561 setupRemoteToecQueue(Atom nameAtom, int port) argument
669 setupRemoteAsyncecQueue(Atom nameAtom, int port) argument
1292 respondRemoteOpenQueue(Integer port, Atom nameAtom, Atom type, Atom direction) argument
1382 private Integer port; field in class:RemoteEclipse.RemoteOpenQueueSignal
1387 RemoteOpenQueueSignal(Integer port, Atom nameAtom, Atom type, Atom direction) argument
[all...]
/barrelfish-2018-10-04/doc/015-disk-driver-arch/
H A Ddesign.tex11 \ac{hba} ports, and similarly to forward all interrupts for a port to any
12 clients registered to that port.
20 In such a design, all port memory access, including issuing of commands, would
27 given full access to the port memory. Because this is usually within the same
29 port's registers, but all other ports' and the \ac{hba}'s registers as well.
46 using an \ac{ahci} port) and the \ac{ata} message specification and translation
58 ahcid ensures only one user can access an \ac{ahci} port at a time. Users can
59 open a port by sending an \acs{idc} message to ahcid. If no other user
60 currently owns the port, ahcid will provide a memory capability to the port'
[all...]
/barrelfish-2018-10-04/lib/net_sockets/
H A Dnet_sockets.c163 errval_t net_bind(struct net_socket *socket, struct in_addr ip_address, uint16_t port) argument
168 err = binding->rpc_tx_vtbl.bind(binding, socket->descriptor, ip_address.s_addr, port, &error, &bound_port);
236 nb->port = 0;
248 errval_t net_send_to(struct net_socket *socket, void *data, size_t size, struct in_addr ip_address, uint16_t port) argument
259 nb->port = port;
271 errval_t net_connect(struct net_socket *socket, struct in_addr ip_address, uint16_t port, net_connected_callback_t cb) argument
276 err = binding->rpc_tx_vtbl.connect(binding, socket->descriptor, ip_address.s_addr, port, &error);
306 static void net_accepted(uint32_t descriptor, uint32_t accepted_descriptor, struct in_addr host_address, uint16_t port) argument
318 accepted_socket->connected_port = port;
399 uint16_t port = nb->port; local
[all...]
/barrelfish-2018-10-04/lib/libc/net/
H A Dgetservent.c146 int port; member in union:key::__anon1021
296 int port; local
316 port = va_arg(ap, int);
373 compat_src, port, proto, serv, buffer,
412 if (port != serv->s_port)
501 int port; local
517 port = va_arg(ap, int);
569 port = htons(port);
572 "\377%d", port);
673 int port; local
867 int port; local
943 int port; local
1044 int port; local
1145 getservbyport_r(int port, const char *proto, struct servent *serv, char *buffer, size_t bufsize, struct servent **result) argument
1353 getservbyport(int port, const char *proto) argument
[all...]
/barrelfish-2018-10-04/usr/tests/net_tests/udp_throughput/
H A Dudp_test.c337 struct ip_addr *addr, u16_t port)
379 // Bind to specified port
403 uint16_t port = 0; // Port number of the peer local
427 port = atoi(argv[3]);
428 if (port <= 0) {
429 printf("Invalid port given [%s] == [%"PRIu16"]\n",
430 argv[3], port);
432 } // end if : port validation
439 } // end if : port validation
472 udp_sender(upcb, peer_ip, port);
336 udp_recv_handler(void *arg, struct udp_pcb *pcb, struct pbuf *pbuf, struct ip_addr *addr, u16_t port) argument
[all...]

Completed in 303 milliseconds

1234567891011>>