/Zephyr-latest/tests/bluetooth/tester/src/ |
D | btp_ots.c | 134 .opcode = BTP_OTS_READ_SUPPORTED_COMMANDS, 140 .opcode = BTP_OTS_REGISTER_OBJECT,
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/ |
D | ull_llcp_common.c | 224 ctx->tx_opcode = pdu->llctrl.opcode; in lp_comm_tx() 791 ctx->response_opcode = pdu->llctrl.opcode; 793 switch (pdu->llctrl.opcode) { 964 ctx->response_opcode = pdu->llctrl.opcode; 966 switch (pdu->llctrl.opcode) { 1121 ctx->tx_opcode = pdu->llctrl.opcode;
|
D | ull_llcp.c | 1539 return (ctx->rx_opcode == pdu->llctrl.opcode || ctx->rx_greedy); 1544 return ((pdu->llctrl.opcode == PDU_DATA_LLCTRL_TYPE_UNKNOWN_RSP) && 1553 return (pdu->llctrl.opcode == PDU_DATA_LLCTRL_TYPE_REJECT_IND); 1558 return ((pdu->llctrl.opcode == PDU_DATA_LLCTRL_TYPE_REJECT_EXT_IND) && 1569 return pdu->llctrl.opcode == PDU_DATA_LLCTRL_TYPE_TERMINATE_IND; 1847 pdu->llctrl.opcode = PDU_DATA_LLCTRL_TYPE_UNUSED; 1851 if (pdu->llctrl.opcode < ARRAY_SIZE(pdu_validate)) { 1854 cb = pdu_validate[pdu->llctrl.opcode].validate_cb;
|
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/ |
D | access.rst | 39 The opcode list contains all message opcodes the model can receive, as well as 41 can support any number of opcodes, but each opcode can only be listed by one 44 The full opcode list must be passed to the model structure in the composition 45 data, and cannot be changed at runtime. The end of the opcode list is 47 must always be present in the opcode list, unless the list is empty. In that 49 opcode list definition.
|
/Zephyr-latest/doc/hardware/peripherals/ |
D | sdhc.rst | 33 command opcode provided.
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | tbs_client.c | 298 uint8_t index, uint8_t opcode, in call_cp_callback_handler() argument 304 bt_tbs_opcode_str(opcode), call_index); in call_cp_callback_handler() 307 switch (opcode) { in call_cp_callback_handler() 593 bt_tbs_status_str(ind_val->status), bt_tbs_opcode_str(ind_val->opcode), in call_cp_notify_handler() 597 ind_val->opcode, ind_val->call_index); in call_cp_notify_handler() 909 uint8_t opcode) in tbs_client_common_call_control() argument 924 common.opcode = opcode; in tbs_client_common_call_control() 1973 originate->opcode = BT_TBS_CALL_OPCODE_ORIGINATE; in bt_tbs_client_originate_call() 1997 const size_t max_call_cnt = sizeof(write_buf) - sizeof(join->opcode); in bt_tbs_client_join_calls() 2017 join->opcode = BT_TBS_CALL_OPCODE_JOIN; in bt_tbs_client_join_calls()
|
D | mcc.c | 847 (params->length != sizeof(cmd.opcode) && in mcs_write_cp_cb() 848 params->length != sizeof(cmd.opcode) + sizeof(cmd.param))) { in mcs_write_cp_cb() 854 (void)memcpy(&cmd.opcode, params->data, sizeof(cmd.opcode)); in mcs_write_cp_cb() 855 if (params->length == sizeof(cmd.opcode) + sizeof(cmd.param)) { in mcs_write_cp_cb() 857 (char *)(params->data) + sizeof(cmd.opcode), in mcs_write_cp_cb() 860 LOG_DBG("Command in callback: %d, param: %d", cmd.opcode, cmd.param); in mcs_write_cp_cb() 3073 CHECKIF(!BT_MCS_VALID_OP(cmd->opcode)) { in bt_mcc_send_cmd() 3074 LOG_DBG("Opcode 0x%02X is invalid", cmd->opcode); in bt_mcc_send_cmd() 3094 length = sizeof(cmd->opcode); in bt_mcc_send_cmd() 3095 (void)memcpy(mcs_inst->write_buf, &cmd->opcode, length); in bt_mcc_send_cmd() [all …]
|
D | has.c | 838 hdr->opcode = BT_HAS_OP_READ_PRESET_RSP; in bt_has_cp_read_preset_rsp() 854 hdr->opcode = BT_HAS_OP_PRESET_CHANGED; in preset_changed_prepare() 1408 LOG_DBG("conn %p opcode %s (0x%02x)", (void *)conn, bt_has_op_str(hdr->opcode), in handle_control_point_op() 1409 hdr->opcode); in handle_control_point_op() 1411 switch (hdr->opcode) { in handle_control_point_op()
|
/Zephyr-latest/scripts/build/ |
D | gen_kobject_list.py | 608 opcode = loc.value[0] 609 if opcode != DW_OP_addr: 612 if opcode == DW_OP_fbreg: 617 (name, hex(opcode)))
|
/Zephyr-latest/subsys/net/l2/ethernet/ |
D | arp.c | 320 hdr->opcode = htons(NET_ARP_REQUEST); in arp_prepare() 508 hdr->opcode = htons(NET_ARP_REQUEST); in arp_gratuitous_send() 738 hdr->opcode = htons(NET_ARP_REPLY); in arp_prepare_reply() 792 switch (ntohs(arp_hdr->opcode)) { in net_arp_input()
|
/Zephyr-latest/drivers/sdhc/ |
D | rcar_mmc.c | 492 switch (cmd->opcode) { in rcar_mmc_gen_data_cmd() 912 reg = cmd->opcode; in rcar_mmc_request() 934 LOG_DBG("(SD_CMD=%08x, SD_ARG=%08x)", cmd->opcode, cmd->arg); in rcar_mmc_request() 972 dev_data->is_last_cmd_app_cmd = (cmd->opcode == SD_APP_CMD); in rcar_mmc_request() 1634 cmd.opcode = MMC_SEND_TUNING_BLOCK; in rcar_mmc_execute_tuning() 1637 cmd.opcode = SD_SEND_TUNING_BLOCK; in rcar_mmc_execute_tuning() 1700 .opcode = SD_STOP_TRANSMISSION, in rcar_mmc_execute_tuning()
|
/Zephyr-latest/subsys/bluetooth/mesh/ |
D | proxy_srv.c | 231 uint8_t opcode; in proxy_filter_recv() local 235 opcode = net_buf_simple_pull_u8(buf); in proxy_filter_recv() 236 switch (opcode) { in proxy_filter_recv() 260 LOG_WRN("Unhandled configuration OpCode 0x%02x", opcode); in proxy_filter_recv()
|
/Zephyr-latest/include/zephyr/drivers/ |
D | sdhc.h | 47 uint32_t opcode; /*!< SD Host specification CMD index */ member
|
/Zephyr-latest/drivers/espi/ |
D | Kconfig | 152 bool "Host peripheral device support customized opcode" 154 Enables opcode is customized for certain platforms such as Chromebook
|
/Zephyr-latest/drivers/flash/ |
D | flash_npcx_fiu_qspi.c | 172 qspi_npcx_uma_write_byte(dev, cfg->opcode); in qspi_npcx_fiu_uma_transceive()
|
/Zephyr-latest/samples/bluetooth/hci_uart_async/src/ |
D | hci_uart_async.c | 364 .cc = {.ncmd = 1, .opcode = sys_cpu_to_le16(BT_OP_NOP)},
|
/Zephyr-latest/samples/bluetooth/hci_uart/src/ |
D | main.c | 387 .opcode = sys_cpu_to_le16(BT_OP_NOP), in main()
|
/Zephyr-latest/tests/bsim/bluetooth/audio/src/ |
D | has_client_test.c | 354 if (hdr->opcode == BT_HAS_OP_PRESET_CHANGED) { in notify_handler() 393 LOG_DBG("Unexpected opcode 0x%02x", hdr->opcode); in notify_handler()
|
/Zephyr-latest/subsys/sd/ |
D | sdio.c | 34 cmd.opcode = SDIO_SEND_OP_COND; in sdio_send_ocr() 96 cmd.opcode = SDIO_RW_DIRECT; in sdio_io_rw_direct() 136 cmd.opcode = SDIO_RW_EXTENDED; in sdio_io_rw_extended()
|
/Zephyr-latest/tests/bluetooth/audio/ascs/src/ |
D | test_ase_control_params.c | 113 uint8_t opcode) in test_expect_unsupported_opcode() argument 116 opcode, /* Opcode */ in test_expect_unsupported_opcode() 121 opcode, /* Opcode */ in test_expect_unsupported_opcode()
|
D | main.c | 239 zassert_equal(0x01, hdr->opcode, "unexpected Opcode 0x%02x", hdr->opcode); in ZTEST_F()
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/lll/ |
D | lll_sync_iso.c | 1431 const uint8_t opcode = pdu->ctrl.opcode; in isr_rx_ctrl_recv() local 1433 if (opcode == PDU_BIG_CTRL_TYPE_TERM_IND) { in isr_rx_ctrl_recv() 1441 } else if (opcode == PDU_BIG_CTRL_TYPE_CHAN_MAP_IND) { in isr_rx_ctrl_recv()
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | hci_raw.c | 270 op = sys_le16_to_cpu(hdr->opcode); in bt_send_ext()
|
/Zephyr-latest/drivers/dma/ |
D | dma_pl330.c | 151 static inline void dma_pl330_gen_op(uint8_t opcode, uint32_t addr, uint32_t val) in dma_pl330_gen_op() argument 153 sys_write8(opcode, addr); in dma_pl330_gen_op()
|
/Zephyr-latest/drivers/crypto/ |
D | crypto_ataes132a.c | 42 static int ataes132a_send_command(const struct device *dev, uint8_t opcode, in ataes132a_send_command() argument 73 data->command_buffer[1] = opcode; in ataes132a_send_command()
|