nameOnlyMatch() — netty Function Reference
Architecture documentation for the nameOnlyMatch() function in QpackEncoderDynamicTableTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 75b01273_84b0_067c_0c87_1ba04445334b["nameOnlyMatch()"] 0b57921e_fd41_0d68_9a74_4964c2403fe3["QpackEncoderDynamicTableTest"] 75b01273_84b0_067c_0c87_1ba04445334b -->|defined in| 0b57921e_fd41_0d68_9a74_4964c2403fe3 00fa8ebc_5c0b_525b_36a9_44b6004c43b9["addValidateAndAckHeader()"] 75b01273_84b0_067c_0c87_1ba04445334b -->|calls| 00fa8ebc_5c0b_525b_36a9_44b6004c43b9 19ef1a50_89d3_488d_cc4d_74c683f645c1["getEntryIndex()"] 75b01273_84b0_067c_0c87_1ba04445334b -->|calls| 19ef1a50_89d3_488d_cc4d_74c683f645c1 style 75b01273_84b0_067c_0c87_1ba04445334b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/test/java/io/netty/handler/codec/http3/QpackEncoderDynamicTableTest.java lines 97–106
@Test
public void nameOnlyMatch() throws Exception {
final QpackEncoderDynamicTable table = newDynamicTable(128);
addValidateAndAckHeader(table, fooBarHeader);
final int lastIdx = addValidateAndAckHeader(table, fooBar2Header);
final int idx = table.getEntryIndex("foo", "baz");
assertThat("Unexpected index.", idx, lessThan(0));
assertThat("Unexpected index.", idx, is(-lastIdx - 1));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does nameOnlyMatch() do?
nameOnlyMatch() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/QpackEncoderDynamicTableTest.java.
Where is nameOnlyMatch() defined?
nameOnlyMatch() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/QpackEncoderDynamicTableTest.java at line 97.
What does nameOnlyMatch() call?
nameOnlyMatch() calls 2 function(s): addValidateAndAckHeader, getEntryIndex.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free