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

Method write

java/org/apache/catalina/connector/OutputBuffer.java:346–354  ·  view source on GitHub ↗

Writes the specified bytes to the output buffer. @param b The byte array @param off The offset in the array @param len The number of bytes to write @throws IOException if an I/O error occurs

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

Source from the content-addressed store, hash-verified

344 * @throws IOException if an I/O error occurs
345 */
346 public void write(byte[] b, int off, int len) throws IOException {
347
348 if (suspended) {
349 return;
350 }
351
352 writeBytes(b, off, len);
353
354 }
355
356
357 /**

Callers

nothing calls this directly

Calls 7

writeBytesMethod · 0.95
isFullMethod · 0.95
flushCharBufferMethod · 0.95
transferMethod · 0.95
appendMethod · 0.95
lengthMethod · 0.80
getStringMethod · 0.65

Tested by

no test coverage detected