HomeSort by relevance Sort by last modified time
    Searched defs:WriteState (Results 1 - 3 of 3) sorted by null

  /hardware/interfaces/confirmationui/support/include/android/hardware/confirmationui/support/
cbor.h 197 class WriteState {
199 WriteState() : data_(nullptr), size_(0), error_(Error::OK) {}
200 WriteState(uint8_t* buffer, size_t size) : data_(buffer), size_(size), error_(Error::OK) {}
201 WriteState(uint8_t* buffer, size_t size, Error error)
204 WriteState(uint8_t (&buffer)[size]) : data_(buffer), size_(size), error_(Error::OK) {}
206 WriteState& operator++() {
215 WriteState& operator+=(size_t offset) {
231 WriteState writeHeader(WriteState wState, Type type, const uint64_t value);
235 WriteState writeNumber(WriteState wState, const T& v)
    [all...]
  /art/dex2oat/linker/
oat_writer.h 358 enum class WriteState {
367 WriteState write_state_;
  /external/webrtc/webrtc/p2p/base/
port.h 437 enum WriteState {
444 WriteState write_state() const { return write_state_; }
595 void set_write_state(WriteState value);
605 WriteState write_state_;

Completed in 248 milliseconds