Lines Matching refs:ByteArray
34 class ByteArray : public packet::CustomFieldFixedSizeInterface<ByteArray<LENGTH>>,
35 public storage::Serializable<ByteArray<LENGTH>> {
38 ByteArray() = default;
39 ByteArray(const uint8_t (&d)[kLength]) { in ByteArray() function
42 ByteArray(std::array<uint8_t, kLength> a) : bytes(std::move(a)) {} in ByteArray() function
55 bool operator<(const ByteArray& rhs) const {
58 bool operator==(const ByteArray& rhs) const {
61 bool operator>(const ByteArray& rhs) const {
64 bool operator<=(const ByteArray& rhs) const {
67 bool operator>=(const ByteArray& rhs) const {
70 bool operator!=(const ByteArray& rhs) const {
78 static std::optional<ByteArray<kLength>> FromString(const std::string& from) { in FromString()
86 ByteArray<kLength> byte_array = {}; in FromString()
93 static std::optional<ByteArray<kLength>> FromLegacyConfigString(const std::string& from) { in FromLegacyConfigString()