Home
last modified time | relevance | path

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

/system/core/fastboot/
Dfastboot_driver.cpp204 if ((ret = SendBuffer(fd, size))) { in Download()
234 if ((ret = SendBuffer(buf))) { in Download()
285 if (cb_priv.tpbuf.size() && (ret = SendBuffer(cb_priv.tpbuf))) { in Download()
476 RetCode FastBootDriver::SendBuffer(int fd, size_t size) { in SendBuffer() function in fastboot::FastBootDriver
491 if ((ret = SendBuffer(mapping->data(), mapping->size()))) { in SendBuffer()
502 RetCode FastBootDriver::SendBuffer(const std::vector<char>& buf) { in SendBuffer() function in fastboot::FastBootDriver
504 return SendBuffer(buf.data(), buf.size()); in SendBuffer()
507 RetCode FastBootDriver::SendBuffer(const void* buf, size_t size) { in SendBuffer() function in fastboot::FastBootDriver
557 if (SendBuffer(tpbuf)) { in SparseWriteCallback()
567 if (nbytes && SendBuffer(data + total, nbytes)) { // Don't send a ZLP in SparseWriteCallback()
Dfastboot_driver.h148 RetCode SendBuffer(int fd, size_t size);
149 RetCode SendBuffer(const std::vector<char>& buf);
150 RetCode SendBuffer(const void* buf, size_t size);
/system/core/fastboot/fuzzy_fastboot/
Dfixtures.cpp110 RetCode FastBootTest::SendBuffer(const std::vector<char>& buf) { in SendBuffer() function in fastboot::FastBootTest
111 return fb->SendBuffer(buf); in SendBuffer()
Dfixtures.h61 RetCode SendBuffer(const std::vector<char>& buf);
Dmain.cpp637 ASSERT_EQ(SendBuffer(buf), SUCCESS) << "Downloading payload failed"; in TEST_F()
742 RetCode ret = SendBuffer(buf); in TEST_F()
759 RetCode ret = SendBuffer(buf); in TEST_F()