HomeSort by relevance Sort by last modified time
    Searched defs:Serial (Results 1 - 4 of 4) sorted by null

  /external/smack/src/org/xbill/DNS/
Serial.java 6 * Helper functions for doing serial arithmetic. These should be used when
7 * setting/checking SOA serial numbers. SOA serial number arithmetic is
13 public final class Serial {
18 Serial() {
22 * Compares two numbers using serial arithmetic. The numbers are assumed
45 * Increments a serial number. The number is assumed to be a 32 bit unsigned
48 * @param serial The serial number
49 * @return The incremented serial numbe
    [all...]
  /external/arduino/hardware/arduino/cores/arduino/
HardwareSerial.cpp 2 HardwareSerial.cpp - Hardware serial library for Wiring
36 // Define constants and variables for buffering incoming serial data. We're
132 #warning Serial(0) is on USB interface
283 HardwareSerial Serial(&rx_buffer, &UBRRH, &UBRRL, &UCSRA, &UCSRB, &UDR, RXEN, TXEN, RXCIE, UDRE, U2X);
285 HardwareSerial Serial(&rx_buffer, &UBRR0H, &UBRR0L, &UCSR0A, &UCSR0B, &UDR0, RXEN0, TXEN0, RXCIE0, UDRE0, U2X0);
287 #warning no serial port defined (port 0)
289 #error no serial port defined (port 0)
  /device/generic/goldfish/qemud/
qemud.c 20 * - qemud communicates with the emulator program through a single serial
28 * emulator <==serial==> qemud <---> /dev/socket/qemud <-+--> client1
299 #define MAX_EVENTS (MAX_CHANNELS+1) /* each channel + the serial fd */
1029 /** SERIAL CONNECTION STATE
1032 ** used on the serial port connection.
1051 /* The Serial object receives data from the serial port,
1056 * the serial port.
1058 typedef struct Serial {
1059 FDHandler* fdhandler; /* used to monitor serial port fd *
1238 Serial serial[1]; member in struct:Multiplexer
    [all...]
  /external/qemu/android/
hw-qemud.c 37 /* max serial MTU. Don't change this without modifying
81 * We use one charpipe to connect the emulated serial port to the 'QemudSerial'
82 * object. This object is used to receive data from the serial port, and
87 * through the serial port (see qemud_serial_send())
182 /** HANDLING SERIAL PORT CONNECTION
185 /* The QemudSerial object receives data from the serial port charpipe.
193 * messages back through the serial port.
226 CharDriverState* cs; /* serial charpipe endpoint */
228 /* managing incoming packets from the serial port */
256 /* state of incoming packets from the serial port *
671 QemudSerial* serial; member in struct:QemudClient::__anon13043::__anon13044
1289 QemudSerial serial[1]; member in struct:QemudMultiplexer
    [all...]

Completed in 175 milliseconds