Home
last modified time | relevance | path

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

/system/core/fastboot/device/
Dfastboot_device.cpp112 constexpr size_t kResponseReasonSize = 4; in WriteStatus() local
116 constexpr size_t kMaxMessageSize = sizeof(buf) - kResponseReasonSize; in WriteStatus()
126 memcpy(buf, kResultStrings[static_cast<size_t>(result)], kResponseReasonSize); in WriteStatus()
127 memcpy(buf + kResponseReasonSize, message.c_str(), msg_len); in WriteStatus()
129 size_t response_len = kResponseReasonSize + msg_len; in WriteStatus()