Home
last modified time | relevance | path

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

/system/core/fastboot/device/
Dfastboot_device.cpp89 constexpr size_t kResponseReasonSize = 4; in WriteStatus() local
93 constexpr size_t kMaxMessageSize = sizeof(buf) - kResponseReasonSize; in WriteStatus()
103 memcpy(buf, kResultStrings[static_cast<size_t>(result)], kResponseReasonSize); in WriteStatus()
104 memcpy(buf + kResponseReasonSize, message.c_str(), msg_len); in WriteStatus()
106 size_t response_len = kResponseReasonSize + msg_len; in WriteStatus()