Home
last modified time | relevance | path

Searched refs:RawCommand (Results 1 – 5 of 5) sorted by relevance

/system/core/fastboot/
Dfastboot_driver.cpp73 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()
[all …]
Dfastboot_driver.h135 RetCode RawCommand(const std::string& cmd, const std::string& message,
139 RetCode RawCommand(const std::string& cmd, std::string* response = nullptr,
Dfastboot.cpp1560 fb->RawCommand("signature", "installing signature"); in FlashImage()
1590 fb->RawCommand(command, "Updating super partition"); in UpdateSuperPartition()
1677 fb->RawCommand(command, ""); in do_oem_command()
1828 fb->RawCommand("oem allow-flash-super"); in wipe_super()
2128 fb->RawCommand("signature", "installing signature"); in Main()
2264 fb->RawCommand("gsi:wipe", "wiping GSI"); in Main()
2266 fb->RawCommand("gsi:disable", "disabling GSI"); in Main()
/system/core/fastboot/fuzzy_fastboot/
Dmain.cpp110 if ((ret = fb->RawCommand(cmd, &resp, &info)) != SUCCESS) { in PartitionHash()
404 EXPECT_EQ(fb->RawCommand("flashing get_unlock_ability", &resp, &info), SUCCESS) in TEST_F()
836 EXPECT_EQ(fb->RawCommand("download:1"), DEVICE_FAIL) in TEST_F()
842 EXPECT_EQ(fb->RawCommand("download:-1"), DEVICE_FAIL) in TEST_F()
848 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F()
854 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F()
860 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F()
866 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F()
873 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F()
893 EXPECT_EQ(fb->RawCommand(s), DEVICE_FAIL) in TEST_F()
[all …]
Dfixtures.cpp240 ASSERT_EQ(fb->RawCommand("flashing get_unlock_ability", &resp, &info), SUCCESS) in SetLockState()
262 ASSERT_EQ(fb->RawCommand("flashing " + cmd, &resp), SUCCESS) in SetLockState()