Searched refs:HandleData (Results 1 – 3 of 3) sorted by relevance
/aosp14/system/core/fastboot/device/ |
H A D | fastboot_device.h | 42 bool HandleData(bool read, std::vector<char>* data); 43 bool HandleData(bool read, char* data, uint64_t size);
|
H A D | fastboot_device.cpp | 188 bool FastbootDevice::HandleData(bool read, std::vector<char>* data) { in HandleData() function in FastbootDevice 189 return HandleData(read, data->data(), data->size()); in HandleData() 192 bool FastbootDevice::HandleData(bool read, char* data, uint64_t size) { in HandleData() function in FastbootDevice
|
H A D | commands.cpp | 309 if (device->HandleData(true, &device->download_data())) { in DownloadHandler() 880 if (!device_->HandleData(false /* is read */, buf.data(), chunk_size)) { in Fetch()
|