/external/bluetooth/bluedroid/stack/rfcomm/ |
rfc_utils.c | 75 ** Description This function calculate FCS for the RFCOMM frame 84 UINT8 fcs = 0xFF; local 88 fcs = rfc_crctable[fcs ^ *p++]; 92 return (0xFF - fcs); 100 ** Description This function checks FCS for the RFCOMM frame 105 ** received_fcs - received FCS 110 UINT8 fcs = 0xFF; local 114 fcs = rfc_crctable[fcs ^ *p++] [all...] |
rfc_ts_frames.c | 572 UINT8 ead, eal, fcs; local 592 p_buf->len -= (3 + !ead + !eal + 1); /* Additional 1 for FCS */ 612 fcs = *(p_data + len); 623 || !rfc_check_fcs (RFCOMM_CTRL_FRAME_LEN, p_start, fcs)) 634 || !rfc_check_fcs (RFCOMM_CTRL_FRAME_LEN, p_start, fcs)) 645 || !rfc_check_fcs (RFCOMM_CTRL_FRAME_LEN, p_start, fcs)) 656 || !rfc_check_fcs (RFCOMM_CTRL_FRAME_LEN, p_start, fcs)) 670 else if (!rfc_check_fcs (2, p_start, fcs)) 672 RFCOMM_TRACE_ERROR ("Bad UIH - FCS");
|
/external/bluetooth/bluedroid/stack/mcap/ |
mca_main.c | 259 tMCA_FCS_OPT fcs = MCA_FCS_NONE; local 269 fcs = p_dcb->p_chnl_cfg->fcs; 276 if (fcs & MCA_FCS_PRESNT_MASK) 279 p_cfg->fcs = (fcs & MCA_FCS_USE_MASK);
|
/bionic/libc/include/sys/ |
user.h | 44 long fcs; member in struct:user_fpregs_struct 55 long fcs; member in struct:user_fxsr_struct
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
user32.h | 27 u32 fcs; member in struct:user_i387_ia32_struct 41 int fcs; member in struct:user32_fxsr_struct
|
user_32.h | 29 long fcs; member in struct:user_i387_struct 42 long fcs; member in struct:user_fxsr_struct
|
processor_32.h | 112 long fcs; member in struct:i387_fsave_struct 127 long fcs; member in struct:i387_fxsave_struct 145 long fcs; member in struct:i387_soft_struct
|
/development/ndk/platforms/android-L/include/sys/ |
user.h | 44 long fcs; member in struct:user_fpregs_struct 55 long fcs; member in struct:user_fxsr_struct
|
/external/bluetooth/bluedroid/stack/include/ |
mca_api.h | 109 #define MCA_FCS_BYPASS 0x10 /* fcs_present=TRUE, fcs=L2CAP_CFG_FCS_BYPASS */ 110 #define MCA_FCS_USE 0x11 /* fcs_present=TRUE, fcs=L2CAP_CFG_FCS_USE */ 112 #define MCA_FCS_USE_MASK 0x01 /* mask for fcs */ 122 tMCA_FCS_OPT fcs; member in struct:__anon6198
|
l2c_api.h | 100 /* HCI header(4) + L2CAP header(4) + padding(4) or control word(2) + FCS(2) */ 160 BOOLEAN fcs_present; /* Optionally bypasses FCS checks */ 161 UINT8 fcs; /* '0' if desire is to bypass FCS, otherwise '1' */ member in struct:__anon6191 [all...] |
/external/bluetooth/bluedroid/stack/l2cap/ |
l2c_fcr.c | 425 UINT16 fcs; local 467 /* Compute the FCS and add to the end of the buffer if not bypassed */ 470 /* length field in l2cap header has to include FCS length */ 474 /* Calculate the FCS */ 475 fcs = l2c_fcr_tx_get_fcs(p_buf); 477 /* Point to the end of the buffer and put the FCS there */ 480 UINT16_TO_STREAM (p, fcs); 525 UINT16 fcs; local 566 /* Compute the FCS and add to the end of the buffer if not bypassed */ 569 fcs = l2c_fcr_tx_get_fcs (p_buf) 641 UINT16 fcs; local 1302 UINT16 fcs; local [all...] |
/external/bluetooth/bluedroid/bta/hl/ |
bta_hl_int.h | 59 /* L2CAP FCS setting*/ 139 UINT8 fcs; /* '0' No FCS, otherwise '1' */ member in struct:__anon5255 [all...] |
/external/bluetooth/bluedroid/bta/include/ |
bta_hl_api.h | 278 UINT8 fcs; member in struct:__anon5465
|