Home
last modified time | relevance | path

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

/system/core/fastboot/
Dprotocol.cpp109 size_t cmdsize = strlen(cmd); in _command_start() local
110 if (cmdsize > 64) { in _command_start()
119 if (transport->Write(cmd, cmdsize) != static_cast<int>(cmdsize)) { in _command_start()
Dengine.cpp105 size_t cmdsize; in queue_action() local
111 cmdsize = vsnprintf(a->cmd, sizeof(a->cmd), fmt, ap); in queue_action()
114 if (cmdsize >= sizeof(a->cmd)) { in queue_action()
116 die("Command length (%d) exceeds maximum size (%d)", cmdsize, sizeof(a->cmd)); in queue_action()