Lines Matching refs:RawCommand

73     return RawCommand(FB_CMD_BOOT, "Booting", response, info);  in Boot()
77 return RawCommand(FB_CMD_CONTINUE, "Resuming boot", response, info); in Continue()
81 return RawCommand(FB_CMD_CREATE_PARTITION ":" + partition + ":" + size, in CreatePartition()
86 return RawCommand(FB_CMD_DELETE_PARTITION ":" + partition, "Deleting '" + partition + "'"); in DeletePartition()
91 return RawCommand(FB_CMD_ERASE ":" + partition, "Erasing '" + partition + "'", response, info); in Erase()
96 return RawCommand(FB_CMD_FLASH ":" + partition, "Writing '" + partition + "'", response, info); in Flash()
101 return RawCommand(FB_CMD_GETVAR ":" + key, val, info); in GetVar()
110 return RawCommand(FB_CMD_REBOOT, "Rebooting", response, info); in Reboot()
115 return RawCommand("reboot-" + target, "Rebooting into " + target, response, info); in RebootTo()
119 return RawCommand(FB_CMD_RESIZE_PARTITION ":" + partition + ":" + size, in ResizePartition()
125 return RawCommand(FB_CMD_SET_ACTIVE ":" + slot, "Setting current slot to '" + slot + "'", in SetActive()
133 auto result = RawCommand(raw, response, info); in SnapshotUpdateCommand()
314 if ((ret = RawCommand(cmd, response, info, &dsize))) { in RunAndReadBuffer()
426 RetCode FastBootDriver::RawCommand(const std::string& cmd, const std::string& message, in RawCommand() function in fastboot::FastBootDriver
430 auto result = RawCommand(cmd, response, info, dsize); in RawCommand()
435 RetCode FastBootDriver::RawCommand(const std::string& cmd, std::string* response, in RawCommand() function in fastboot::FastBootDriver
456 if ((ret = RawCommand(cmd, response, info))) { in DownloadCommand()