HeaderNameIndex() — netty Function Reference
Architecture documentation for the HeaderNameIndex() function in HpackStaticTable.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b228ad81_5997_7059_9679_15709a9d369b["HeaderNameIndex()"] 91d93899_a88f_0dfd_4a8f_513779e69441["HpackStaticTable"] b228ad81_5997_7059_9679_15709a9d369b -->|defined in| 91d93899_a88f_0dfd_4a8f_513779e69441 2960401a_7eed_c056_50ce_ba46bc139010["HeaderNameIndex()"] 2960401a_7eed_c056_50ce_ba46bc139010 -->|calls| b228ad81_5997_7059_9679_15709a9d369b cfaabf0d_cd73_1f85_5a69_c6f4a07554e4["headerNameBucket()"] b228ad81_5997_7059_9679_15709a9d369b -->|calls| cfaabf0d_cd73_1f85_5a69_c6f4a07554e4 style b228ad81_5997_7059_9679_15709a9d369b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/HpackStaticTable.java lines 233–240
private static HeaderNameIndex getEntry(CharSequence name) {
int bucket = headerNameBucket(name);
HeaderNameIndex entry = HEADER_NAMES[bucket];
if (entry == null) {
return null;
}
return equalsVariableTime(entry.name, name) ? entry : null;
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does HeaderNameIndex() do?
HeaderNameIndex() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HpackStaticTable.java.
Where is HeaderNameIndex() defined?
HeaderNameIndex() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HpackStaticTable.java at line 233.
What does HeaderNameIndex() call?
HeaderNameIndex() calls 1 function(s): headerNameBucket.
What calls HeaderNameIndex()?
HeaderNameIndex() is called by 1 function(s): HeaderNameIndex.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free