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

Method writeByteArray

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

Writes a byte array to the stream. @param b The array to write. @param off The offset of the array to start copying data from. @param len The number of bytes to write.

(byte [] b, int off, int len)

Source from the content-addressed store, hash-verified

160 * @param len The number of bytes to write.
161 */
162public void
163writeByteArray(byte [] b, int off, int len) {
164 need(len);
165 System.arraycopy(b, off, array, pos, len);
166 pos += len;
167}
168
169/**
170 * Writes a byte array to the stream.

Callers 15

writeCountedStringMethod · 0.95
digestRRsetMethod · 0.95
digestMessageMethod · 0.95
DSASignaturefromDNSMethod · 0.95
DSASignaturetoDNSMethod · 0.95
ECDSASignaturefromDNSMethod · 0.95
ECDSASignaturetoDNSMethod · 0.95
signMessageMethod · 0.95
verifyMessageMethod · 0.95
verifyMethod · 0.95
toWireMethod · 0.95
toWireMethod · 0.95

Calls 1

needMethod · 0.95

Tested by

no test coverage detected