Searched refs:port (Results 1 - 25 of 127) sorted by last modified time

123456

/include/uapi/linux/
H A Db1lli.h47 int port; member in struct:avmb1_carddef
57 int port; member in struct:avmb1_extcarddef
H A Dethtool.h36 * @port: Physical connector type; one of %PORT_*
77 * fitted. For these interfaces @port and/or @phy_address may be
99 __u8 port; member in struct:ethtool_cmd
689 * @psrc: Source port
690 * @pdst: Destination port
1115 * physical port (if there is one) are up (ethtool_value). */
1264 /* Which connector port. */
1329 #define RXH_L4_B_0_1 (1 << 6) /* src port in case of TCP/UDP/SCTP */
1330 #define RXH_L4_B_2_3 (1 << 7) /* dst port in case of TCP/UDP/SCTP */
H A Dif.h175 unsigned char port; member in struct:ifmap
H A Dif_link.h80 __u8 port; member in struct:rtnl_link_ifmap
242 IFLA_BRPORT_PROTECT, /* root port protection */
344 IFLA_VXLAN_PORT_RANGE, /* source port */
349 IFLA_VXLAN_PORT, /* destination port */
H A Dinet_diag.h80 int port; member in struct:inet_diag_hostcond
H A Dip_vs.h20 #define IP_VS_SVC_F_PERSISTENT 0x0001 /* persistent port */
28 #define IP_VS_SVC_F_SCHED_SH_PORT IP_VS_SVC_F_SCHED2 /* SH use port */
94 #define IP_VS_CONN_F_NO_CPORT 0x0800 /* no client port set yet */
134 __be16 port; member in struct:ip_vs_service_user
148 __be16 port; member in struct:ip_vs_dest_user
196 __be16 port; member in struct:ip_vs_service_entry
215 __be16 port; member in struct:ip_vs_dest_entry
236 __be16 port; member in struct:ip_vs_get_dests
349 IPVS_SVC_ATTR_PORT, /* virtual service port */
374 IPVS_DEST_ATTR_PORT, /* real server port */
[all...]
H A Dkernelcapi.h25 unsigned int port; member in struct:kcapi_carddef
H A Dkvm.h225 __u16 port; member in struct:kvm_run::__anon1919::__anon1923
H A Dphonet.h112 static inline __u16 pn_object(__u8 addr, __u16 port) argument
114 return (addr << 8) | (port & 0x3ff);
143 static inline void pn_sockaddr_set_port(struct sockaddr_pn *spn, __u16 port) argument
146 spn->spn_dev |= (port >> 8) & 0x03;
147 spn->spn_obj = port & 0xff;
H A Drds.h188 #define RDS_CONG_MONITOR_BIT(port) (((unsigned int) port) % RDS_CONG_MONITOR_SIZE)
189 #define RDS_CONG_MONITOR_MASK(port) (1ULL << RDS_CONG_MONITOR_BIT(port))
H A Dserial.h21 unsigned int port; member in struct:serial_struct
40 * For the close wait times, 0 means wait forever for serial port to
H A Dtelephony.h75 port, enumerator in enum:__anon2232
226 * the PSTN port. The caller_id bit indicates that caller_id data has been
H A Dtipc.h86 * Application-accessible port name types
95 * Publication scopes when binding port names and port name sequences
132 #define TIPC_SUB_PORTS 0x01 /* filter for port availability */
153 struct tipc_portid port; /* associated port */ member in struct:tipc_event
H A Dusbdevice_fs.h125 * except find out what device connects to what port. */
128 char port [127]; /* e.g. port 3 connects to device 27 */ member in struct:usbdevfs_hub_portinfo
/include/uapi/linux/netfilter/
H A Dnf_conntrack_tuple_common.h18 __be16 port; member in struct:nf_conntrack_man_proto::__anon1977
21 __be16 port; member in struct:nf_conntrack_man_proto::__anon1978
27 __be16 port; member in struct:nf_conntrack_man_proto::__anon1980
30 __be16 port; member in struct:nf_conntrack_man_proto::__anon1981
/include/uapi/rdma/
H A Dib_user_cm.h248 __u8 port; member in struct:ib_ucm_req_event_resp
288 __u8 port; member in struct:ib_ucm_sidr_req_event_resp
H A Dib_user_verbs.h792 __u8 port; member in struct:ib_uverbs_flow_attr
/include/uapi/sound/
H A Dasequencer.h99 #define SNDRV_SEQ_EVENT_PORT_START 63 /* new port was created */
100 #define SNDRV_SEQ_EVENT_PORT_EXIT 64 /* port was deleted from system */
101 #define SNDRV_SEQ_EVENT_PORT_CHANGE 65 /* port status/info has changed */
103 /** port connection changes
158 unsigned char port; /**< Port within client: 0..255, 255 = broadcast to all ports */ member in struct:snd_seq_addr
161 /** port connection */
314 int channels; /* maximum channels per port */
379 #define SNDRV_SEQ_REMOVE_DEST (1<<2) /* Restrict by destination q:client:port */
405 /* known port numbers */
409 /* port capabilitie
[all...]
H A Dsfnt_info.h199 int port; /* -1 = all */ member in struct:snd_emux_misc_mode
/include/uapi/xen/
H A Devtchn.h37 * Bind a fresh port to VIRQ @virq.
38 * Return allocated port.
47 * Bind a fresh port to remote <@remote_domain, @remote_port>.
48 * Return allocated port.
57 * Allocate a fresh port for binding to @remote_domain.
58 * Return allocated port.
67 * Unbind previously allocated @port.
72 unsigned int port; member in struct:ioctl_evtchn_unbind
76 * Unbind previously allocated @port.
81 unsigned int port; member in struct:ioctl_evtchn_notify
[all...]
/include/video/
H A Dvga.h199 * generic VGA port read/write
202 static inline unsigned char vga_io_r (unsigned short port) argument
204 return inb_p(port);
207 static inline void vga_io_w (unsigned short port, unsigned char val) argument
209 outb_p(val, port);
212 static inline void vga_io_w_fast (unsigned short port, unsigned char reg, argument
215 outw(VGA_OUT16VAL (val, reg), port); local
218 static inline unsigned char vga_mm_r (void __iomem *regbase, unsigned short port) argument
220 return readb (regbase + port);
223 static inline void vga_mm_w (void __iomem *regbase, unsigned short port, unsigne argument
228 vga_mm_w_fast(void __iomem *regbase, unsigned short port, unsigned char reg, unsigned char val) argument
231 writew (VGA_OUT16VAL (val, reg), regbase + port); local
234 vga_r(void __iomem *regbase, unsigned short port) argument
242 vga_w(void __iomem *regbase, unsigned short port, unsigned char val) argument
251 vga_w_fast(void __iomem *regbase, unsigned short port, unsigned char reg, unsigned char val) argument
[all...]
H A Dw100fb.h20 unsigned long w100fb_gpio_read(int port);
21 void w100fb_gpio_write(int port, unsigned long value);
/include/xen/
H A Devents.h62 static inline void notify_remote_via_evtchn(int port) argument
64 struct evtchn_send send = { .port = port };
H A Dxenbus.h212 int xenbus_alloc_evtchn(struct xenbus_device *dev, int *port);
213 int xenbus_free_evtchn(struct xenbus_device *dev, int port);
/include/xen/interface/
H A Devent_channel.h18 * EVTCHNOP_alloc_unbound: Allocate a port in domain <dom> and mark as
19 * accepting interdomain bindings from domain <remote_dom>. A fresh port
20 * is allocated in <dom> and returned as <port>.
30 evtchn_port_t port; member in struct:evtchn_alloc_unbound
36 * a port that is unbound and marked as accepting bindings from the calling
37 * domain. A fresh port is allocated in the calling domain and returned as
65 evtchn_port_t port; member in struct:evtchn_bind_virq
81 evtchn_port_t port; member in struct:evtchn_bind_pirq
94 evtchn_port_t port; member in struct:evtchn_bind_ipi
98 * EVTCHNOP_close: Close a local event channel <port>
105 evtchn_port_t port; member in struct:evtchn_close
115 evtchn_port_t port; member in struct:evtchn_send
130 evtchn_port_t port; member in struct:evtchn_status
146 evtchn_port_t port; member in struct:evtchn_status::__anon2403::__anon2405
166 evtchn_port_t port; member in struct:evtchn_bind_vcpu
177 evtchn_port_t port; member in struct:evtchn_unmask
222 uint32_t port; member in struct:evtchn_set_priority
[all...]

Completed in 331 milliseconds

123456