|
Android-cuttlefish cvd tool
|
#include <stdint.h>#include <optional>#include "cuttlefish/io/io.h"#include "cuttlefish/result/expect.h"#include "cuttlefish/result/result_type.h"

Go to the source code of this file.
Namespaces | |
| namespace | cuttlefish |
Functions | |
| Result< void > | cuttlefish::ReadExact (Reader &reader, char *buf, size_t size) |
| template<typename T > | |
| Result< T > | cuttlefish::ReadExactBinary (Reader &reader) |
| Result< void > | cuttlefish::PReadExact (const ReaderSeeker &reader, char *buf, size_t size, uint64_t offset) |
| Result< bool > | cuttlefish::ReadExactOrEof (Reader &reader, char *buf, size_t size) |
| template<typename T > | |
| Result< T > | cuttlefish::PReadExactBinary (const ReaderSeeker &reader, uint64_t offset) |
| template<typename T > | |
| Result< std::optional< T > > | cuttlefish::ReadExactBinaryOrEof (Reader &reader) |