Searched refs:port (Results 51 - 75 of 366) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/usr/arrakismon/
H A Dkeyboard.h37 int keyboard_handle_pio_read (struct keyboard *k, uint16_t port,
39 int keyboard_handle_pio_write (struct keyboard *k, uint16_t port,
H A Dpci.c24 int pci_handle_pio_write(struct pci *pci, uint16_t port, enum opsize size, argument
29 switch(port) {
30 case 0xcf8: // PCI config address port
39 case 0xcfc: // PCI config data port
44 if(port != 0xcfc) {
48 VMKIT_PCI_DEBUG("wrote %x to 0x%x\n", val, port);
67 VMKIT_PCI_DEBUG("write to invalid port\n");
74 int pci_handle_pio_read(struct pci *pci, uint16_t port, enum opsize size, argument
79 switch(port) {
80 case 0xcf8: // PCI config address port
[all...]
H A Dpc16550d.h38 int pc16550d_handle_pio_read (struct pc16550d *u, uint16_t port,
40 int pc16550d_handle_pio_write (struct pc16550d *u, uint16_t port,
/barrelfish-2018-10-04/usr/drivers/usb/usb_manager/hub/
H A Dusb_hub_request.c45 uint8_t port)
54 req.wIndex = port;
67 * the port should be 1
102 usb_error_t usb_hub_get_port_status(struct usb_device *hub, uint16_t port, argument
115 req.wIndex = port;
119 usb_error_t usb_hub_reset_tt(struct usb_device *hub, uint16_t port) argument
129 * the port should be 1
131 port = 1;
140 req.wIndex = port;
159 uint8_t port)
44 usb_hub_clear_port_feature(struct usb_device *hub, uint16_t feature, uint8_t port) argument
158 usb_hub_set_port_feature(struct usb_device *hub, uint16_t feature, uint8_t port) argument
173 usb_hub_get_tt_state(struct usb_device *hub, uint16_t flags, uint16_t port, uint16_t max_length, uint16_t ret_length, void *ret_state) argument
181 usb_hub_stop_tt(struct usb_device *hub, uint16_t port) argument
216 usb_hub_reset_port(struct usb_device *hub, uint8_t port) argument
[all...]
/barrelfish-2018-10-04/include/ahci/
H A Dahci_util.h42 ahci_port_t port; member in struct:ahci_port_info
52 errval_t ahci_port_alloc_dma_structs(ahci_port_t *port,
/barrelfish-2018-10-04/usr/vmkitmon/
H A Dkeyboard.h37 int keyboard_handle_pio_read (struct keyboard *k, uint16_t port,
39 int keyboard_handle_pio_write (struct keyboard *k, uint16_t port,
H A Dpc16550d.h58 int pc16550d_handle_pio_read (struct pc16550d *u, uint16_t port,
60 int pc16550d_handle_pio_write (struct pc16550d *u, uint16_t port,
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/infiniband/core/
H A Dmulticast.c72 struct mcast_port port[0]; member in struct:mcast_device
97 struct mcast_port *port; member in struct:mcast_group
128 static struct mcast_group *mcast_find(struct mcast_port *port, argument
131 struct rb_node *node = port->table.rb_node;
149 static struct mcast_group *mcast_insert(struct mcast_port *port, argument
153 struct rb_node **link = &port->table.rb_node;
174 rb_insert_color(&group->node, &port->table);
178 static void deref_port(struct mcast_port *port) argument
180 if (atomic_dec_and_test(&port->refcount))
181 complete(&port
186 struct mcast_port *port = group->port; local
302 struct mcast_port *port = group->port; local
321 struct mcast_port *port = group->port; local
527 acquire_group(struct mcast_port *port, union ib_gid *mgid, gfp_t gfp_mask) argument
667 struct mcast_port *port; local
719 mcast_groups_event(struct mcast_port *port, enum mcast_group_state state) argument
772 struct mcast_port *port; local
820 struct mcast_port *port; local
[all...]
H A Dnotice.c75 struct inform_port port[0]; member in struct:inform_device
91 struct inform_port *port; member in struct:inform_group
126 static struct inform_group *inform_find(struct inform_port *port, argument
129 struct rb_node *node = port->table.rb_node;
144 static struct inform_group *inform_insert(struct inform_port *port, argument
147 struct rb_node **link = &port->table.rb_node;
162 rb_insert_color(&group->node, &port->table);
166 static void deref_port(struct inform_port *port) argument
168 if (atomic_dec_and_test(&port->refcount))
169 complete(&port
174 struct inform_port *port = group->port; local
210 struct inform_port *port = group->port; local
237 struct inform_port *port = group->port; local
451 struct inform_port *port; local
493 acquire_group(struct inform_port *port, u16 trap_number, gfp_t gfp_mask) argument
623 inform_groups_lost(struct inform_port *port) argument
666 struct inform_port *port; local
704 struct inform_port *port; local
[all...]
H A Dcache.c210 static void ib_cache_update(struct ib_device *device, u8 port) { argument
221 ret = ib_query_port(device, port, tprops);
243 ret = ib_query_pkey(device, port, i, pkey_cache->table + i);
252 ret = ib_query_gid(device, port, i, gid_cache->table + i);
262 old_pkey_cache = device->cache.pkey_cache[port - start_port(device)];
263 old_gid_cache = device->cache.gid_cache[port - start_port(device)];
265 device->cache.pkey_cache[port - start_port(device)] = pkey_cache;
266 device->cache.gid_cache[port - start_port(device)] = gid_cache;
268 device->cache.lmc_cache[port - start_port(device)] = tprops->lmc;
/barrelfish-2018-10-04/lib/libc/rpc/
H A Dpmap_getport.c64 * Find the mapped port for program,version.
72 u_short port = 0; local
89 &parms, (xdrproc_t)xdr_u_short, &port, tottimeout) !=
93 } else if (port == 0) {
99 return (port);
/barrelfish-2018-10-04/lib/lwip2/src/apps/snmp/
H A Dsnmp_raw.c46 snmp_recv(void *arg, struct udp_pcb *pcb, struct pbuf *p, const ip_addr_t *addr, u16_t port) argument
50 snmp_receive(pcb, p, addr, port);
56 snmp_sendto(void *handle, struct pbuf *p, const ip_addr_t *dst, u16_t port) argument
58 return udp_sendto((struct udp_pcb*)handle, p, dst, port);
83 * Allocates UDP pcb and binds it to IP_ANY_TYPE port 161.
/barrelfish-2018-10-04/lib/nfs/
H A Dportmap.x3 const PMAP_PORT = 111; /* portmapper port number */
9 uint32_t port;
28 uint32_t port;
/barrelfish-2018-10-04/kernel/arch/armv7/
H A Dplat_vexpress.c40 errval_t serial_init(unsigned port, bool initialize_hw) argument
42 lvaddr_t base = paging_map_device(uart_base[port], uart_size[port]);
43 pl011_init(port, base, initialize_hw);
/barrelfish-2018-10-04/kernel/arch/k1om/
H A Dserial.c38 errval_t serial_init(unsigned port, bool initialize_hw) { argument
51 errval_t serial_early_init(unsigned port) { argument
68 /** \brief Prints a single character to the default serial port. */
69 void serial_putchar(unsigned port, char c) { argument
106 /** \brief Reads a single character from the default serial port.
109 char serial_getchar(unsigned port) { argument
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/bio/
H A Dsaccept.c6 * saccept host:port
7 * host is the interface IP to use. If any interface, use *:port
32 char *port=NULL; local
40 port="*:4433";
42 port=argv[1];
68 if ((in=BIO_new_accept(port)) == NULL) goto err;
/barrelfish-2018-10-04/lib/tftp/
H A Dserver.c25 * \brief starts the tftp server on this machine on a given port
28 * \param port port to be used
34 errval_t tftp_server_accept(char *ip, uint16_t port, tfpt_server_cb_f_t cb) argument
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/
H A Dtkabortbutton28 set port [lindex $argv 2]
29 set abort_channel [socket localhost $port]
H A Dexample_multi.tcl41 set port ""
49 -p {set argstate port}
57 port {
58 set port $arg
159 ec_remote_init $host $port
H A Dtktools.tcl127 if {($tk_tools(host) != "" && $tk_tools(port) != "")} {
128 if [catch {ec_remote_init $tk_tools(host) $tk_tools(port) "ec_tools_init .mbar.tools"} err] {
140 set tk_tools(port) ""
160 -p {set argstate port}
168 port {
169 set tk_tools(port) $arg
180 if {$tk_tools(port) == ""} {
182 ;# popup a window to ask for host and port...
186 "Specify hostname and port number of ECLiPSe session to connect \
192 pack [frame .e.port]
[all...]
/barrelfish-2018-10-04/usr/tests/tftpclient/
H A Dmain.c21 uint16_t port = 69; variable
43 port = atoi(del + 1);
64 debug_printf("TFTP SERVER: %s:%u\n", server, port);
65 err = tftp_client_connect(server, port);
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/net/mlx4/
H A Den_netdev.c184 .port = priv->port,
437 Add VID to port VLAN filter
444 if (mlx4_register_vlan(mdev->dev, priv->port, vid, &idx))
463 Remove VID from port VLAN filter
465 mlx4_unregister_vlan(mdev->dev, priv->port, vid);
495 gid[5] = priv->port;
508 // rule.port = priv->port;
542 gid[5] = priv->port;
2393 mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port, struct mlx4_en_port_profile *prof, struct mlx4_queue *queue) argument
[all...]
/barrelfish-2018-10-04/lib/blk/blk_ahci/
H A Ddevice_impl.c14 struct ahci_port* port; member in struct:ahci_queue
27 assert(dq->port->ncs <= MAX_REQUESTS);
29 for (size_t i=0; i < dq->port->ncs; i++) {
46 struct ahci_port* port = &hba->ports[port_num]; local
47 if (!port->is_initialized) {
51 *p = port;
95 struct ahci_port *port = queue->port; local
97 assert(port->interrupt != NULL);
98 port
247 struct ahci_port* port = NULL; local
[all...]
/barrelfish-2018-10-04/include/net_sockets/
H A Dnet_sockets_types.h9 typedef void (*net_received_callback_t)(void *user_state, struct net_socket *socket, void *data, size_t size, struct in_addr ip_address, uint16_t port);
29 uint16_t port; member in struct:net_buffer
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/infiniband/hw/mlx4/
H A Dalias_GUID.c53 u8 port; member in struct:mlx4_alias_guid_work_context
63 u8 port; member in struct:mlx4_next_alias_guid_work
83 pr_debug("port: %d, guid_indexes: 0x%llx\n", port_num, (long long)guid_indexes);
105 static __be64 get_cached_alias_guid(struct mlx4_ib_dev *dev, int port, int index) argument
111 return *(__be64 *)&dev->sriov.demux[port - 1].guid_cache[index];
124 * updated; in this case it waits for the smp_snoop or the port management
147 pr_debug("port: %d, guid_indexes: 0x%llx\n", port_num, (long long)guid_indexes);
163 * If it is different, wait for the snoop_smp or the port mgmt
164 * change event to update the slave on its port state change
177 pr_debug("slave: %d, port
312 invalidate_guid_record(struct mlx4_ib_dev *dev, u8 port, int index) argument
345 set_guid_rec(struct ib_device *ibdev, u8 port, int index, struct mlx4_sriov_alias_guid_info_rec_det *rec_det) argument
436 mlx4_ib_invalidate_all_guid_record(struct mlx4_ib_dev *dev, int port) argument
466 get_next_record_to_update(struct mlx4_ib_dev *dev, u8 port, struct mlx4_next_alias_guid_work *rec) argument
491 set_administratively_guid_record(struct mlx4_ib_dev *dev, int port, int rec_index, struct mlx4_sriov_alias_guid_info_rec_det *rec_det) argument
503 set_all_slaves_guids(struct mlx4_ib_dev *dev, int port) argument
555 mlx4_ib_init_alias_guid_work(struct mlx4_ib_dev *dev, int port) argument
[all...]

Completed in 288 milliseconds

1234567891011>>