Home
last modified time | relevance | path

Searched refs:opcode (Results 1 – 23 of 23) sorted by relevance

/components/drivers/include/drivers/
A Dscsi.h22 rt_uint8_t opcode;
27 rt_uint8_t opcode;
35 rt_uint8_t opcode;
60 rt_uint8_t opcode;
84 rt_uint8_t opcode;
101 rt_uint8_t opcode;
118 rt_uint8_t opcode;
129 rt_uint8_t opcode;
139 rt_uint8_t opcode;
149 rt_uint8_t opcode;
[all …]
A Dnvme.h240 rt_uint8_t opcode; member
267 rt_uint8_t opcode; member
354 rt_uint8_t opcode; member
367 rt_uint8_t opcode; member
381 rt_uint8_t opcode; member
396 rt_uint8_t opcode; member
411 rt_uint8_t opcode; member
421 rt_uint8_t opcode; member
A Dmmcsd_host.h90 rt_int32_t (*execute_tuning)(struct rt_mmcsd_host *host, rt_int32_t opcode);
/components/drivers/usb/cherryusb/class/msc/
A Dusb_scsi.h601 uint8_t opcode; /* 0: 0x03 */ member
628 uint8_t opcode; /* 0: 0x12 */ member
672 uint8_t opcode; /* 0x15 */ member
682 uint8_t opcode; /* 0x1a */ member
745 uint8_t opcode; /* 0: 0x08 */ member
755 uint8_t opcode; /* 0: 0x0a */ member
765 uint8_t opcode; /* 0: 0x1b */ member
776 uint8_t opcode; /* 0: 0x1e */ member
785 uint8_t opcode; /* 0: 0x23 */ member
818 uint8_t opcode; /* 0: 0x25 */ member
[all …]
/components/drivers/sdio/sdhci/include/
A Dsdhci_host.h103 int (*execute_tuning)(struct rt_mmc_host *host, unsigned opcode);
325 static inline rt_bool_t mmc_op_multi(rt_uint32_t opcode) in mmc_op_multi() argument
327 return opcode == MMC_WRITE_MULTIPLE_BLOCK || opcode == MMC_READ_MULTIPLE_BLOCK; in mmc_op_multi()
330 static inline rt_bool_t mmc_op_tuning(rt_uint32_t opcode) in mmc_op_tuning() argument
332 return opcode == MMC_SEND_TUNING_BLOCK || opcode == MMC_SEND_TUNING_BLOCK_HS200; in mmc_op_tuning()
341 int rt_mmc_send_abort_tuning(struct rt_mmc_host *host, rt_uint32_t opcode);
A Dsdhci.h622 int (*platform_execute_tuning)(struct rt_sdhci_host *host, rt_uint32_t opcode);
662 int rt_sdhci_execute_tuning(struct rt_mmc_host *mmc, rt_uint32_t opcode);
663 int __sdhci_execute_tuning(struct rt_sdhci_host *host, rt_uint32_t opcode);
671 void rt_sdhci_send_tuning(struct rt_sdhci_host *host, rt_uint32_t opcode);
672 void rt_sdhci_abort_tuning(struct rt_sdhci_host *host, rt_uint32_t opcode);
/components/drivers/scsi/
A Dscsi.c202 cmd.op.request_sense.opcode = RT_SCSI_CMD_REQUEST_SENSE; in rt_scsi_request_sense()
239 cmd.op.inquiry.opcode = RT_SCSI_CMD_INQUIRY; in rt_scsi_inquiry()
335 cmd.op.read10.opcode = RT_SCSI_CMD_READ10; in rt_scsi_read10()
352 cmd.op.read12.opcode = RT_SCSI_CMD_READ12; in rt_scsi_read12()
370 cmd.op.read16.opcode = RT_SCSI_CMD_READ16; in rt_scsi_read16()
388 cmd.op.write10.opcode = RT_SCSI_CMD_WRITE10; in rt_scsi_write10()
405 cmd.op.write12.opcode = RT_SCSI_CMD_WRITE12; in rt_scsi_write12()
423 cmd.op.write16.opcode = RT_SCSI_CMD_WRITE16; in rt_scsi_write16()
522 cmd.op.mode_select6.opcode = RT_SCSI_CMD_MODE_SELECT; in rt_scsi_mode_select6()
619 cmd.op.mode_sense6.opcode = RT_SCSI_CMD_MODE_SENSE; in rt_scsi_mode_sense6()
[all …]
/components/net/lwip/lwip-2.0.3/src/apps/tftp/
A Dtftp_server.c207 int opcode; in recv() local
219 opcode = sbuf[0]; in recv()
224 switch (opcode) { in recv()
257 tftp_state.handle = tftp_state.ctx->open(filename, mode, opcode == PP_HTONS(TFTP_WRQ)); in recv()
265 …LWIP_DEBUGF(TFTP_DEBUG | LWIP_DBG_STATE, ("tftp: %s request from ", (opcode == PP_HTONS(TFTP_WRQ))… in recv()
272 if (opcode == PP_HTONS(TFTP_WRQ)) { in recv()
/components/net/lwip/lwip-2.1.2/src/apps/tftp/
A Dtftp_server.c207 int opcode; in recv() local
219 opcode = sbuf[0]; in recv()
224 switch (opcode) { in recv()
256 tftp_state.handle = tftp_state.ctx->open(filename, mode, opcode == PP_HTONS(TFTP_WRQ)); in recv()
264 …LWIP_DEBUGF(TFTP_DEBUG | LWIP_DBG_STATE, ("tftp: %s request from ", (opcode == PP_HTONS(TFTP_WRQ))… in recv()
271 if (opcode == PP_HTONS(TFTP_WRQ)) { in recv()
/components/drivers/nvme/
A Dnvme.c284 cmd.rw.opcode = opcode; in nvme_blk_rw()
573 cmd.common.opcode = RT_NVME_CMD_FLUSH; in nvme_blk_sync()
593 cmd.write_zeroes.opcode = RT_NVME_CMD_WRITE_ZEROES; in nvme_blk_erase()
703 cmd.identify.opcode = RT_NVME_ADMIN_OPCODE_IDENTIFY; in nvme_identify()
736 if (opcode == RT_NVME_ADMIN_OPCODE_CREATE_CQ) in nvme_attach_queue()
738 cmd.create_cq.opcode = opcode; in nvme_attach_queue()
745 else if (opcode == RT_NVME_ADMIN_OPCODE_CREATE_SQ) in nvme_attach_queue()
747 cmd.create_sq.opcode = opcode; in nvme_attach_queue()
756 LOG_E("What the fuck opcode = %x", opcode); in nvme_attach_queue()
774 rt_uint8_t opcode) in nvme_detach_queue() argument
[all …]
/components/drivers/sdio/sdhci/
A Dfit-mmc.c117 static rt_int32_t rt_plat_execute_tuning(struct rt_mmcsd_host *host, rt_int32_t opcode) in rt_plat_execute_tuning() argument
121 return mmc->ops->execute_tuning(mmc, opcode); in rt_plat_execute_tuning()
184 int rt_mmc_abort_tuning(struct rt_mmc_host *host, rt_uint32_t opcode) in rt_mmc_abort_tuning() argument
215 int rt_mmc_send_abort_tuning(struct rt_mmc_host *host, rt_uint32_t opcode) in rt_mmc_send_abort_tuning() argument
A Dsdhci.c2073 int rt_sdhci_execute_tuning(struct rt_mmc_host *mmc, rt_uint32_t opcode) in rt_sdhci_execute_tuning() argument
2112 err = host->ops->platform_execute_tuning(host, opcode); in rt_sdhci_execute_tuning()
2119 host->tuning_delay = opcode == MMC_SEND_TUNING_BLOCK; in rt_sdhci_execute_tuning()
2123 host->tuning_err = __sdhci_execute_tuning(host, opcode); in rt_sdhci_execute_tuning()
2132 int __sdhci_execute_tuning(struct rt_sdhci_host *host, rt_uint32_t opcode) in __sdhci_execute_tuning() argument
2140 rt_sdhci_send_tuning(host, opcode); in __sdhci_execute_tuning()
2144 rt_sdhci_abort_tuning(host, opcode); in __sdhci_execute_tuning()
2186 void rt_sdhci_abort_tuning(struct rt_sdhci_host *host, rt_uint32_t opcode) in rt_sdhci_abort_tuning() argument
2195 void rt_sdhci_send_tuning(struct rt_sdhci_host *host, rt_uint32_t opcode) in rt_sdhci_send_tuning() argument
2205 cmd.cmd_code = opcode; in rt_sdhci_send_tuning()
/components/net/lwip/lwip-1.4.1/src/include/netif/
A Detharp.h120 PACK_STRUCT_FIELD(u16_t opcode);
206 const u16_t opcode);
/components/net/lwip/lwip-2.0.3/src/include/lwip/prot/
A Detharp.h62 PACK_STRUCT_FIELD(u16_t opcode);
/components/net/lwip/lwip-2.1.2/src/include/lwip/prot/
A Detharp.h91 PACK_STRUCT_FIELD(u16_t opcode);
/components/net/lwip/lwip-2.0.3/src/core/ipv4/
A Detharp.c139 const u16_t opcode);
696 switch (hdr->opcode) {
734 …G | LWIP_DBG_TRACE, ("etharp_input: ARP unknown opcode type %"S16_F"\n", lwip_htons(hdr->opcode)));
1106 const u16_t opcode) argument
1128 hdr->opcode = lwip_htons(opcode);
/components/net/lwip/lwip-2.1.2/src/core/ipv4/
A Detharp.c138 const u16_t opcode);
698 switch (hdr->opcode) {
736 …G | LWIP_DBG_TRACE, ("etharp_input: ARP unknown opcode type %"S16_F"\n", lwip_htons(hdr->opcode)));
1105 const u16_t opcode) argument
1127 hdr->opcode = lwip_htons(opcode);
/components/drivers/sdio/
A Ddev_mmcsd_core.c741 rt_int32_t opcode; in mmcsd_excute_tuning() local
747 opcode = SEND_TUNING_BLOCK_HS200; in mmcsd_excute_tuning()
749 opcode = SEND_TUNING_BLOCK; in mmcsd_excute_tuning()
751 return host->ops->execute_tuning(host, opcode);; in mmcsd_excute_tuning()
/components/net/lwip/lwip-1.4.1/src/netif/
A Detharp.c765 switch (hdr->opcode) {
780 hdr->opcode = htons(ARP_REPLY);
830 …UG | LWIP_DBG_TRACE, ("etharp_arp_input: ARP unknown opcode type %"S16_F"\n", htons(hdr->opcode)));
1179 const u16_t opcode) argument
1206 hdr->opcode = htons(opcode);
/components/net/lwip/lwip-1.4.1/test/unit/etharp/
A Dtest_etharp.c95 etharphdr->opcode = htons(ARP_REPLY); in create_arp_response()
/components/net/lwip/lwip-2.0.3/test/unit/etharp/
A Dtest_etharp.c96 etharphdr->opcode = htons(ARP_REPLY); in create_arp_response()
/components/net/lwip/lwip-2.1.2/test/unit/etharp/
A Dtest_etharp.c97 etharphdr->opcode = htons(ARP_REPLY); in create_arp_response()
/components/drivers/ata/
A Dahci.c301 switch (cmd->op.unknow.opcode) in ahci_scsi_transfer()

Completed in 75 milliseconds