Home | History | Annotate | Download | only in btm

Lines Matching refs:p_pin

974 **                  p_pin        - pointer to array with the PIN Code
978 void BTM_PINCodeReply (BD_ADDR bd_addr, UINT8 res, UINT8 pin_len, UINT8 *p_pin, UINT32 trusted_mask[])
1004 if ( (pin_len > PIN_CODE_LEN) || (pin_len == 0) || (p_pin == NULL) )
1037 memcpy (btm_cb.pin_code, p_pin, pin_len);
1081 memcpy (btm_cb.pin_code, p_pin, pin_len);
1084 btsnd_hcic_pin_code_req_reply (bd_addr, pin_len, p_pin);
1156 ** p_pin - pointer to array with the PIN Code
1162 UINT8 pin_len, UINT8 *p_pin, UINT32 trusted_mask[])
1208 if (p_pin && (pin_len <= PIN_CODE_LEN) && (pin_len != 0))
1211 memcpy (btm_cb.pin_code, p_pin, PIN_CODE_LEN);
1338 ** p_pin - pointer to array with the PIN Code
1344 UINT8 pin_len, UINT8 *p_pin, UINT32 trusted_mask[])
1358 return btm_sec_bond_by_transport(bd_addr, transport, pin_len, p_pin, trusted_mask);
1371 ** p_pin - pointer to array with the PIN Code
1376 tBTM_STATUS BTM_SecBond (BD_ADDR bd_addr, UINT8 pin_len, UINT8 *p_pin, UINT32 trusted_mask[])
1383 return btm_sec_bond_by_transport(bd_addr, transport, pin_len, p_pin, trusted_mask);