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

  /external/openssh/
ttymodes.c 71 * Converts POSIX speed_t to a baud rate. The values of the
161 * Converts a numeric baud rate to a POSIX speed_t.
164 baud_to_speed(int baud)
166 switch (baud) {
284 int baud; local
312 /* Store input and output baud rates. */
313 baud = speed_to_baud(cfgetospeed(&tio));
315 buffer_put_int(&buf, baud);
316 baud = speed_to_baud(cfgetispeed(&tio));
318 buffer_put_int(&buf, baud);
352 int opcode, baud; local
    [all...]
  /external/bluetooth/bluez/tools/
hciattach_ti.c 110 uint32_t baud; member in struct:bts_action_serial
216 fprintf(stderr, "texas: changing baud rate to %u, flow control to %u\n",
217 serial_action->baud, serial_action->flow_control );
232 if (set_speed(fd, ti, serial_action->baud) < 0) {
233 perror("Can't set baud rate");
hciattach_ath3k.c 922 int baud; local
930 /* set controller baud rate to user specified value */
937 baud = speed/100;
938 ptr[0] = (char)baud;
939 ptr[1] = (char)(baud >> 8);
942 perror("Failed to write change baud rate command");
970 /* set both controller and host baud rate to maximum possible value */
977 perror("Can't set required baud rate");

Completed in 3040 milliseconds