MCPcopy Create free account
hub / github.com/apache/tomcat / readInt

Method readInt

test/org/apache/coyote/ajp/TesterAjpMessage.java:45–49  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

43 }
44
45 public int readInt() {
46 int val = (buf[pos++] & 0xFF) << 8;
47 val += buf[pos++] & 0xFF;
48 return val;
49 }
50
51 public String readString() {
52 int len = readInt();

Callers 12

readStringMethod · 0.95
extractResponseBodyMethod · 0.80
ConstantIntegerMethod · 0.80
readAttributesMethod · 0.80
readIDMethod · 0.80
readExternalMethod · 0.80
readExternalMethod · 0.80
readExternalMethod · 0.80
readExternalMethod · 0.80
readExternalMethod · 0.80
readExternalMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected