Home
last modified time | relevance | path

Searched refs:FastBootDriver (Results 1 – 7 of 7) sorted by relevance

/aosp14/system/core/fastboot/
H A Dfastboot_driver.cpp61 FastBootDriver::FastBootDriver(Transport* transport, DriverCallbacks driver_callbacks, in FastBootDriver() function in fastboot::FastBootDriver
70 FastBootDriver::~FastBootDriver() { in ~FastBootDriver()
139 RetCode FastBootDriver::FlashPartition(const std::string& partition, in FlashPartition()
275 FastBootDriver* self; in Download()
310 RetCode FastBootDriver::RunAndReadBuffer( in RunAndReadBuffer()
393 const std::string FastBootDriver::RCString(RetCode rc) { in RCString()
418 std::string FastBootDriver::Error() { in Error()
422 RetCode FastBootDriver::WaitForDisconnect() { in WaitForDisconnect()
526 std::string FastBootDriver::ErrnoStr(const std::string& msg) { in ErrnoStr()
582 RetCode FastBootDriver::ReadBuffer(void* buf, size_t size) { in ReadBuffer()
[all …]
H A Dfastboot_driver_test.cpp34 FastBootDriver driver(&transport); in TEST_F()
48 FastBootDriver driver(&transport); in TEST_F()
69 FastBootDriver driver(&transport, callbacks); in TEST_F()
H A Dfastboot_driver.h57 class FastBootDriver : public IFastBootDriver {
65 FastBootDriver(Transport* transport, DriverCallbacks driver_callbacks = {},
67 ~FastBootDriver();
H A Dfastboot.cpp116 fastboot::FastBootDriver* fb = nullptr;
2378 fastboot::FastBootDriver fastboot_driver(transport, driver_callbacks, false); in Main()
/aosp14/system/core/fastboot/fuzzy_fastboot/
H A Dfixtures.cpp146 fb = std::unique_ptr<FastBootDriver>(new FastBootDriver(transport.get(), {}, true)); in SetUp()
203 fb = std::unique_ptr<FastBootDriver>(new FastBootDriver(transport.get(), {}, true)); in ReconnectFastbootDevice()
223 fb = std::unique_ptr<FastBootDriver>(new FastBootDriver(transport.get(), {}, true)); in ReconnectFastbootDevice()
H A Dfixtures.h71 std::unique_ptr<FastBootDriver> fb;
H A Dmain.cpp97 return os << FastBootDriver::RCString(ret); in operator <<()
100 bool PartitionHash(FastBootDriver* fb, const std::string& part, std::string* hash, int* retcode, in PartitionHash()