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 | 128 RetCode RawCommand(const std::string& cmd, const std::string& message, 132 RetCode RawCommand(const std::string& cmd, std::string* response = nullptr,
|
D | fastboot.cpp | 1321 fb->RawCommand("signature", "installing signature"); in FlashImage() 1351 fb->RawCommand(command, "Updating super partition"); in UpdateSuperPartition() 1436 fb->RawCommand(command, ""); in do_oem_command() 1821 fb->RawCommand("signature", "installing signature"); in Main() 1957 fb->RawCommand("gsi:wipe", "wiping GSI"); in Main() 1959 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() 409 EXPECT_EQ(fb->RawCommand("flashing get_unlock_ability", &resp, &info), SUCCESS) in TEST_F() 804 EXPECT_EQ(fb->RawCommand("download:1"), DEVICE_FAIL) in TEST_F() 810 EXPECT_EQ(fb->RawCommand("download:-1"), DEVICE_FAIL) in TEST_F() 816 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F() 822 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F() 828 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F() 834 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F() 841 EXPECT_EQ(fb->RawCommand(cmd), DEVICE_FAIL) in TEST_F() 861 EXPECT_EQ(fb->RawCommand(s), DEVICE_FAIL) in TEST_F() [all …]
|
D | fixtures.cpp | 206 ASSERT_EQ(fb->RawCommand("flashing get_unlock_ability", &resp, &info), SUCCESS) in SetLockState() 228 ASSERT_EQ(fb->RawCommand("flashing " + cmd, &resp), SUCCESS) in SetLockState()
|