MCPcopy Create free account
hub / github.com/DeNA/PacketProxy / writeU8

Method writeU8

src/main/java/core/org/xbill/DNS/DNSOutput.java:108–113  ·  view source on GitHub ↗

Writes an unsigned 8 bit value to the stream. @param val The value to be written

(int val)

Source from the content-addressed store, hash-verified

106 * @param val The value to be written
107 */
108public void
109writeU8(int val) {
110 check(val, 8);
111 need(1);
112 array[pos++] = (byte)(val & 0xFF);
113}
114
115/**
116 * Writes an unsigned 16 bit value to the stream.

Callers 15

fromRSAPublicKeyMethod · 0.95
fromDSAPublicKeyMethod · 0.95
DSASignaturefromDNSMethod · 0.95
DSASignaturetoDNSMethod · 0.95
ECDSASignaturefromDNSMethod · 0.95
rrToWireMethod · 0.80
rrToWireMethod · 0.80
rrToWireMethod · 0.80
mapToWireMethod · 0.80
rrToWireMethod · 0.80
rrToWireMethod · 0.80
rrToWireMethod · 0.80

Calls 2

checkMethod · 0.95
needMethod · 0.95

Tested by

no test coverage detected