Home
last modified time | relevance | path

Searched defs:port (Results 1 – 25 of 1639) sorted by relevance

12345678910>>...66

/external/u-boot/drivers/serial/
Dserial_sh.c26 static int scif_rxfill(struct uart_port *port) in scif_rxfill()
31 static int scif_rxfill(struct uart_port *port) in scif_rxfill()
43 static int scif_rxfill(struct uart_port *port) in scif_rxfill()
51 static int scif_rxfill(struct uart_port *port) in scif_rxfill()
57 static void sh_serial_init_generic(struct uart_port *port) in sh_serial_init_generic()
69 sh_serial_setbrg_generic(struct uart_port *port, int clk, int baudrate) in sh_serial_setbrg_generic()
81 static void handle_error(struct uart_port *port) in handle_error()
89 static int serial_raw_putc(struct uart_port *port, const char c) in serial_raw_putc()
101 static int serial_rx_fifo_level(struct uart_port *port) in serial_rx_fifo_level()
106 static int sh_serial_tstc_generic(struct uart_port *port) in sh_serial_tstc_generic()
[all …]
Dserial_sh.h28 # define SCSCR_INIT(port) 0x30 /* TIE=0,RIE=0,TE=1,RE=1 */ argument
41 # define SCSCR_INIT(port) (port->mapbase == SCIF2) ? 0xF3 : 0xF0 argument
49 # define SCSCR_INIT(port) 0x0030 /* TIE=0,RIE=0,TE=1,RE=1 */ argument
57 # define SCSCR_INIT(port) 0x3a /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ argument
67 # define SCSCR_INIT(port) (((port)->type == PORT_SCI) ? \ argument
75 # define SCSCR_INIT(port) 0x38 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ argument
81 # define SCSCR_INIT(port) 0x3B argument
87 # define SCSCR_INIT(port) 0x32 /* TIE=0,RIE=0,TE=1,RE=1,REIE=0,CKE=1 */ argument
95 # define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ argument
100 # define SCSCR_INIT(port) 0x0038 /* TIE=0,RIE=0,TE=1,RE=1,REIE=1 */ argument
[all …]
Dserial_ns16550.c79 #define DECLARE_ESERIAL_FUNCTIONS(port) \ argument
110 #define INIT_ESERIAL_STRUCTURE(port, __name) { \ argument
121 static void _serial_putc(const char c, const int port) in _serial_putc()
129 static void _serial_puts(const char *s, const int port) in _serial_puts()
136 static int _serial_getc(const int port) in _serial_getc()
141 static int _serial_tstc(const int port) in _serial_tstc()
146 static void _serial_setbrg(const int port) in _serial_setbrg()
/external/nist-sip/java/gov/nist/core/net/
DNetworkLayer.java57 public ServerSocket createServerSocket(int port, int backlog, in createServerSocket()
69 public SSLServerSocket createSSLServerSocket(int port, int backlog, in createSSLServerSocket()
80 public Socket createSocket(InetAddress address, int port) throws IOException; in createSocket()
91 …public Socket createSocket(InetAddress address, int port, InetAddress localAddress) throws IOExcep… in createSocket()
109 public Socket createSocket(InetAddress address, int port, in createSocket()
121 public SSLSocket createSSLSocket(InetAddress address, int port) throws IOException; in createSSLSocket()
132 …public SSLSocket createSSLSocket(InetAddress address, int port, InetAddress localAddress) throws I… in createSSLSocket()
150 public DatagramSocket createDatagramSocket(int port, InetAddress laddr) in createDatagramSocket()
DDefaultNetworkLayer.java69 public ServerSocket createServerSocket(int port, int backlog, in createServerSocket()
74 public Socket createSocket(InetAddress address, int port) in createSocket()
83 public DatagramSocket createDatagramSocket(int port, InetAddress laddr) in createDatagramSocket()
98 public SSLServerSocket createSSLServerSocket(int port, int backlog, in createSSLServerSocket()
105 public SSLSocket createSSLSocket(InetAddress address, int port) in createSSLSocket()
111 public SSLSocket createSSLSocket(InetAddress address, int port, in createSSLSocket()
117 public Socket createSocket(InetAddress address, int port, in createSocket()
141 public Socket createSocket(InetAddress address, int port, in createSocket()
DSslNetworkLayer.java88 public ServerSocket createServerSocket(int port, int backlog, in createServerSocket()
93 public Socket createSocket(InetAddress address, int port) in createSocket()
102 public DatagramSocket createDatagramSocket(int port, InetAddress laddr) in createDatagramSocket()
108 public SSLServerSocket createSSLServerSocket(int port, int backlog, in createSSLServerSocket()
115 public SSLSocket createSSLSocket(InetAddress address, int port) in createSSLSocket()
121 public SSLSocket createSSLSocket(InetAddress address, int port, in createSSLSocket()
127 public Socket createSocket(InetAddress address, int port, in createSocket()
151 public Socket createSocket(InetAddress address, int port, in createSocket()
/external/u-boot/drivers/bios_emulator/
Dbesys.c249 #define IS_TIMER_PORT(port) (0x40 <= port && port <= 0x43) argument
250 #define IS_CMOS_PORT(port) (0x70 <= port && port <= 0x71) argument
252 #define IS_VGA_PORT(port) (0x3C0 <= port && port <= 0x3DA) argument
253 #define IS_PCI_PORT(port) (0xCF8 <= port && port <= 0xCFF) argument
254 #define IS_SPKR_PORT(port) (port == 0x61) argument
267 static u8 VGA_inpb (const int port) in VGA_inpb()
343 static void VGA_outpb (int port, u8 val) in VGA_outpb()
501 static u32 PCI_inp(int port, int type) in PCI_inp()
532 static void PCI_outp(int port, u32 val, int type) in PCI_outp()
570 u8 X86API BE_inb(X86EMU_pioAddr port) in BE_inb()
[all …]
Dbiosemui.h131 #define PM_inpb(port) inb(port+VIDEO_IO_OFFSET) argument
132 #define PM_inpw(port) inw(port+VIDEO_IO_OFFSET) argument
133 #define PM_inpd(port) inl(port+VIDEO_IO_OFFSET) argument
134 #define PM_outpb(port,val) outb(val,port+VIDEO_IO_OFFSET) argument
135 #define PM_outpw(port,val) outw(val,port+VIDEO_IO_OFFSET) argument
136 #define PM_outpd(port,val) outl(val,port+VIDEO_IO_OFFSET) argument
138 #define LOG_inpb(port) PM_inpb(port) argument
139 #define LOG_inpw(port) PM_inpw(port) argument
140 #define LOG_inpd(port) PM_inpd(port) argument
141 #define LOG_outpb(port,val) PM_outpb(port,val) argument
[all …]
/external/u-boot/arch/x86/cpu/quark/
Dmsg_port.c11 void msg_port_setup(int op, int port, int reg) in msg_port_setup()
18 u32 msg_port_read(u8 port, u32 reg) in msg_port_read()
30 void msg_port_write(u8 port, u32 reg, u32 value) in msg_port_write()
38 u32 msg_port_alt_read(u8 port, u32 reg) in msg_port_alt_read()
50 void msg_port_alt_write(u8 port, u32 reg, u32 value) in msg_port_alt_write()
58 u32 msg_port_io_read(u8 port, u32 reg) in msg_port_io_read()
70 void msg_port_io_write(u8 port, u32 reg, u32 value) in msg_port_io_write()
/external/chromium-trace/catapult/third_party/pyserial/serial/
Dserialposix.py36 def device(port): argument
43 def set_special_baudrate(port, baudrate): argument
97 def device(port): argument
100 def set_special_baudrate(port, baudrate): argument
119 def device(port): argument
122 def set_special_baudrate(port, baudrate): argument
130 def device(port): argument
133 def set_special_baudrate(port, baudrate): argument
143 def set_special_baudrate(port, baudrate): argument
150 def set_special_baudrate(port, baudrate): argument
[all …]
/external/u-boot/drivers/misc/
Dsmsc_sio1007.c11 static inline u8 sio1007_read(int port, int reg) in sio1007_read()
18 static inline void sio1007_write(int port, int reg, int val) in sio1007_write()
24 static inline void sio1007_clrsetbits(int port, int reg, u8 clr, u8 set) in sio1007_clrsetbits()
29 void sio1007_enable_serial(int port, int num, int iobase, int irq) in sio1007_enable_serial()
52 void sio1007_enable_runtime(int port, int iobase) in sio1007_enable_runtime()
67 void sio1007_gpio_config(int port, int gpio, int dir, int pol, int type) in sio1007_gpio_config()
90 int sio1007_gpio_get_value(int port, int gpio) in sio1007_gpio_get_value()
109 void sio1007_gpio_set_value(int port, int gpio, int val) in sio1007_gpio_set_value()
/external/u-boot/arch/x86/include/asm/arch-quark/
Dmsg_port.h108 #define msg_port_generic_clrsetbits(type, port, reg, clr, set) \ argument
113 #define msg_port_clrbits(port, reg, clr) \ argument
115 #define msg_port_setbits(port, reg, set) \ argument
117 #define msg_port_clrsetbits(port, reg, clr, set) \ argument
120 #define msg_port_alt_clrbits(port, reg, clr) \ argument
122 #define msg_port_alt_setbits(port, reg, set) \ argument
124 #define msg_port_alt_clrsetbits(port, reg, clr, set) \ argument
127 #define msg_port_io_clrbits(port, reg, clr) \ argument
129 #define msg_port_io_setbits(port, reg, set) \ argument
131 #define msg_port_io_clrsetbits(port, reg, clr, set) \ argument
/external/u-boot/drivers/gpio/
Dat91_gpio.c22 static struct at91_port *at91_pio_get_port(unsigned port) in at91_pio_get_port()
58 int at91_set_pio_pullup(unsigned port, unsigned pin, int use_pullup) in at91_set_pio_pullup()
71 int at91_set_pio_periph(unsigned port, unsigned pin, int use_pullup) in at91_set_pio_periph()
89 int at91_set_a_periph(unsigned port, unsigned pin, int use_pullup) in at91_set_a_periph()
108 int at91_set_b_periph(unsigned port, unsigned pin, int use_pullup) in at91_set_b_periph()
127 int at91_pio3_set_a_periph(unsigned port, unsigned pin, int use_pullup) in at91_pio3_set_a_periph()
150 int at91_pio3_set_b_periph(unsigned port, unsigned pin, int use_pullup) in at91_pio3_set_b_periph()
172 int at91_pio3_set_c_periph(unsigned port, unsigned pin, int use_pullup) in at91_pio3_set_c_periph()
194 int at91_pio3_set_d_periph(unsigned port, unsigned pin, int use_pullup) in at91_pio3_set_d_periph()
240 int at91_set_pio_input(unsigned port, u32 pin, int use_pullup) in at91_set_pio_input()
[all …]
/external/python/cpython2/Demo/sockets/
Dgopher.py41 def open_socket(host, port): argument
51 def send_request(selector, host, port): argument
58 def get_menu(selector, host, port): argument
88 def get_textfile(selector, host, port): argument
94 def get_alt_textfile(selector, host, port, func): argument
113 def get_binary(selector, host, port): argument
120 def get_alt_binary(selector, host, port, func, blocksize): argument
153 def browse_menu(selector, host, port): argument
199 def browse_textfile(selector, host, port): argument
221 def browse_search(selector, host, port): argument
[all …]
/external/grpc-grpc/test/core/util/
Dport.cc42 static int free_chosen_port(int port) { in free_chosen_port()
73 static void chose_port(int port) { in chose_port()
84 int port = grpc_pick_port_using_server(); in grpc_pick_unused_port_impl() local
93 int port = grpc_pick_unused_port(); in grpc_pick_unused_port_or_die_impl() local
105 static void grpc_recycle_unused_port_impl(int port) { in grpc_recycle_unused_port_impl()
121 void grpc_recycle_unused_port(int port) { in grpc_recycle_unused_port()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/tools/
DExecDumpClientTest.java115 int port = createExecServer(); in testDump() local
127 int port = createExecServer(); in testReset() local
130 client.dump((String) null, port); in testReset() local
141 int port = createNopServer(); in should_throw_IOException_when_server_closes_connection_without_response() local
142 client.dump((String) null, port); in should_throw_IOException_when_server_closes_connection_without_response() local
148 final int port = server.getLocalPort(); in getFreePort() local
/external/u-boot/arch/m68k/include/asm/
Dio.h46 #define insb(port, buf, ns) _insb((u8 *)((port)+_IO_BASE), (buf), (ns)) argument
47 #define outsb(port, buf, ns) _outsb((u8 *)((port)+_IO_BASE), (buf), (ns)) argument
48 #define insw(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
49 #define outsw(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
50 #define insl(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
51 #define outsl(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
53 #define inb(port) in_8((u8 *)((port)+_IO_BASE)) argument
54 #define outb(val, port) out_8((u8 *)((port)+_IO_BASE), (val)) argument
56 #define inw(port) in_be16((u16 *)((port)+_IO_BASE)) argument
57 #define outw(val, port) out_be16((u16 *)((port)+_IO_BASE), (val)) argument
[all …]
/external/u-boot/drivers/net/fm/
Dp4080.c25 static int is_device_disabled(enum fm_port port) in is_device_disabled()
33 void fman_disable_port(enum fm_port port) in fman_disable_port()
44 void fman_enable_port(enum fm_port port) in fman_enable_port()
51 phy_interface_t fman_port_enet_if(enum fm_port port) in fman_port_enet_if()
Dp1023.c17 static int is_device_disabled(enum fm_port port) in is_device_disabled()
25 void fman_disable_port(enum fm_port port) in fman_disable_port()
36 void fman_enable_port(enum fm_port port) in fman_enable_port()
43 phy_interface_t fman_port_enet_if(enum fm_port port) in fman_port_enet_if()
Dp5040.c27 static int is_device_disabled(enum fm_port port) in is_device_disabled()
35 void fman_disable_port(enum fm_port port) in fman_disable_port()
46 void fman_enable_port(enum fm_port port) in fman_enable_port()
53 phy_interface_t fman_port_enet_if(enum fm_port port) in fman_port_enet_if()
Dp5020.c21 static int is_device_disabled(enum fm_port port) in is_device_disabled()
29 void fman_disable_port(enum fm_port port) in fman_disable_port()
40 void fman_enable_port(enum fm_port port) in fman_enable_port()
47 phy_interface_t fman_port_enet_if(enum fm_port port) in fman_port_enet_if()
Db4860.c25 static int is_device_disabled(enum fm_port port) in is_device_disabled()
33 void fman_disable_port(enum fm_port port) in fman_disable_port()
40 void fman_enable_port(enum fm_port port) in fman_enable_port()
47 phy_interface_t fman_port_enet_if(enum fm_port port) in fman_port_enet_if()
/external/jcommander/src/test/java/com/beust/jcommander/
DPositiveIntegerTest.java13 private int port = 0; in validateTest() field in PositiveIntegerTest.Arg
25 private int port = 0; in validateTest2() field in PositiveIntegerTest.Arg
36 private int port = 0; in validateTest3() field in PositiveIntegerTest.Arg
47 private int port = 0; in validateTest4() field in PositiveIntegerTest.Arg
58 private int port = 0; in validateTest5() field in PositiveIntegerTest.Arg
/external/u-boot/arch/powerpc/include/asm/
Dio.h43 #define insb(port, buf, ns) _insb((u8 *)((port)+_IO_BASE), (buf), (ns)) argument
44 #define outsb(port, buf, ns) _outsb((u8 *)((port)+_IO_BASE), (buf), (ns)) argument
45 #define insw(port, buf, ns) _insw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
46 #define outsw(port, buf, ns) _outsw_ns((u16 *)((port)+_IO_BASE), (buf), (ns)) argument
47 #define insl(port, buf, nl) _insl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
48 #define outsl(port, buf, nl) _outsl_ns((u32 *)((port)+_IO_BASE), (buf), (nl)) argument
50 #define inb(port) in_8((u8 *)((port)+_IO_BASE)) argument
51 #define outb(val, port) out_8((u8 *)((port)+_IO_BASE), (val)) argument
53 #define inw(port) in_be16((u16 *)((port)+_IO_BASE)) argument
54 #define outw(val, port) out_be16((u16 *)((port)+_IO_BASE), (val)) argument
[all …]
/external/u-boot/arch/xtensa/include/asm/
Dio.h59 #define inb(port) readb((u8 *)((port))) argument
60 #define outb(val, port) writeb((val), (u8 *)((unsigned long)(port))) argument
61 #define inw(port) readw((u16 *)((port))) argument
62 #define outw(val, port) writew((val), (u16 *)((unsigned long)(port))) argument
63 #define inl(port) readl((u32 *)((port))) argument
64 #define outl(val, port) writel((val), (u32 *)((unsigned long)(port))) argument
66 #define inb_p(port) inb((port)) argument
67 #define outb_p(val, port) outb((val), (port)) argument
68 #define inw_p(port) inw((port)) argument
69 #define outw_p(val, port) outw((val), (port)) argument
[all …]

12345678910>>...66