/Zephyr-latest/tests/bluetooth/controller/ctrl_conn_update/src/ |
D | main.c | 384 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 443 lt_rx(LL_REJECT_EXT_IND, &conn_2nd, &tx, &reject_ext_ind); in ZTEST() 482 lt_rx(LL_REJECT_EXT_IND, &conn_3rd, &tx, &reject_ext_ind); in ZTEST() 618 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 654 lt_rx(LL_REJECT_EXT_IND, &conn, &tx, &reject_ext_ind); in ZTEST() 758 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 784 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST() 837 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 863 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST() 1201 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local [all …]
|
/Zephyr-latest/tests/bluetooth/controller/ctrl_sca_update/src/ |
D | main.c | 195 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 219 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST() 297 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 321 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST()
|
/Zephyr-latest/tests/bluetooth/controller/ctrl_collision/src/ |
D | main.c | 163 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 220 lt_rx(LL_REJECT_EXT_IND, &conn, &tx, &reject_ext_ind); in ZTEST() 503 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 549 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST() 628 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 677 lt_rx(LL_REJECT_EXT_IND, &conn, &tx, &reject_ext_ind); in ZTEST()
|
/Zephyr-latest/tests/bluetooth/controller/ctrl_le_ping/src/ |
D | main.c | 175 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 199 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST()
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/ |
D | ull_llcp_pdu.c | 421 pdu->len = PDU_DATA_LLCTRL_LEN(reject_ext_ind); in llcp_pdu_encode_reject_ext_ind() 423 pdu->llctrl.reject_ext_ind.reject_opcode = reject_opcode; in llcp_pdu_encode_reject_ext_ind() 424 pdu->llctrl.reject_ext_ind.error_code = error_code; in llcp_pdu_encode_reject_ext_ind() 429 ctx->reject_ext_ind.reject_opcode = pdu->llctrl.reject_ext_ind.reject_opcode; in llcp_pdu_decode_reject_ext_ind() 430 ctx->reject_ext_ind.error_code = pdu->llctrl.reject_ext_ind.error_code; in llcp_pdu_decode_reject_ext_ind() 438 pdu->len = PDU_DATA_LLCTRL_LEN(reject_ext_ind); in llcp_ntf_encode_reject_ext_ind() 441 p = (void *)&pdu->llctrl.reject_ext_ind; in llcp_ntf_encode_reject_ext_ind() 442 p->error_code = ctx->reject_ext_ind.error_code; in llcp_ntf_encode_reject_ext_ind() 443 p->reject_opcode = ctx->reject_ext_ind.reject_opcode; in llcp_ntf_encode_reject_ext_ind()
|
D | ull_llcp_enc.c | 378 error = pdu->llctrl.reject_ext_ind.error_code; in reject_error_code() 728 llcp_pdu_encode_reject_ext_ind(pdu, ctx->reject_ext_ind.reject_opcode, in llcp_rp_enc_tx() 729 ctx->reject_ext_ind.error_code); in llcp_rp_enc_tx() 731 llcp_pdu_encode_reject_ind(pdu, ctx->reject_ext_ind.error_code); in llcp_rp_enc_tx() 996 ctx->reject_ext_ind.reject_opcode = PDU_DATA_LLCTRL_TYPE_ENC_REQ; in rp_enc_state_wait_ltk_reply() 997 ctx->reject_ext_ind.error_code = BT_HCI_ERR_PIN_OR_KEY_MISSING; in rp_enc_state_wait_ltk_reply() 1130 ctx->reject_ext_ind.reject_opcode = in rp_enc_state_wait_rx_pause_enc_req() 1132 ctx->reject_ext_ind.error_code = BT_HCI_ERR_LMP_PDU_NOT_ALLOWED; in rp_enc_state_wait_rx_pause_enc_req()
|
D | ull_llcp_conn_upd.c | 560 if (pdu->llctrl.reject_ext_ind.error_code == BT_HCI_ERR_UNSUPP_REMOTE_FEATURE) { in lp_cu_st_wait_rx_conn_param_rsp() 570 ctx->data.cu.error = pdu->llctrl.reject_ext_ind.error_code; in lp_cu_st_wait_rx_conn_param_rsp() 627 ctx->data.cu.error = pdu->llctrl.reject_ext_ind.error_code; in lp_cu_st_wait_rx_conn_update_ind()
|
D | ull_llcp_cc.c | 910 if (pdu->llctrl.reject_ext_ind.error_code == BT_HCI_ERR_UNSUPP_REMOTE_FEATURE) { in lp_cc_st_wait_rx_cis_rsp() 914 ctx->data.cis_create.error = pdu->llctrl.reject_ext_ind.error_code; in lp_cc_st_wait_rx_cis_rsp()
|
D | ull_llcp_internal.h | 355 } reject_ext_ind; member
|
D | ull_llcp.c | 1559 (ctx->tx_opcode == pdu->llctrl.reject_ext_ind.reject_opcode)); 1681 return VALIDATE_PDU_LEN(pdu, reject_ext_ind);
|
D | pdu.h | 933 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind; member
|
D | ull_llcp_common.c | 338 ctx->reject_ext_ind.reject_opcode == PDU_DATA_LLCTRL_TYPE_CTE_REQ) { in lp_comm_complete_cte_req()
|
D | ull_llcp_phy.c | 748 ctx->data.pu.error = ctx->reject_ext_ind.error_code; in lp_pu_st_wait_rx_phy_update_ind()
|
/Zephyr-latest/tests/bluetooth/controller/ctrl_version/src/ |
D | main.c | 153 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 216 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST()
|
/Zephyr-latest/tests/bluetooth/controller/ctrl_encrypt/src/ |
D | main.c | 597 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 631 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST() 802 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 839 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST() 1010 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 1044 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST() 1217 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 1254 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST() 2038 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 2114 lt_rx(LL_REJECT_EXT_IND, &conn, &tx, &reject_ext_ind); in ZTEST() [all …]
|
/Zephyr-latest/tests/bluetooth/controller/ctrl_feature_exchange/src/ |
D | main.c | 198 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 255 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST()
|
/Zephyr-latest/tests/bluetooth/controller/ctrl_data_length_update/src/ |
D | main.c | 334 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 400 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST()
|
/Zephyr-latest/tests/bluetooth/controller/ctrl_phy_update/src/ |
D | main.c | 909 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 966 lt_rx(LL_REJECT_EXT_IND, &conn, &tx, &reject_ext_ind); in ZTEST() 1269 struct pdu_data_llctrl_reject_ext_ind reject_ext_ind = { in ZTEST() local 1321 lt_tx(LL_REJECT_EXT_IND, &conn, &reject_ext_ind); in ZTEST()
|
/Zephyr-latest/tests/bluetooth/controller/common/src/ |
D | helper_pdu.c | 198 pdu->len = offsetof(struct pdu_data_llctrl, reject_ext_ind) + in helper_pdu_encode_reject_ext_ind() 201 pdu->llctrl.reject_ext_ind.reject_opcode = p->reject_opcode; in helper_pdu_encode_reject_ext_ind() 202 pdu->llctrl.reject_ext_ind.error_code = p->error_code; in helper_pdu_encode_reject_ext_ind() 738 offsetof(struct pdu_data_llctrl, reject_ext_ind) + in helper_pdu_verify_reject_ext_ind() 743 zassert_equal(pdu->llctrl.reject_ext_ind.reject_opcode, p->reject_opcode, in helper_pdu_verify_reject_ext_ind() 745 zassert_equal(pdu->llctrl.reject_ext_ind.error_code, p->error_code, in helper_pdu_verify_reject_ext_ind()
|
/Zephyr-latest/subsys/bluetooth/controller/hci/ |
D | hci.c | 8915 switch (pdu->llctrl.reject_ext_ind.reject_opcode) { 8918 le_df_cte_req_failed(pdu->llctrl.reject_ext_ind.error_code, handle, buf); 8922 LOG_WRN("reject opcode: 0x%02x", pdu->llctrl.reject_ext_ind.reject_opcode);
|