Searched refs:Serial (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/tools/telemetry/third_party/pyserial/serial/urlhandler/
H A Dprotocol_rfc2217.py3 # Python Serial Port Extension for Win32, Linux, BSD, Jython
11 from serial.rfc2217 import Serial namespace
H A Dprotocol_hwgrep.py3 # Python Serial Port Extension for Win32, Linux, BSD, Jython
17 class Serial(serial.Serial): class in inherits:serial.Serial
18 """Just inherit the native Serial port implementation and patch the open function."""
23 serial.Serial.setPort(self, self.fromURL(value))
25 serial.Serial.setPort(self, value)
37 port = property(serial.Serial.getPort, setPort, doc="Port setting")
41 #~ s = Serial('hwgrep://ttyS0')
42 s = Serial(None)
H A Dprotocol_loop.py3 # Python Serial Port Extension for Win32, Linux, BSD, Jython
33 """Serial port implementation that simulates a loop back connection in plain software."""
239 # assemble Serial class with the platform specific implementation and the base
246 class Serial(LoopbackSerial, FileLike): class in inherits:LoopbackSerial, FileLike
250 class Serial(LoopbackSerial, io.RawIOBase): class in inherits:LoopbackSerial, io.RawIOBase
257 s = Serial('loop://')
H A Dprotocol_socket.py3 # Python Serial Port Extension for Win32, Linux, BSD, Jython
36 """Serial port implementation for plain sockets."""
248 # assemble Serial class with the platform specific implementation and the base
255 class Serial(SocketSerial, FileLike): class in inherits:SocketSerial, FileLike
259 class Serial(SocketSerial, io.RawIOBase): class in inherits:SocketSerial, io.RawIOBase
266 s = Serial('socket://localhost:7000')
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A D__init__.py34 Get an instance of the Serial class, depending on port/url. The port is not
47 # check remove extra parameter to not confuse the Serial class
51 klass = Serial # 'native' implementation
68 klass = sys.modules[module_name].Serial
73 klass = Serial # 'native' implementation
H A Dserialcli.py2 # Python Serial Port Extension for Win32, Linux, BSD, Jython and .NET/Mono
27 """Serial port implementation for .NET/Mono."""
241 # assemble Serial class with the platform specific implementation and the base
248 class Serial(IronSerial, FileLike): class in inherits:IronSerial, FileLike
252 class Serial(IronSerial, io.RawIOBase): class in inherits:IronSerial, io.RawIOBase
260 s = Serial(0)
263 s = Serial()
H A Dsermsdos.py66 class Serial(serialutil.FileLike): class in inherits:serialutil.FileLike
194 return string.join(( "<Serial>: ", self.portstr
199 s = Serial(0)
H A Dserialjava.py3 # Python Serial Port Extension for Win32, Linux, BSD, Jython
53 """Serial port class, implemented with Java Communications API and
228 # assemble Serial class with the platform specific implementation and the base
235 class Serial(JavaSerial, FileLike): class in inherits:JavaSerial, FileLike
239 class Serial(JavaSerial, io.RawIOBase): class in inherits:JavaSerial, io.RawIOBase
244 s = Serial(0,
H A Dserialwin32.py2 # Python Serial Port Extension for Win32, Linux, BSD, Jython
23 """Serial port implementation for Win32 based on ctypes."""
432 # assemble Serial class with the platform specific implementation and the base
439 class Serial(Win32Serial, FileLike): class in inherits:Win32Serial, FileLike
443 class Serial(Win32Serial, io.RawIOBase): class in inherits:Win32Serial, io.RawIOBase
449 s = Serial(0)
452 s = Serial()
H A Dserialposix.py3 # Python Serial Port Extension for Win32, Linux, BSD, Jython
275 """Serial port class POSIX implementation. Serial port configuration is
641 # assemble Serial class with the platform specifc implementation and the base
648 class Serial(PosixSerial, FileLike): class in inherits:PosixSerial, FileLike
652 class Serial(PosixSerial, io.RawIOBase): class in inherits:PosixSerial, io.RawIOBase
655 class PosixPollSerial(Serial):
686 s = Serial(0,
H A Drfc2217.py3 # Python Serial Port Extension for Win32, Linux, BSD, Jython
363 """Serial port implementation for RFC 2217 remote serial ports."""
884 # assemble Serial class with the platform specific implementation and the base
891 class Serial(RFC2217Serial, FileLike): class in class:RFC2217Serial
895 class Serial(RFC2217Serial, io.RawIOBase): class in inherits:RFC2217Serial, io.RawIOBase
1311 s = Serial('rfc2217://localhost:7000', 115200)
/external/smack/src/org/xbill/DNS/
H A DSerial.java13 public final class Serial { class
18 Serial() { method in class:Serial
H A DZoneTransferIn.java418 Serial.compare(end_serial, ixfr_serial) <= 0)
/external/arduino/hardware/arduino/cores/arduino/
H A DHardwareSerial.h62 extern HardwareSerial Serial;
H A DHardwareSerial.cpp132 #warning Serial(0) is on USB interface
283 HardwareSerial Serial(&rx_buffer, &UBRRH, &UBRRL, &UCSRA, &UCSRB, &UDR, RXEN, TXEN, RXCIE, UDRE, U2X); variable
285 HardwareSerial Serial(&rx_buffer, &UBRR0H, &UBRR0L, &UCSR0A, &UCSR0B, &UDR0, RXEN0, TXEN0, RXCIE0, UDRE0, U2X0); variable
/external/qemu/android/
H A Dhw-qemud.c669 /* Serial-specific fields. */
673 } Serial; member in union:QemudClient::__anon29138
867 } else if (c->ProtocolSelector.Serial.channel > 0) {
871 c->ProtocolSelector.Serial.channel);
872 qemud_serial_send(c->ProtocolSelector.Serial.serial, 0, 0, (uint8_t*)tmp, p-tmp);
918 c->ProtocolSelector.Serial.serial = serial;
919 c->ProtocolSelector.Serial.channel = channel_id;
958 qemu_put_be32(f, c->ProtocolSelector.Serial.channel);
1312 if (!_is_pipe_client(c) && c->ProtocolSelector.Serial.channel == channel) {
1362 if (!_is_pipe_client(c) && c->ProtocolSelector.Serial
[all...]
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dmonsoon.py57 self.ser = serial.Serial(device, timeout=1)
75 self.ser = serial.Serial(port, timeout=1)
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
H A Dminiterm.py174 # Serial class directly then.
175 self.serial = serial.Serial(port, baudrate, parity=parity, rtscts=rtscts, xonxoff=xonxoff, timeout=1)
376 # Serial class directly then.
377 new_serial = serial.Serial()
/external/chromium_org/third_party/usb_ids/
H A Dusb.ids83 204b LUFA USB to Serial Adapter Project
95 2068 LUFA Virtual Serial/Mass Storage Demo
668 0232 Serial Converter
670 6001 FT232 USB-Serial (UART) IC
672 6007 Serial Converter
673 6008 Serial Converter
674 6009 Serial Converter
683 8372 FT8U100AX Serial Port
729 d9a9 Actisense USG-1 NMEA Serial Gateway
742 ed71 HAMEG HO870 Serial Por
[all...]
/external/chromium_org/net/quic/crypto/
H A Dcommon_cert_set_1_50.inc13 Serial Number: 747377 (0xb6771)
141 Serial Number: 1227750 (0x12bbe6)
303 Serial Number:
457 Serial Number: 429597 (0x68e1d)
620 Serial Number: 880226 (0xd6e62)
783 Serial Number: 120020005 (0x7275c25)
943 Serial Number: 67109891 (0x4000403)
1106 Serial Number: 145105 (0x236d1)
1284 Serial Number: 145104 (0x236d0)
1462 Serial Numbe
[all...]
H A Dcommon_cert_set_51_100.inc13 Serial Number:
215 Serial Number:
423 Serial Number:
625 Serial Number:
835 Serial Number: 769 (0x301)
1045 Serial Number:
1257 Serial Number:
1469 Serial Number:
1681 Serial Number:
1893 Serial Numbe
[all...]
/external/qemu-pc-bios/bochs/bios/
H A Drombios.c39 // $e739 ; INT 14h Serial Communications Service Entry Point
10155 mov [bx+0x400], dx ; Serial I/O address
10157 mov [bx+0x47c], cl ; Serial timeout
10574 ;; Serial setup
10579 mov dx, #0x03f8 ; Serial I/O address, port 1
10581 mov dx, #0x02f8 ; Serial I/O address, port 2
10583 mov dx, #0x03e8 ; Serial I/O address, port 3
10585 mov dx, #0x02e8 ; Serial I/O address, port 4
10772 .org 0xe739 ; INT 14h Serial Communications Service Entry Point

Completed in 461 milliseconds