HomeSort by relevance Sort by last modified time
    Searched defs:baud (Results 1 - 10 of 10) 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...]
  /hardware/broadcom/libbt/src/
userial_vendor.c 81 ** Description helper function converts USERIAL baud rates into TCIO
82 ** conforming baud rates
87 uint8_t userial_to_tcio_baud(uint8_t cfg_baud, uint32_t *baud)
90 *baud = B115200;
92 *baud = B4000000;
94 *baud = B3000000;
96 *baud = B2000000;
98 *baud = B1000000;
100 *baud = B921600;
102 *baud = B460800
194 uint32_t baud; local
    [all...]
hardware.c 133 uint8_t f_set_baud_2; /* Baud rate switch state */
348 ** Description helper function converts line speed number into USERIAL baud
351 ** Returns unit8_t (USERIAL baud symbol)
356 uint8_t baud; local
359 baud = USERIAL_BAUD_4M;
361 baud = USERIAL_BAUD_3M;
363 baud = USERIAL_BAUD_2M;
365 baud = USERIAL_BAUD_1M;
367 baud = USERIAL_BAUD_921600;
369 baud = USERIAL_BAUD_460800
    [all...]
  /hardware/broadcom/libbt/include/
userial_vendor.h 38 /**** baud rates ****/
99 uint8_t baud; /* Baud rate */ member in struct:__anon23424
156 ** Description Set new baud rate
  /hardware/qcom/bt/msm8992/libbt-vendor/src/
hci_uart.c 66 ** Description helper function converts USERIAL baud rates into TCIO
67 ** conforming baud rates
72 uint8_t userial_to_tcio_baud(uint8_t cfg_baud, uint32_t *baud)
75 *baud = B115200;
77 *baud = B4000000;
79 *baud = B3000000;
81 *baud = B2000000;
83 *baud = B1000000;
85 *baud = B921600;
87 *baud = B460800
229 uint32_t baud; local
    [all...]
hw_ar3k.c 385 int baud; local
393 /* set controller baud rate to user specified value */
400 baud = speed/100;
401 ptr[0] = (char)baud;
402 ptr[1] = (char)(baud >> 8);
405 ALOGI("Failed to write change baud rate command");
1068 /* set both controller and host baud rate to maximum possible value */
1076 ALOGI("Can't set required baud rate");
1310 ALOGI("Can't set initial baud rate");
1331 perror("Can't set baud rate")
    [all...]
  /hardware/qcom/bt/msm8992/libbt-vendor/include/
hci_uart.h 26 /**** baud rates ****/
104 uint8_t baud; /* Baud rate */ member in struct:__anon25083
207 ** Description Set new baud rate
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
userial_linux.c 176 UINT16 baud; member in struct:__anon12652
526 ** Description This function convert USERIAL baud to line speed.
533 UDRV_API extern UINT32 USERIAL_GetLineSpeed(UINT8 baud)
535 return (baud <= USERIAL_BAUD_4M) ?
536 userial_baud_tbl[baud-USERIAL_BAUD_300] : 0;
543 ** Description This function convert line speed to USERIAL baud.
863 ** Description helper function converts USERIAL baud rates into TCIO conforming baud rates
868 ** FALSE - unsupported baud rate, default of 115200 is used
871 BOOLEAN userial_to_tcio_baud(UINT8 cfg_baud, UINT32 * baud)
946 UINT32 baud = 0; local
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/include/
userial.h 55 /**** baud rates ****/
208 UINT8 baud; /* Baud rate */ member in struct:__anon12663
220 UINT8 baud; member in union:__anon12664
264 ** Description This function convert USERIAL baud to line speed.
271 UDRV_API extern UINT32 USERIAL_GetLineSpeed(UINT8 baud);
276 ** Description This function convert line speed to USERIAL baud.
  /external/libnfc-nci/src/udrv/include/
usb.h 41 /**** baud rates ****/
181 UINT8 baud; /* Baud rate */ member in struct:__anon13179
193 UINT8 baud; member in union:__anon13180

Completed in 482 milliseconds