Home | History | Annotate | Download | only in cts

Lines Matching defs:tag

30  * | 1 byte: BER tag (0x62) | 1 byte: length of TLVs |...TLV objects...| 2 bytes: status |
37 // FCP Template BER-TLV Tag tags. TS 101 220 Section 7.2
72 * the format: | 1 byte: BER tag | 1 byte: length of TLVs |...TLV objects...| 2 bytes: status |
83 // | 1 byte: BER tag | 1 byte: length of TLVs | ...TLV objects... | 2 bytes: status |
86 // don't count BER tag, length byte, or status bytes
88 // data[0]: Response tag
97 // | 1 byte: tag | 1 byte: length | 'length' bytes: value |
98 int tag = data[index++] & 0xFF;
101 tlvObjects .add(new Tlv(tag, length, value));
110 * Represents a Tag-Length-Value object. TS 101 220 Section 2
114 private final int tag;
118 public Tlv(int tag, int length, @Nonnull String value) {
119 this.tag = tag;
125 return tag;
145 return tag == tlv.tag &&
152 return Objects.hash(tag, length, value);
157 return tag + "(" + length + "):" + value;