Home
last modified time | relevance | path

Searched refs:serial (Results 1 – 25 of 305) sorted by relevance

12345678910>>...13

/mirbsd/src/gnu/usr.bin/binutils/gdb/
Dserial.h34 struct serial;
42 extern struct serial *serial_open (const char *name);
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);
73 extern int serial_readchar (struct serial *scb, int timeout);
78 extern int serial_write (struct serial *scb, const char *str, int len);
82 extern void serial_printf (struct serial *desc,
87 extern int serial_drain_output (struct serial *);
92 extern int serial_flush_output (struct serial *);
[all …]
Dser-base.h25 struct serial;
28 extern int generic_readchar (struct serial *scb, int timeout,
29 int (*do_readchar) (struct serial *scb,
31 extern void reschedule (struct serial *scb);
32 extern int ser_base_flush_output (struct serial *scb);
33 extern int ser_base_flush_input (struct serial *scb);
34 extern int ser_base_send_break (struct serial *scb);
35 extern void ser_base_raw (struct serial *scb);
36 extern serial_ttystate ser_base_get_tty_state (struct serial *scb);
37 extern int ser_base_set_tty_state (struct serial *scb,
[all …]
Dserial.c41 static struct serial *last_serial_opened = NULL;
45 static struct serial *scb_base;
171 struct serial *
174 struct serial *scb; in serial_open()
202 scb = XMALLOC (struct serial); in serial_open()
236 struct serial *
239 struct serial *scb; in serial_fdopen()
254 scb = XMALLOC (struct serial); in serial_fdopen()
278 do_serial_close (struct serial *scb, int really_close) in do_serial_close()
280 struct serial *tmp_scb; in do_serial_close()
[all …]
Dser-base.c68 reschedule (struct serial *scb) in reschedule()
135 struct serial *scb = context; in fd_event()
173 struct serial *scb = context; in push_event()
184 ser_base_wait_for (struct serial *scb, int timeout) in ser_base_wait_for()
229 do_ser_base_readchar (struct serial *scb, int timeout) in do_ser_base_readchar()
312 generic_readchar (struct serial *scb, int timeout, in generic_readchar()
313 int (do_readchar) (struct serial *scb, int timeout)) in generic_readchar()
350 ser_base_readchar (struct serial *scb, int timeout) in ser_base_readchar()
356 ser_base_write (struct serial *scb, const char *str, int len) in ser_base_write()
373 ser_base_flush_output (struct serial *scb) in ser_base_flush_output()
[all …]
Dser-unix.c68 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);
74 static int hardwire_setbaudrate (struct serial *scb, int rate);
75 static void hardwire_close (struct serial *scb);
76 static int get_tty_state (struct serial *scb,
78 static int set_tty_state (struct serial *scb,
80 static serial_ttystate hardwire_get_tty_state (struct serial *scb);
[all …]
Dser-e7kpc.c36 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 *scb, serial_ttystate state);
294 e7000pc_open (struct serial *scb, const char *name) in e7000pc_open()
311 e7000pc_noop (struct serial *scb) in e7000pc_noop()
[all …]
Dser-go32.c231 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 *scb);
238 static int dos_set_tty_state (struct serial *scb, serial_ttystate state);
456 dos_open (struct serial *scb, const char *name) in dos_open()
561 dos_close (struct serial *scb) in dos_close()
[all …]
Dser-tcp.c59 static int net_open (struct serial *scb, const char *name);
60 static void net_close (struct serial *scb);
71 net_open (struct serial *scb, const char *name) in net_open()
234 net_close (struct serial *scb) in net_close()
244 net_read_prim (struct serial *scb, size_t count) in net_read_prim()
250 net_write_prim (struct serial *scb, const void *buf, size_t count) in net_write_prim()
Dser-pipe.c38 static int pipe_open (struct serial *scb, const char *name);
39 static void pipe_close (struct serial *scb);
51 pipe_open (struct serial *scb, const char *name) in pipe_open()
121 pipe_close (struct serial *scb) in pipe_close()
Dser-unix.h25 extern int ser_unix_read_prim (struct serial *scb, size_t count);
26 extern int ser_unix_write_prim (struct serial *scb, const void *buf,
Dsrec.h21 struct serial;
23 void load_srec (struct serial *desc, const char *file, bfd_vma load_offset,
/mirbsd/src/lib/libssl/src/crypto/x509v3/
Dv3_akey.c92 if(akeyid->serial) { in STACK_OF()
93 tmp = hex_to_string(akeyid->serial->data, in STACK_OF()
94 akeyid->serial->length); in STACK_OF()
119 ASN1_INTEGER *serial = NULL; in v2i_AUTHORITY_KEYID() local
158 serial = M_ASN1_INTEGER_dup(X509_get_serialNumber(cert)); in v2i_AUTHORITY_KEYID()
159 if(!isname || !serial) { in v2i_AUTHORITY_KEYID()
178 akeyid->serial = serial; in v2i_AUTHORITY_KEYID()
185 M_ASN1_INTEGER_free(serial); in v2i_AUTHORITY_KEYID()
/mirbsd/src/lib/libssl/src/apps/
Dca.c197 BIGNUM *serial, char *subj, int email_dn, char *startdate,
203 CA_DB *db, BIGNUM *serial, char *subj, int email_dn,
210 CA_DB *db, BIGNUM *serial,char *subj, int email_dn,
217 STACK_OF(CONF_VALUE) *policy, CA_DB *db, BIGNUM *serial,char *subj,
281 BIGNUM *serial=NULL; in MAIN() local
1105 if ((serial=load_serial(serialfile, create_ser, NULL)) == NULL) in MAIN()
1112 if (BN_is_zero(serial)) in MAIN()
1116 if ((f=BN_bn2hex(serial)) == NULL) goto err; in MAIN()
1137 serial,subj,email_dn,startdate,enddate,days,extensions, in MAIN()
1144 if (!BN_add_word(serial,1)) goto err; in MAIN()
[all …]
/mirbsd/src/distrib/tools/
Dboot.cfg.serial1 # $MirOS: src/distrib/tools/boot.cfg.serial,v 1.9 2014/01/04 20:24:59 tg Exp $
8 echo Booting MirBSD Installer with serial console at COM1:@SPEED@,8N1
18 echo Booting MirBSD Installer with serial console at COM1:@SPEED@,8N1
/mirbsd/src/distrib/baselive/i386/
Dloopback.05 macro serial stty com0 9600~set tty com0~boot
15 echo Enter 'serial' for standard COM1:9600,8N1 serial console.
Dboot.64 echo Booting the MirOS Installer (serial console at COM1:9600,8N1).
9 echo Booting the MirOS Installer (serial console at COM1:9600,8N1).
Dboot.84 echo Booting the MirOS Installer (serial console at COM1:115200,8N1).
9 echo Booting the MirOS Installer (serial console at COM1:115200,8N1).
Dboot.74 echo Booting the MirOS Installer (serial console at COM1:38400,8N1).
9 echo Booting the MirOS Installer (serial console at COM1:38400,8N1).
/mirbsd/src/distrib/common/
Dboot.cfg.i3865 macro serial stty com0 9600~set tty com0~boot
15 echo Enter 'serial' for standard COM1:9600,8N1 serial console.
/mirbsd/src/lib/libssl/src/crypto/ocsp/
Docsp_lib.c78 ASN1_INTEGER *serial; in OCSP_cert_to_id() local
86 serial = X509_get_serialNumber(subject); in OCSP_cert_to_id()
91 serial = NULL; in OCSP_cert_to_id()
94 return OCSP_cert_id_new(dgst, iname, ikey, serial); in OCSP_cert_to_id()
/mirbsd/src/lib/libssl/src/crypto/x509/
Dx509_set.c77 int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial) in X509_set_serialNumber() argument
83 if (in != serial) in X509_set_serialNumber()
85 in=M_ASN1_INTEGER_dup(serial); in X509_set_serialNumber()
Dx509cset.c154 int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial) in X509_REVOKED_set_serialNumber() argument
160 if (in != serial) in X509_REVOKED_set_serialNumber()
162 in=M_ASN1_INTEGER_dup(serial); in X509_REVOKED_set_serialNumber()
/mirbsd/src/sys/dev/usb/
Dfiles.usb25 # Modem and com serial port "bus"
43 # Modem and com serial port
170 # FTDI serial driver
175 # Prolific PL2303 serial driver
180 # MCT USB-232 serial driver
190 # Belkin & other serial driver
195 # Silicon Laboratories CP210x serial
/mirbsd/src/etc/
Dremote24 # for the 'standard' serial ports. Some architectures use
26 # for the first serial port in each style.
29 # don't provide a serial port by default or have more complex
65 # most commonly used for serial consoles.
/mirbsd/src/distrib/common/grml/
Dloopback.34 echo Booting the MirOS BSD rescue system (serial console)
10 echo Booting the MirOS BSD rescue system (serial console)

12345678910>>...13