Home
last modified time | relevance | path

Searched refs:cmdsize (Results 1 – 2 of 2) sorted by relevance

/system/core/fastboot/
Dprotocol.c112 int cmdsize = strlen(cmd); in _command_start() local
118 if(cmdsize > 64) { in _command_start()
123 if(usb_write(usb, cmd, cmdsize) != cmdsize) { in _command_start()
Dengine.c140 size_t cmdsize; in queue_action() local
146 cmdsize = vsnprintf(a->cmd, sizeof(a->cmd), fmt, ap); in queue_action()
149 if (cmdsize >= sizeof(a->cmd)) { in queue_action()
151 die("Command length (%d) exceeds maximum size (%d)", cmdsize, sizeof(a->cmd)); in queue_action()