• Home
  • Raw
  • Download

Lines Matching refs:RetCode

68 RetCode FastBootDriver::Boot(std::string* response, std::vector<std::string>* info) {  in Boot()
72 RetCode FastBootDriver::Continue(std::string* response, std::vector<std::string>* info) { in Continue()
76 RetCode FastBootDriver::CreatePartition(const std::string& partition, const std::string& size) { in CreatePartition()
81 RetCode FastBootDriver::DeletePartition(const std::string& partition) { in DeletePartition()
85 RetCode FastBootDriver::Erase(const std::string& partition, std::string* response, in Erase()
90 RetCode FastBootDriver::Flash(const std::string& partition, std::string* response, in Flash()
95 RetCode FastBootDriver::GetVar(const std::string& key, std::string* val, in GetVar()
100 RetCode FastBootDriver::GetVarAll(std::vector<std::string>* response) { in GetVarAll()
105 RetCode FastBootDriver::Reboot(std::string* response, std::vector<std::string>* info) { in Reboot()
109 RetCode FastBootDriver::RebootTo(std::string target, std::string* response, in RebootTo()
114 RetCode FastBootDriver::ResizePartition(const std::string& partition, const std::string& size) { in ResizePartition()
119 RetCode FastBootDriver::SetActive(const std::string& slot, std::string* response, in SetActive()
125 RetCode FastBootDriver::FlashPartition(const std::string& partition, in FlashPartition()
127 RetCode ret; in FlashPartition()
134 RetCode FastBootDriver::FlashPartition(const std::string& partition, int fd, uint32_t size) { in FlashPartition()
135 RetCode ret; in FlashPartition()
142 RetCode FastBootDriver::FlashPartition(const std::string& partition, sparse_file* s, uint32_t size, in FlashPartition()
144 RetCode ret; in FlashPartition()
151 RetCode FastBootDriver::Partitions(std::vector<std::tuple<std::string, uint64_t>>* partitions) { in Partitions()
153 RetCode ret; in Partitions()
172 RetCode FastBootDriver::Download(const std::string& name, int fd, size_t size, in Download()
180 RetCode FastBootDriver::Download(int fd, size_t size, std::string* response, in Download()
182 RetCode ret; in Download()
203 RetCode FastBootDriver::Download(const std::string& name, const std::vector<char>& buf, in Download()
211 RetCode FastBootDriver::Download(const std::vector<char>& buf, std::string* response, in Download()
213 RetCode ret; in Download()
233 RetCode FastBootDriver::Download(const std::string& partition, struct sparse_file* s, uint32_t size, in Download()
243 RetCode FastBootDriver::Download(sparse_file* s, bool use_crc, std::string* response, in Download()
252 RetCode ret; in Download()
283 RetCode FastBootDriver::Upload(const std::string& outfile, std::string* response, in Upload()
291 RetCode FastBootDriver::UploadInner(const std::string& outfile, std::string* response, in UploadInner()
293 RetCode ret; in UploadInner()
333 const std::string FastBootDriver::RCString(RetCode rc) { in RCString()
362 RetCode FastBootDriver::WaitForDisconnect() { in WaitForDisconnect()
367 RetCode FastBootDriver::RawCommand(const std::string& cmd, const std::string& message, in RawCommand()
376 RetCode FastBootDriver::RawCommand(const std::string& cmd, std::string* response, in RawCommand()
393 RetCode FastBootDriver::DownloadCommand(uint32_t size, std::string* response, in DownloadCommand()
396 RetCode ret; in DownloadCommand()
403 RetCode FastBootDriver::HandleResponse(std::string* response, std::vector<std::string>* info, in HandleResponse()
467 RetCode FastBootDriver::SendBuffer(int fd, size_t size) { in SendBuffer()
471 RetCode ret; in SendBuffer()
493 RetCode FastBootDriver::SendBuffer(const std::vector<char>& buf) { in SendBuffer()
498 RetCode FastBootDriver::SendBuffer(const void* buf, size_t size) { in SendBuffer()
518 RetCode FastBootDriver::ReadBuffer(std::vector<char>& buf) { in ReadBuffer()
523 RetCode FastBootDriver::ReadBuffer(void* buf, size_t size) { in ReadBuffer()