getIndexInsensitive() — netty Function Reference
Architecture documentation for the getIndexInsensitive() function in HpackStaticTable.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD cd3fdae1_cab1_fb99_e265_e31a1abdc0ce["getIndexInsensitive()"] 91d93899_a88f_0dfd_4a8f_513779e69441["HpackStaticTable"] cd3fdae1_cab1_fb99_e265_e31a1abdc0ce -->|defined in| 91d93899_a88f_0dfd_4a8f_513779e69441 dc8e3a71_b5f2_9f33_c378_bcda1c8ff70b["headerBucket()"] cd3fdae1_cab1_fb99_e265_e31a1abdc0ce -->|calls| dc8e3a71_b5f2_9f33_c378_bcda1c8ff70b style cd3fdae1_cab1_fb99_e265_e31a1abdc0ce fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/HpackStaticTable.java lines 217–231
static int getIndexInsensitive(CharSequence name, CharSequence value) {
if (value.length() == 0) {
HeaderNameIndex entry = getEntry(name);
return entry == null || !entry.emptyValue ? NOT_FOUND : entry.index;
}
int bucket = headerBucket(value);
HeaderIndex header = HEADERS_WITH_NON_EMPTY_VALUES[bucket];
if (header == null) {
return NOT_FOUND;
}
if (equalsVariableTime(header.name, name) && equalsVariableTime(header.value, value)) {
return header.index;
}
return NOT_FOUND;
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does getIndexInsensitive() do?
getIndexInsensitive() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HpackStaticTable.java.
Where is getIndexInsensitive() defined?
getIndexInsensitive() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HpackStaticTable.java at line 217.
What does getIndexInsensitive() call?
getIndexInsensitive() calls 1 function(s): headerBucket.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free