Searched refs:serial (Results 1 - 25 of 44) sorted by relevance

12

/haiku-fatelf/src/bin/gdb/gdb/
H A Dser-unix.h25 struct serial;
30 extern int ser_unix_nop_flush_output (struct serial *scb);
31 extern int ser_unix_flush_input (struct serial *scb);
32 extern int ser_unix_nop_send_break (struct serial *scb);
33 extern void ser_unix_nop_raw (struct serial *scb);
34 extern serial_ttystate ser_unix_nop_get_tty_state (struct serial *scb);
35 extern int ser_unix_nop_set_tty_state (struct serial *scb,
37 extern void ser_unix_nop_print_tty_state (struct serial *scb,
40 extern int ser_unix_nop_noflush_set_tty_state (struct serial *scb,
43 extern int ser_unix_nop_setbaudrate (struct serial *sc
[all...]
H A Dserial.h1 /* Remote serial support interface definitions for GDB, the GNU Debugger.
34 struct serial;
36 /* Try to open NAME. Returns a new `struct serial *' on success, NULL
42 extern struct serial *serial_open (const char *name);
44 /* Open a new serial stream using a file handle. */
46 extern struct serial *serial_fdopen (const int fd);
50 extern void serial_close (struct serial *scb);
54 extern void serial_un_fdopen (struct serial *scb);
56 /* Read one char from the serial device with TIMEOUT seconds to wait
73 extern int serial_readchar (struct serial *sc
182 struct serial struct
[all...]
H A Dsrec.h21 struct serial;
23 void load_srec (struct serial *desc, const char *file, bfd_vma load_offset,
H A Dser-e7kpc.c1 /* Remote serial interface using Renesas E7000 PC ISA card in a PC
24 #include "serial.h"
36 static int e7000pc_open (struct serial *scb, const char *name);
37 static void e7000pc_raw (struct serial *scb);
38 static int e7000pc_readchar (struct serial *scb, int timeout);
39 static int e7000pc_setbaudrate (struct serial *scb, int rate);
40 static int e7000pc_write (struct serial *scb, const char *str, int len);
41 static void e7000pc_close (struct serial *scb);
42 static serial_ttystate e7000pc_get_tty_state (struct serial *scb);
43 static int e7000pc_set_tty_state (struct serial *sc
[all...]
H A Dserial.c1 /* Generic serial interface routines
25 #include "serial.h"
31 /* Is serial being debugged? */
35 /* Linked list of serial I/O handlers */
39 /* This is the last serial stream opened. Used by connect command. */
41 static struct serial *last_serial_opened = NULL;
45 static struct serial *scb_base;
173 struct serial *
176 struct serial *scb;
204 scb = XMALLOC (struct serial);
[all...]
H A Dser-unix.c1 /* Serial interface for local (hardwired) serial ports on Un*x like systems
24 #include "serial.h"
68 static int hardwire_open (struct serial *scb, const char *name);
69 static void hardwire_raw (struct serial *scb);
70 static int wait_for (struct serial *scb, int timeout);
71 static int hardwire_readchar (struct serial *scb, int timeout);
72 static int do_hardwire_readchar (struct serial *scb, int timeout);
73 static int generic_readchar (struct serial *scb, int timeout,
74 int (*do_readchar) (struct serial *scb,
77 static int hardwire_setbaudrate (struct serial *sc
[all...]
H A Dser-pipe.c24 #include "serial.h"
37 static int pipe_open (struct serial *scb, const char *name);
38 static void pipe_close (struct serial *scb);
50 pipe_open (struct serial *scb, const char *name)
120 pipe_close (struct serial *scb)
H A Dser-go32.c1 /* Remote serial interface for local (hardwired) serial ports for GO32.
28 #include "serial.h"
231 static int dos_open (struct serial *scb, const char *name);
232 static void dos_raw (struct serial *scb);
233 static int dos_readchar (struct serial *scb, int timeout);
234 static int dos_setbaudrate (struct serial *scb, int rate);
235 static int dos_write (struct serial *scb, const char *str, int len);
236 static void dos_close (struct serial *scb);
237 static serial_ttystate dos_get_tty_state (struct serial *sc
[all...]
H A Dser-tcp.c23 #include "serial.h"
45 static int net_open (struct serial *scb, const char *name);
46 static void net_close (struct serial *scb);
57 net_open (struct serial *scb, const char *name)
199 net_close (struct serial *scb)
H A Dmonitor.h28 struct serial;
104 void (*load_routine) (struct serial *desc, char *file,
H A Dremote-utils.h28 struct serial;
40 struct serial *desc;
102 Thus the last thing that a procedure does with the serial line
H A Dsh3-rom.c26 #include "serial.h"
34 static struct serial *parallel;
126 sh3_load (struct serial *desc, char *file, int hashmark)
373 "Specify the serial device it is connected to.\n"
392 "Specify the serial device it is connected to.\n"
H A Ddsrec.c23 #include "serial.h"
38 `struct serial *' to send the data to. FILE is the name of the
50 load_srec (struct serial *desc, const char *file, bfd_vma load_offset,
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_barrier_wait/
H A D2-1.c39 static int serial; variable
57 serial++;
84 serial = 0;
108 if(serial != 1 || (serial + normal_rt) != THREAD_NUM )
/haiku-fatelf/src/add-ons/input_server/devices/easypen/
H A DEasyPenInputDevice.cpp69 BSerialPort *serial; member in struct:tablet_device
107 BSerialPort *serial = new BSerialPort(); local
108 int count = serial->CountDevices();
113 serial->GetDeviceName(i, devName);
114 serial->SetDataRate(B_9600_BPS);
115 serial->SetDataBits(B_DATA_BITS_8);
116 serial->SetStopBits(B_STOP_BITS_1);
117 serial->SetParityMode(B_ODD_PARITY);
118 serial->SetFlowControl(B_HARDWARE_CONTROL+B_SOFTWARE_CONTROL);
119 serial
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_barrierattr_getpshared/
H A D2-1.c69 int serial = 0; local
185 serial++;
207 if((WEXITSTATUS(status) + serial) != LOOP_NUM)
210 printf("serial = %d\n", serial);
235 exit(serial);
/haiku-fatelf/src/bin/network/tcpdump/
H A Drx.h64 u_int32_t serial; member in struct:rx_header
102 u_int32_t serial; /* # of packet that prompted the ack */ member in struct:rx_ackPacket
H A Dprint-lwres.c59 lwres_uint32_t serial; member in struct:lwres_lwpacket
333 printf("serial:0x%x", EXTRACT_32BITS(&np->serial));
/haiku-fatelf/headers/private/graphics/common/
H A Dedid.h17 uint32 serial; member in struct:__anon763
H A Dedid_raw.h51 uint32 serial; member in struct:_PACKED
/haiku-fatelf/src/servers/app/
H A DScreenConfigurations.cpp176 screenSettings.AddString("serial",
222 const char* serial; local
227 && stored.FindString("serial", &serial) == B_OK
234 strlcpy(configuration->info.serial_number, serial,
/haiku-fatelf/src/libs/ncurses/ncurses/
H A DMakefile169 serial = $(srcdir)/tty macro
212 expanded.c : $(serial)/MKexpanded.sh
213 sh $(serial)/MKexpanded.sh "$(CPP)" $(CPPFLAGS) > $@
269 hardscroll$x : $(serial)/hardscroll.c $(TEST_DEPS)
270 $(CC) -o $@ $(CFLAGS_DEFAULT) -DSCROLLDEBUG $(serial)/hardscroll.c $(TEST_LDFLAGS)
272 hashmap$x : $(serial)/hashmap.c $(TEST_DEPS)
273 $(CC) -o $@ $(CFLAGS_DEFAULT) -DHASHDEBUG $(serial)/hashmap.c $(TEST_LDFLAGS)
275 lib_mvcur$x : $(serial)/lib_mvcur.c $(TEST_DEPS) \
277 $(CC) -o $@ $(CFLAGS_DEFAULT) -DNCURSES_TEST -I$(serial)/../../progs $(serial)/lib_mvcu
[all...]
/haiku-fatelf/src/add-ons/kernel/busses/scsi/usb/datafab/
H A Ddatafab.c81 uint16 serial[10]; member in struct:__anon1415
236 F 2 1 = Media serial number supported
280 V 2 1 = Media serial number is valid
371 176-205 O V Current media serial number
603 usti->udi->trace_bytes("ADI::serial:", (char*)adi.serial, sizeof(adi.serial));
/haiku-fatelf/src/add-ons/accelerants/common/
H A Ddump_edid.c30 dprintf("Serial #: %d\n", (int)edid->vendor.serial);
H A Ddecode_edid.c36 vendor->serial = B_LENDIAN_TO_HOST_INT32(raw->serial);

Completed in 121 milliseconds

12