checkIndex0() — netty Function Reference
Architecture documentation for the checkIndex0() function in AbstractByteBuf.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD c72c9b8b_5754_3820_9aff_a25d6d05c446["checkIndex0()"] bbab270f_457a_3319_83a8_0a0540484666["AbstractByteBuf"] c72c9b8b_5754_3820_9aff_a25d6d05c446 -->|defined in| bbab270f_457a_3319_83a8_0a0540484666 0afa27e0_95ae_86b1_18d2_87db939fb93c["setCharSequence0()"] 0afa27e0_95ae_86b1_18d2_87db939fb93c -->|calls| c72c9b8b_5754_3820_9aff_a25d6d05c446 e9e1f861_5813_ec75_8a61_6b29c497ac9f["ByteBuf()"] e9e1f861_5813_ec75_8a61_6b29c497ac9f -->|calls| c72c9b8b_5754_3820_9aff_a25d6d05c446 bc9f46f3_e305_58ca_4e9e_9b8ccbb764fc["checkIndex()"] bc9f46f3_e305_58ca_4e9e_9b8ccbb764fc -->|calls| c72c9b8b_5754_3820_9aff_a25d6d05c446 9d910c24_147f_215e_8873_ba90d9d6f027["checkRangeBoundsTrustedCapacity()"] c72c9b8b_5754_3820_9aff_a25d6d05c446 -->|calls| 9d910c24_147f_215e_8873_ba90d9d6f027 style c72c9b8b_5754_3820_9aff_a25d6d05c446 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/AbstractByteBuf.java lines 1421–1425
final void checkIndex0(int index, int fieldLength) {
if (checkBounds) {
checkRangeBoundsTrustedCapacity("index", index, fieldLength, capacity());
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does checkIndex0() do?
checkIndex0() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/AbstractByteBuf.java.
Where is checkIndex0() defined?
checkIndex0() is defined in buffer/src/main/java/io/netty/buffer/AbstractByteBuf.java at line 1421.
What does checkIndex0() call?
checkIndex0() calls 1 function(s): checkRangeBoundsTrustedCapacity.
What calls checkIndex0()?
checkIndex0() is called by 3 function(s): ByteBuf, checkIndex, setCharSequence0.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free