Home
last modified time | relevance | path

Searched refs:PIN_CODE_LEN (Results 1 – 5 of 5) sorted by relevance

/system/bt/stack/include/
Dbt_types.h470 #define PIN_CODE_LEN 16 macro
471 typedef uint8_t PIN_CODE[PIN_CODE_LEN]; /* Pin Code (upto 128 bits) MSB is 0 */
/system/bt/bta/dm/
Dbta_dm_int.h93 uint8_t p_pin[PIN_CODE_LEN];
/system/bt/btif/src/
Dbluetooth.cc363 if (pin_code == nullptr || pin_len > PIN_CODE_LEN) return BT_STATUS_FAIL; in pin_reply()
/system/bt/stack/btm/
Dbtm_sec.cc643 if ((pin_len > PIN_CODE_LEN) || (pin_len == 0) || (p_pin == NULL)) in BTM_PINCodeReply()
772 if (p_pin && (pin_len <= PIN_CODE_LEN) && (pin_len != 0)) { in btm_sec_bond_by_transport()
775 memcpy(btm_cb.pin_code, p_pin, PIN_CODE_LEN); in btm_sec_bond_by_transport()
/system/bt/stack/hcic/
Dhcicmds.cc694 for (; i < PIN_CODE_LEN; i++) *pp++ = 0; in btsnd_hcic_pin_code_req_reply()