HomeSort by: relevance | last modified time | path
    Searched refs:serial (Results 1 - 25 of 569) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gdb/dist/gdb/
ser-base.h 1 /* Generic serial interface functions.
23 #include "serial.h"
25 struct serial;
28 extern int generic_readchar (struct serial *scb, int timeout,
29 int (*do_readchar) (struct serial *scb,
31 extern int ser_base_flush_output (struct serial *scb);
32 extern int ser_base_flush_input (struct serial *scb);
33 extern void ser_base_send_break (struct serial *scb);
34 extern void ser_base_raw (struct serial *scb);
35 extern serial_ttystate ser_base_get_tty_state (struct serial *scb)
    [all...]
ser-tcp.h 0 /* Serial interface for raw TCP connections on Un*x like systems.
23 struct serial;
25 extern void net_open (struct serial *scb, const char *name);
26 extern void net_close (struct serial *scb);
27 extern int net_read_prim (struct serial *scb, size_t count);
28 extern int net_write_prim (struct serial *scb, const void *buf, size_t count);
29 extern void ser_tcp_send_break (struct serial *scb);
serial.h 1 /* Remote serial support interface definitions for GDB, the GNU Debugger.
36 struct serial;
43 /* Parity for serial port */
47 /* Create a new serial for OPS. The new serial is not opened. */
49 /* Try to open NAME. Returns a new `struct serial *' on success, NULL
50 on failure. The new serial object has a reference count of 1.
56 extern struct serial *serial_open (const char *name);
58 /* Open a new serial stream using OPS. */
60 extern struct serial *serial_open_ops (const struct serial_ops *ops)
232 struct serial struct
    [all...]
ser-unix.h 0 /* Serial interface for UN*X file-descriptor based connection.
23 extern int ser_unix_read_prim (struct serial *scb, size_t count);
24 extern int ser_unix_write_prim (struct serial *scb, const void *buf,
serial.c 1 /* Generic serial interface routines
21 #include "serial.h"
25 /* Is serial being debugged? */
29 /* Serial I/O handlers. */
35 static struct serial *scb_base;
160 /* Return the open serial device for FD, if found, or NULL if FD is
163 struct serial *
166 struct serial *scb;
175 /* Create a new serial for OPS. */
177 static gdb::unique_xmalloc_ptr<struct serial>
    [all...]
ser-unix.c 0 /* Serial interface for local (hardwired) serial ports on Un*x like systems
20 #include "serial.h"
52 static void hardwire_raw (struct serial *scb);
54 static void hardwire_setbaudrate (struct serial *scb, int rate);
55 static int hardwire_setparity (struct serial *scb, int parity);
56 static void hardwire_close (struct serial *scb);
57 static int get_tty_state (struct serial *scb,
59 static int set_tty_state (struct serial *scb,
61 static serial_ttystate hardwire_get_tty_state (struct serial *scb)
    [all...]
ser-base.c 1 /* Generic serial interface functions.
21 #include "serial.h"
35 /* Event handling for ASYNC serial code.
37 At any time the SERIAL device either: has an empty FIFO and is
66 reschedule (struct serial *scb)
86 add_file_handler (scb->fd, fd_event, scb, "serial");
98 add_file_handler (scb->fd, fd_event, scb, "serial");
129 run_async_handler_and_reschedule (struct serial *scb)
157 struct serial *scb = (struct serial *) context
    [all...]
ser-event.c 0 /* Serial interface for a selectable event.
20 #include "serial.h"
34 descriptors back to Windows handles by calling serial->wait_handle,
44 serial->fd. */
49 /* Open a new serial event. */
52 serial_event_open (struct serial *scb, const char *name)
64 internal_error ("creating serial event pipe failed.");
91 serial_event_close (struct serial *scb)
114 serial_event_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
124 register this serial type with serial_add_interface, because thi
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
ser-base.h 1 /* Generic serial interface functions.
23 #include "serial.h"
25 struct serial;
28 extern int generic_readchar (struct serial *scb, int timeout,
29 int (*do_readchar) (struct serial *scb,
31 extern int ser_base_flush_output (struct serial *scb);
32 extern int ser_base_flush_input (struct serial *scb);
33 extern void ser_base_send_break (struct serial *scb);
34 extern void ser_base_raw (struct serial *scb);
35 extern serial_ttystate ser_base_get_tty_state (struct serial *scb)
    [all...]
ser-tcp.h 0 /* Serial interface for raw TCP connections on Un*x like systems.
23 struct serial;
25 extern void net_open (struct serial *scb, const char *name);
26 extern void net_close (struct serial *scb);
27 extern int net_read_prim (struct serial *scb, size_t count);
28 extern int net_write_prim (struct serial *scb, const void *buf, size_t count);
29 extern void ser_tcp_send_break (struct serial *scb);
serial.h 1 /* Remote serial support interface definitions for GDB, the GNU Debugger.
36 struct serial;
43 /* Parity for serial port */
47 /* Create a new serial for OPS. The new serial is not opened. */
49 /* Try to open NAME. Returns a new `struct serial *' on success, NULL
50 on failure. The new serial object has a reference count of 1.
56 extern struct serial *serial_open (const char *name);
58 /* Open a new serial stream using OPS. */
60 extern struct serial *serial_open_ops (const struct serial_ops *ops)
232 struct serial struct
    [all...]
ser-unix.h 0 /* Serial interface for UN*X file-descriptor based connection.
23 extern int ser_unix_read_prim (struct serial *scb, size_t count);
24 extern int ser_unix_write_prim (struct serial *scb, const void *buf,
serial.c 1 /* Generic serial interface routines
21 #include "serial.h"
25 /* Is serial being debugged? */
29 /* Serial I/O handlers. */
35 static struct serial *scb_base;
160 /* Return the open serial device for FD, if found, or NULL if FD is
163 struct serial *
166 struct serial *scb;
175 /* Create a new serial for OPS. */
177 static gdb::unique_xmalloc_ptr<struct serial>
    [all...]
ser-unix.c 0 /* Serial interface for local (hardwired) serial ports on Un*x like systems
20 #include "serial.h"
52 static void hardwire_raw (struct serial *scb);
54 static void hardwire_setbaudrate (struct serial *scb, int rate);
55 static int hardwire_setparity (struct serial *scb, int parity);
56 static void hardwire_close (struct serial *scb);
57 static int get_tty_state (struct serial *scb,
59 static int set_tty_state (struct serial *scb,
61 static serial_ttystate hardwire_get_tty_state (struct serial *scb)
    [all...]
ser-base.c 1 /* Generic serial interface functions.
21 #include "serial.h"
35 /* Event handling for ASYNC serial code.
37 At any time the SERIAL device either: has an empty FIFO and is
66 reschedule (struct serial *scb)
86 add_file_handler (scb->fd, fd_event, scb, "serial");
98 add_file_handler (scb->fd, fd_event, scb, "serial");
129 run_async_handler_and_reschedule (struct serial *scb)
157 struct serial *scb = (struct serial *) context
    [all...]
ser-event.c 0 /* Serial interface for a selectable event.
20 #include "serial.h"
33 descriptors back to Windows handles by calling serial->wait_handle,
43 serial->fd. */
48 /* Open a new serial event. */
51 serial_event_open (struct serial *scb, const char *name)
63 internal_error ("creating serial event pipe failed.");
90 serial_event_close (struct serial *scb)
113 serial_event_wait_handle (struct serial *scb, HANDLE *read, HANDLE *except)
123 register this serial type with serial_add_interface, because thi
    [all...]
  /src/external/mpl/bind/dist/tests/dns/
update_test.c 29 #include <isc/serial.h>
78 uint32_t serial; local
82 serial = dns_update_soaserial(old, dns_updatemethod_increment, NULL);
83 assert_true(isc_serial_lt(old, serial));
84 assert_int_not_equal(serial, 0);
85 assert_int_equal(serial, 51);
91 uint32_t serial; local
95 serial = dns_update_soaserial(old, dns_updatemethod_increment, NULL);
96 assert_true(isc_serial_lt(old, serial));
97 assert_int_not_equal(serial, 0)
104 uint32_t serial; local
120 uint32_t serial; local
136 uint32_t serial; local
152 uint32_t serial; local
169 uint32_t serial; local
186 uint32_t serial; local
202 uint32_t serial; local
217 uint32_t old, serial; local
236 uint32_t serial; local
271 uint32_t serial; local
    [all...]
  /src/external/gpl3/gdb/dist/sim/mn10300/
dv-mn103ser.c 32 mn103ser - mn103002 serial devices 0, 1 and 2.
37 Implements the mn103002 serial interfaces as described in the
43 reg = <serial-addr> <serial-size>
51 /* The serial devices' registers' address block */
113 { "serial-0-receive", SERIAL0_RECEIVE, 0, output_port, },
114 { "serial-1-receive", SERIAL1_RECEIVE, 0, output_port, },
115 { "serial-2-receive", SERIAL2_RECEIVE, 0, output_port, },
116 { "serial-0-transmit", SERIAL0_SEND, 0, output_port, },
117 { "serial-1-transmit", SERIAL1_SEND, 0, output_port, }
164 struct mn103ser *serial; local
240 struct mn103ser *serial = hw_data(me); local
470 struct mn103ser *serial = hw_data (me); local
654 struct mn103ser *serial = hw_data (me); local
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/mn10300/
dv-mn103ser.c 32 mn103ser - mn103002 serial devices 0, 1 and 2.
37 Implements the mn103002 serial interfaces as described in the
43 reg = <serial-addr> <serial-size>
51 /* The serial devices' registers' address block */
113 { "serial-0-receive", SERIAL0_RECEIVE, 0, output_port, },
114 { "serial-1-receive", SERIAL1_RECEIVE, 0, output_port, },
115 { "serial-2-receive", SERIAL2_RECEIVE, 0, output_port, },
116 { "serial-0-transmit", SERIAL0_SEND, 0, output_port, },
117 { "serial-1-transmit", SERIAL1_SEND, 0, output_port, }
164 struct mn103ser *serial; local
240 struct mn103ser *serial = hw_data(me); local
470 struct mn103ser *serial = hw_data (me); local
654 struct mn103ser *serial = hw_data (me); local
    [all...]
  /src/external/mpl/bind/dist/lib/dns/rdata/generic/
csync_62.h 25 uint32_t serial; member in struct:dns_rdata_csync
zonemd_63.h 28 uint32_t serial; member in struct:dns_rdata_zonemd
  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
csync_62.h 26 uint32_t serial; member in struct:dns_rdata_csync
zonemd_63.h 29 uint32_t serial; member in struct:dns_rdata_zonemd
  /src/external/bsd/ntp/dist/kernel/sys/
ppsclock.h 45 u_int serial; member in struct:ppsclockev
  /src/external/bsd/unbound/dist/dnscrypt/
cert.h 26 uint8_t serial[4]; member in struct:SignedCert

Completed in 69 milliseconds

1 2 3 4 5 6 7 8 91011>>