Searched refs:DownloadCommand (Results 1 – 5 of 5) sorted by relevance
/system/core/fastboot/fuzzy_fastboot/ |
D | fixtures.cpp | 105 RetCode FastBootTest::DownloadCommand(uint32_t size, std::string* response, in DownloadCommand() function in fastboot::FastBootTest 107 return fb->DownloadCommand(size, response, info); in DownloadCommand()
|
D | fixtures.h | 58 RetCode DownloadCommand(uint32_t size, std::string* response = nullptr,
|
D | main.cpp | 651 ASSERT_EQ(DownloadCommand(buf.size()), SUCCESS) << "Device rejected download command"; in TEST_F() 778 EXPECT_EQ(DownloadCommand(size + 1), DEVICE_FAIL) in TEST_F() 790 ASSERT_EQ(DownloadCommand(buf.size() + 1), SUCCESS) in TEST_F() 806 ASSERT_EQ(DownloadCommand(10), SUCCESS) << "Device rejected download request for 10 bytes"; in TEST_F() 830 EXPECT_EQ(DownloadCommand(0), DEVICE_FAIL) in TEST_F() 1011 EXPECT_EQ(DownloadCommand(buf.size()), SUCCESS) << "Download command failed"; in TEST_F()
|
/system/core/fastboot/ |
D | fastboot_driver.cpp | 205 if ((ret = DownloadCommand(u32size, response, info))) { in Download() 235 if ((ret = DownloadCommand(buf.size(), response, info))) { in Download() 269 if ((ret = DownloadCommand(u32size, response, info))) { in Download() 452 RetCode FastBootDriver::DownloadCommand(uint32_t size, std::string* response, in DownloadCommand() function in fastboot::FastBootDriver
|
D | fastboot_driver.h | 143 RetCode DownloadCommand(uint32_t size, std::string* response = nullptr,
|