Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 1 | #include "firmware_handler.hpp" |
| 2 | |
| 3 | namespace blobs |
| 4 | { |
| 5 | |
| 6 | bool FirmwareBlobHandler::canHandleBlob(const std::string& path) |
| 7 | { |
| 8 | return false; |
| 9 | } |
| 10 | std::vector<std::string> FirmwareBlobHandler::getBlobIds() |
| 11 | { |
| 12 | return {}; |
| 13 | } |
| 14 | bool FirmwareBlobHandler::deleteBlob(const std::string& path) |
| 15 | { |
| 16 | return false; |
| 17 | } |
| 18 | bool FirmwareBlobHandler::stat(const std::string& path, struct BlobMeta* meta) |
| 19 | { |
| 20 | return false; |
| 21 | } |
| 22 | bool FirmwareBlobHandler::open(uint16_t session, uint16_t flags, |
| 23 | const std::string& path) |
| 24 | { |
| 25 | return false; |
| 26 | } |
| 27 | std::vector<uint8_t> FirmwareBlobHandler::read(uint16_t session, |
| 28 | uint32_t offset, |
| 29 | uint32_t requestedSize) |
| 30 | { |
| 31 | return {}; |
| 32 | } |
| 33 | bool FirmwareBlobHandler::write(uint16_t session, uint32_t offset, |
| 34 | const std::vector<uint8_t>& data) |
| 35 | { |
| 36 | return false; |
| 37 | } |
| 38 | bool FirmwareBlobHandler::writeMeta(uint16_t session, uint32_t offset, |
| 39 | const std::vector<uint8_t>& data) |
| 40 | { |
| 41 | return false; |
| 42 | } |
| 43 | bool FirmwareBlobHandler::commit(uint16_t session, |
| 44 | const std::vector<uint8_t>& data) |
| 45 | { |
| 46 | return false; |
| 47 | } |
| 48 | bool FirmwareBlobHandler::close(uint16_t session) |
| 49 | { |
| 50 | return false; |
| 51 | } |
| 52 | bool FirmwareBlobHandler::stat(uint16_t session, struct BlobMeta* meta) |
| 53 | { |
| 54 | return false; |
| 55 | } |
| 56 | bool FirmwareBlobHandler::expire(uint16_t session) |
| 57 | { |
| 58 | return false; |
| 59 | } |
| 60 | } // namespace blobs |