MCPcopy Index your code
hub / github.com/apache/tomcat / appendInt

Method appendInt

java/org/apache/coyote/ajp/AjpMessage.java:124–127  ·  view source on GitHub ↗

Add a short integer (2 bytes) to the message. @param val The integer to append

(int val)

Source from the content-addressed store, hash-verified

122 * @param val The integer to append
123 */
124 public void appendInt(int val) {
125 buf[pos++] = (byte) ((val >>> 8) & 0xFF);
126 buf[pos++] = (byte) (val & 0xFF);
127 }
128
129
130 /**

Callers 8

AjpProcessorMethod · 0.95
appendBytesMethod · 0.95
appendByteChunkMethod · 0.95
endMethod · 0.80
appendMethod · 0.80
createForwardMessageMethod · 0.80
AjpProcessorClass · 0.80
prepareResponseMethod · 0.80

Calls

no outgoing calls

Tested by 3

endMethod · 0.64
appendMethod · 0.64
createForwardMessageMethod · 0.64