Home
last modified time | relevance | path

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

/system/core/fastboot/
Dfastboot_driver.cpp195 if ((ret = SendBuffer(fd, size))) { in Download()
225 if ((ret = SendBuffer(buf))) { in Download()
276 if (cb_priv.tpbuf.size() && (ret = SendBuffer(cb_priv.tpbuf))) { in Download()
467 RetCode FastBootDriver::SendBuffer(int fd, size_t size) { in SendBuffer() function in fastboot::FastBootDriver
482 if ((ret = SendBuffer(mapping->data(), mapping->size()))) { in SendBuffer()
493 RetCode FastBootDriver::SendBuffer(const std::vector<char>& buf) { in SendBuffer() function in fastboot::FastBootDriver
495 return SendBuffer(buf.data(), buf.size()); in SendBuffer()
498 RetCode FastBootDriver::SendBuffer(const void* buf, size_t size) { in SendBuffer() function in fastboot::FastBootDriver
548 if (SendBuffer(tpbuf)) { in SparseWriteCallback()
558 if (nbytes && SendBuffer(data + total, nbytes)) { // Don't send a ZLP in SparseWriteCallback()
Dfastboot_driver.h146 RetCode SendBuffer(int fd, size_t size);
147 RetCode SendBuffer(const std::vector<char>& buf);
148 RetCode SendBuffer(const void* buf, size_t size);
/system/core/fastboot/fuzzy_fastboot/
Dfixtures.cpp102 RetCode FastBootTest::SendBuffer(const std::vector<char>& buf) { in SendBuffer() function in fastboot::FastBootTest
103 return fb->SendBuffer(buf); in SendBuffer()
Dfixtures.h58 RetCode SendBuffer(const std::vector<char>& buf);
Dmain.cpp657 ASSERT_EQ(SendBuffer(buf), SUCCESS) << "Downloading payload failed"; in TEST_F()
762 RetCode ret = SendBuffer(buf); in TEST_F()
779 RetCode ret = SendBuffer(buf); in TEST_F()