Searched refs:MajorType (Results 1 – 3 of 3) sorted by relevance
/hardware/interfaces/identity/support/include/cppbor/ |
D | cppbor.h | 29 enum MajorType : uint8_t { enum 78 uint8_t* encodeHeader(MajorType type, uint64_t addlInfo, uint8_t* pos, const uint8_t* end); 86 void encodeHeader(MajorType type, uint64_t addlInfo, EncodeCallback encodeCallback); 96 void encodeHeader(MajorType type, uint64_t addlInfo, OutputIterator iter) { in encodeHeader() 111 virtual MajorType type() const = 0; 216 static constexpr MajorType kMajorType = UINT; 222 MajorType type() const override { return kMajorType; } in type() 254 static constexpr MajorType kMajorType = NINT; 260 MajorType type() const override { return kMajorType; } in type() 287 static constexpr MajorType kMajorType = BSTR; [all …]
|
/hardware/interfaces/identity/support/src/ |
D | cppbor.cpp | 54 uint8_t* encodeHeader(MajorType type, uint64_t addlInfo, uint8_t* pos, const uint8_t* end) { in encodeHeader() 80 void encodeHeader(MajorType type, uint64_t addlInfo, EncodeCallback encodeCallback) { in encodeHeader()
|
D | cppbor_parse.cpp | 193 MajorType type = static_cast<MajorType>(*pos & 0xE0); in parseRecursively()
|