Lines Matching refs:dispatch
47 void (*dispatch)(char *cmd_parameter, char *response); member
51 .dispatch = getvar
55 .dispatch = download
59 .dispatch = CONFIG_IS_ENABLED(FASTBOOT_FLASH, (flash), (NULL))
63 .dispatch = CONFIG_IS_ENABLED(FASTBOOT_FLASH, (erase), (NULL))
67 .dispatch = okay
71 .dispatch = okay
75 .dispatch = okay
79 .dispatch = reboot_bootloader
83 .dispatch = reboot_fastbootd
87 .dispatch = reboot_recovery
91 .dispatch = okay
95 .dispatch = CONFIG_IS_ENABLED(FASTBOOT_CMD_OEM_FORMAT, (oem_format), (NULL))
99 .dispatch = CONFIG_IS_ENABLED(FASTBOOT_CMD_OEM_PARTCONF, (oem_partconf), (NULL))
103 .dispatch = CONFIG_IS_ENABLED(FASTBOOT_CMD_OEM_BOOTBUS, (oem_bootbus), (NULL))
107 .dispatch = CONFIG_IS_ENABLED(FASTBOOT_OEM_RUN, (run_ucmd), (NULL))
111 .dispatch = CONFIG_IS_ENABLED(FASTBOOT_UUU_SUPPORT, (run_ucmd), (NULL))
115 .dispatch = CONFIG_IS_ENABLED(FASTBOOT_UUU_SUPPORT, (run_acmd), (NULL))
137 if (commands[i].dispatch) { in fastboot_handle_command()
138 commands[i].dispatch(cmd_parameter, in fastboot_handle_command()