| /components/finsh/ |
| A D | finsh.h | 216 #define CMD_OPTIONS_STATEMENT(command) static struct msh_cmd_opt command##_msh_options[16]; argument 218 #define CMD_OPTIONS_STATEMENT(command) static struct msh_cmd_opt command##_msh_options[]; argument 227 #define CMD_OPTIONS_NODE_START(command) static struct msh_cmd_opt command##_msh_options[16] = { argument 229 #define CMD_OPTIONS_NODE_START(command) static struct msh_cmd_opt command##_msh_options[] = { argument 252 #define CMD_OPTIONS_STATEMENT(command) argument 253 #define CMD_OPTIONS_NODE_START(command) argument
|
| A D | Kconfig | 2 bool "MSH: command shell" 29 bool "Enable command history feature" 34 int "The command history line number" 49 int "The command line size for shell" 83 int "The number of arguments for a shell command" 87 bool "command option completion enable"
|
| /components/drivers/usb/cherryusb/class/adb/ |
| A D | usbd_adb.c | 33 uint32_t command; /* command identifier constant (A_CNXN, ...) */ member 87 packet->msg.magic = packet->msg.command ^ 0xffffffff; in adb_send_msg() 94 packet->msg.command = A_OKAY; in adb_send_okay() 104 packet->msg.command = A_CLSE; in adb_send_close() 123 rx_packet.msg.command, in usbd_adb_bulk_out() 133 if (rx_packet.msg.command == A_CLSE) { in usbd_adb_bulk_out() 143 switch (rx_packet.msg.command) { in usbd_adb_bulk_out() 154 tx_packet.msg.command = A_CNXN; in usbd_adb_bulk_out() 215 if (rx_packet.msg.command == A_WRTE) { in usbd_adb_bulk_in() 293 packet->msg.command = A_WRTE; in usbd_abd_write() [all …]
|
| /components/lwp/vdso/ |
| A D | SConscript | 37 command = ["scons", "-C", vdso_arch] 39 command = ["scons", "-C", vdso_arch, "--clean"] 42 result = subprocess.run(command, env=process_env, check=True) 45 print('exec command: "%s" failed.' % ' '.join(command))
|
| /components/libc/compilers/common/ |
| A D | cstdlib.c | 52 int system(const char *command) in system() argument 56 if (command) in system() 58 msh_exec((char *)command, rt_strlen(command)); in system()
|
| /components/lwp/ |
| A D | lwp_runtime.c | 58 int command; in lwp_startup() local 62 command = lwp_startup_debug_request(); in lwp_startup() 63 if (command) in lwp_startup()
|
| /components/drivers/pci/ |
| A D | pci.c | 538 rt_uint16_t class, command = 0; in rt_pci_device_alloc_resource() local 549 rt_pci_read_config_u16(pdev, PCIR_COMMAND, &command); in rt_pci_device_alloc_resource() 550 command = (command & ~(PCIM_CMD_PORTEN | PCIM_CMD_MEMEN)) | PCIM_CMD_BUSMASTEREN; in rt_pci_device_alloc_resource() 679 command |= (cfg & PCIM_BAR_SPACE) ? PCIM_CMD_PORTEN : PCIM_CMD_MEMEN; in rt_pci_device_alloc_resource() 697 command |= PCIM_CMD_MEMEN; in rt_pci_device_alloc_resource() 709 command |= PCIM_CMD_PORTEN; in rt_pci_device_alloc_resource() 712 rt_pci_write_config_u16(pdev, PCIR_COMMAND, command); in rt_pci_device_alloc_resource()
|
| /components/net/at/ |
| A D | Kconfig | 66 bool "Enable print RAW format AT command communication data"
|
| /components/drivers/wlan/ |
| A D | Kconfig | 44 bool "MSH command Enable"
|
| A D | dev_wlan_cmd.c | 824 MSH_CMD_EXPORT_ALIAS(wifi_msh, wifi, wifi command);
|
| /components/net/lwip/lwip-2.0.3/doc/doxygen/ |
| A D | lwip.Doxyfile | 367 # \nosubgrouping command. 679 # popen()) the command command input-file, where command is the value of the 876 # command). 896 # \image command). 902 # by executing (via popen()) the command: 2205 # command. Doxygen will then run the mscgen tool (see: 2346 # accomplished by means of the command \hidecallgraph. 2358 # accomplished by means of the command \hidecallergraph. 2417 # command). 2424 # command). [all …]
|
| /components/net/lwip/lwip-2.1.2/doc/doxygen/ |
| A D | lwip.Doxyfile | 376 # \nosubgrouping command. 688 # popen()) the command command input-file, where command is the value of the 886 # command). 907 # \image command). 913 # by executing (via popen()) the command: 2228 # command. Doxygen will then run the mscgen tool (see: 2369 # accomplished by means of the command \hidecallgraph. 2381 # accomplished by means of the command \hidecallergraph. 2438 # command). 2445 # command). [all …]
|
| A D | lwip.Doxyfile.cmake.in | 376 # \nosubgrouping command. 688 # popen()) the command command input-file, where command is the value of the 886 # command). 907 # \image command). 913 # by executing (via popen()) the command: 2228 # command. Doxygen will then run the mscgen tool (see: 2369 # accomplished by means of the command \hidecallgraph. 2381 # accomplished by means of the command \hidecallergraph. 2438 # command). 2445 # command). [all …]
|
| /components/drivers/spi/ |
| A D | Kconfig | 221 …Read the JEDEC SFDP command must run at 50 MHz or less,and you also can use rt_spi_configure(); to…
|
| /components/net/lwip/lwip-2.0.3/doc/ |
| A D | savannah.txt | 50 Sorry, you are not allowed to execute that command.
|
| /components/net/lwip/lwip-2.1.2/doc/ |
| A D | savannah.txt | 50 Sorry, you are not allowed to execute that command.
|
| /components/drivers/sdio/sdhci/ |
| A D | sdhci.c | 1436 rt_uint32_t command; in sdhci_data_irq() local 1440 command = RT_SDHCI_GET_CMD(rt_sdhci_readw(host, RT_SDHCI_COMMAND)); in sdhci_data_irq() 1441 if (command == MMC_SEND_TUNING_BLOCK || command == MMC_SEND_TUNING_BLOCK_HS200) in sdhci_data_irq()
|
| /components/drivers/usb/cherryusb/ |
| A D | README.md | 24 - Clear API classification (slave: initialisation, registration api, command callback api, data sen…
|