Lines Matching refs:Download
128 if ((ret = Download(partition, data))) { in FlashPartition()
136 if ((ret = Download(partition, fd, size))) { in FlashPartition()
145 if ((ret = Download(partition, s, size, current, total, false))) { in FlashPartition()
172 RetCode FastBootDriver::Download(const std::string& name, int fd, size_t size, in Download() function in fastboot::FastBootDriver
175 auto result = Download(fd, size, response, info); in Download()
180 RetCode FastBootDriver::Download(int fd, size_t size, std::string* response, in Download() function in fastboot::FastBootDriver
203 RetCode FastBootDriver::Download(const std::string& name, const std::vector<char>& buf, in Download() function in fastboot::FastBootDriver
206 auto result = Download(buf, response, info); in Download()
211 RetCode FastBootDriver::Download(const std::vector<char>& buf, std::string* response, in Download() function in fastboot::FastBootDriver
233 RetCode FastBootDriver::Download(const std::string& partition, struct sparse_file* s, uint32_t size, in Download() function in fastboot::FastBootDriver
238 auto result = Download(s, use_crc, response, info); in Download()
243 RetCode FastBootDriver::Download(sparse_file* s, bool use_crc, std::string* response, in Download() function in fastboot::FastBootDriver