makeBuf() — netty Function Reference
Architecture documentation for the makeBuf() function in HpackHuffmanTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 6e26cc30_14b9_4e43_25df_147213d8cca3["makeBuf()"] 0e9c37ed_3d42_0ea4_35fa_9ba9ae495d19["HpackHuffmanTest"] 6e26cc30_14b9_4e43_25df_147213d8cca3 -->|defined in| 0e9c37ed_3d42_0ea4_35fa_9ba9ae495d19 9bc1d118_5085_5e75_e116_c5d8b0b8c47a["testDecodeExtraPadding()"] 9bc1d118_5085_5e75_e116_c5d8b0b8c47a -->|calls| 6e26cc30_14b9_4e43_25df_147213d8cca3 77bd92e1_043b_1cb8_9294_3691fa88f22c["testDecodeExtraPadding1byte()"] 77bd92e1_043b_1cb8_9294_3691fa88f22c -->|calls| 6e26cc30_14b9_4e43_25df_147213d8cca3 edb63c67_69ce_377c_ae0b_32ffecd27d8f["testDecodeExtraPadding2byte()"] edb63c67_69ce_377c_ae0b_32ffecd27d8f -->|calls| 6e26cc30_14b9_4e43_25df_147213d8cca3 88e25c47_e8e7_f7e8_97d6_c2dd767907f7["testDecodeExtraPadding3byte()"] 88e25c47_e8e7_f7e8_97d6_c2dd767907f7 -->|calls| 6e26cc30_14b9_4e43_25df_147213d8cca3 d00d6ab4_4446_5f9d_7be1_e9ddd334c015["testDecodeExtraPadding4byte()"] d00d6ab4_4446_5f9d_7be1_e9ddd334c015 -->|calls| 6e26cc30_14b9_4e43_25df_147213d8cca3 56194613_52c3_cadc_7e65_890b04501bcb["testDecodeExtraPadding29bit()"] 56194613_52c3_cadc_7e65_890b04501bcb -->|calls| 6e26cc30_14b9_4e43_25df_147213d8cca3 7607772d_825e_7325_1653_241e178dd62a["testDecodePartialSymbol()"] 7607772d_825e_7325_1653_241e178dd62a -->|calls| 6e26cc30_14b9_4e43_25df_147213d8cca3 style 6e26cc30_14b9_4e43_25df_147213d8cca3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/HpackHuffmanTest.java lines 200–206
private static byte[] makeBuf(int ... bytes) {
byte[] buf = new byte[bytes.length];
for (int i = 0; i < buf.length; i++) {
buf[i] = (byte) bytes[i];
}
return buf;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does makeBuf() do?
makeBuf() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackHuffmanTest.java.
Where is makeBuf() defined?
makeBuf() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackHuffmanTest.java at line 200.
What calls makeBuf()?
makeBuf() is called by 7 function(s): testDecodeExtraPadding, testDecodeExtraPadding1byte, testDecodeExtraPadding29bit, testDecodeExtraPadding2byte, testDecodeExtraPadding3byte, testDecodeExtraPadding4byte, testDecodePartialSymbol.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free