Searched refs:RawCommand (Results 1 – 5 of 5) sorted by relevance
/system/core/fastboot/ |
D | fastboot_driver.cpp | 69 return RawCommand(FB_CMD_BOOT, "Booting", response, info); in Boot() 73 return RawCommand(FB_CMD_CONTINUE, "Resuming boot", response, info); in Continue() 77 return RawCommand(FB_CMD_CREATE_PARTITION ":" + partition + ":" + size, in CreatePartition() 82 return RawCommand(FB_CMD_DELETE_PARTITION ":" + partition, "Deleting '" + partition + "'"); in DeletePartition() 87 return RawCommand(FB_CMD_ERASE ":" + partition, "Erasing '" + partition + "'", response, info); in Erase() 92 return RawCommand(FB_CMD_FLASH ":" + partition, "Writing '" + partition + "'", response, info); in Flash() 97 return RawCommand(FB_CMD_GETVAR ":" + key, val, info); in GetVar() 106 return RawCommand(FB_CMD_REBOOT, "Rebooting", response, info); in Reboot() 111 return RawCommand("reboot-" + target, "Rebooting into " + target, response, info); in RebootTo() 115 return RawCommand(FB_CMD_RESIZE_PARTITION ":" + partition + ":" + size, in ResizePartition() [all …]
|
D | fastboot_driver.h | 130 RetCode RawCommand(const std::string& cmd, const std::string& message, 134 RetCode RawCommand(const std::string& cmd, std::string* response = nullptr,
|
D | fastboot.cpp | 1440 fb->RawCommand("signature", "installing signature"); in FlashImage() 1470 fb->RawCommand(command, "Updating super partition"); in UpdateSuperPartition() 1555 fb->RawCommand(command, ""); in do_oem_command() 1706 fb->RawCommand("oem allow-flash-super"); in wipe_super() 2001 fb->RawCommand("signature", "installing signature"); in Main() 2137 fb->RawCommand("gsi:wipe", "wiping GSI"); in Main() 2139 fb->RawCommand("gsi:disable", "disabling GSI"); in Main()
|
/system/core/fastboot/fuzzy_fastboot/ |
D | main.cpp | 108 if ((ret = fb->RawCommand(cmd, &resp, &info)) != SUCCESS) { in PartitionHash() 389 EXPECT_EQ(fb->RawCommand("flashing get_unlock_ability", &resp, &info), SUCCESS) in TEST_F() 784 EXPECT_EQ(fb->RawCommand("download:1"), DEVICE_FAIL) in TEST_F() 790 EXPECT_EQ(fb->RawCommand("download:-1"), DEVICE_FAIL) in TEST_F() 796 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F() 802 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F() 808 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F() 814 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F() 821 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F() 841 EXPECT_EQ(fb->RawCommand(s), DEVICE_FAIL) in TEST_F() [all …]
|
D | fixtures.cpp | 240 ASSERT_EQ(fb->RawCommand("flashing get_unlock_ability", &resp, &info), SUCCESS) in SetLockState() 262 ASSERT_EQ(fb->RawCommand("flashing " + cmd, &resp), SUCCESS) in SetLockState()
|