Home / Function/ appendHexDumpRowPrefix() — netty Function Reference

appendHexDumpRowPrefix() — netty Function Reference

Architecture documentation for the appendHexDumpRowPrefix() function in ByteBufUtil.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  a8012bfa_2295_8d6a_cfa9_95215a2aeea8["appendHexDumpRowPrefix()"]
  9bc5a946_7621_d763_22b7_e0076aadaab8["HexUtil"]
  a8012bfa_2295_8d6a_cfa9_95215a2aeea8 -->|defined in| 9bc5a946_7621_d763_22b7_e0076aadaab8
  d1e0cafb_0b31_a92a_454a_9ab6c7a82f80["appendPrettyHexDump()"]
  d1e0cafb_0b31_a92a_454a_9ab6c7a82f80 -->|calls| a8012bfa_2295_8d6a_cfa9_95215a2aeea8
  style a8012bfa_2295_8d6a_cfa9_95215a2aeea8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buffer/src/main/java/io/netty/buffer/ByteBufUtil.java lines 1690–1699

        private static void appendHexDumpRowPrefix(StringBuilder dump, int row, int rowStartIndex) {
            if (row < HEXDUMP_ROWPREFIXES.length) {
                dump.append(HEXDUMP_ROWPREFIXES[row]);
            } else {
                dump.append(NEWLINE);
                dump.append(Long.toHexString(rowStartIndex & 0xFFFFFFFFL | 0x100000000L));
                dump.setCharAt(dump.length() - 9, '|');
                dump.append('|');
            }
        }

Domain

Subdomains

Frequently Asked Questions

What does appendHexDumpRowPrefix() do?
appendHexDumpRowPrefix() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/ByteBufUtil.java.
Where is appendHexDumpRowPrefix() defined?
appendHexDumpRowPrefix() is defined in buffer/src/main/java/io/netty/buffer/ByteBufUtil.java at line 1690.
What calls appendHexDumpRowPrefix()?
appendHexDumpRowPrefix() is called by 1 function(s): appendPrettyHexDump.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free