Home | History | Annotate | Download | only in btm

Lines Matching refs:p_pin

849 **                  p_pin        - pointer to array with the PIN Code
853 void BTM_PINCodeReply (BD_ADDR bd_addr, UINT8 res, UINT8 pin_len, UINT8 *p_pin, UINT32 trusted_mask[])
879 if ( (pin_len > PIN_CODE_LEN) || (pin_len == 0) || (p_pin == NULL) )
916 memcpy (btm_cb.pin_code, p_pin, pin_len);
956 btsnd_hcic_pin_code_req_reply (bd_addr, pin_len, p_pin);
967 ** p_pin - pointer to array with the PIN Code
973 UINT8 pin_len, UINT8 *p_pin, UINT32 trusted_mask[])
1018 if (p_pin && (pin_len <= PIN_CODE_LEN) && (pin_len != 0))
1022 memcpy (btm_cb.pin_code, p_pin, PIN_CODE_LEN);
1152 ** p_pin - pointer to array with the PIN Code
1158 UINT8 pin_len, UINT8 *p_pin, UINT32 trusted_mask[])
1172 return btm_sec_bond_by_transport(bd_addr, transport, pin_len, p_pin, trusted_mask);
1185 ** p_pin - pointer to array with the PIN Code
1190 tBTM_STATUS BTM_SecBond (BD_ADDR bd_addr, UINT8 pin_len, UINT8 *p_pin, UINT32 trusted_mask[])
1197 return btm_sec_bond_by_transport(bd_addr, transport, pin_len, p_pin, trusted_mask);