removeNameValueEntry() — netty Function Reference
Architecture documentation for the removeNameValueEntry() function in HpackEncoder.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 7f12f570_9161_9af4_30ec_582298bb4077["removeNameValueEntry()"] 616b4418_6852_a9a9_188d_063a8768b35a["HpackEncoder"] 7f12f570_9161_9af4_30ec_582298bb4077 -->|defined in| 616b4418_6852_a9a9_188d_063a8768b35a ce02a734_8c23_6e42_44da_4abd3da5e2a8["remove()"] ce02a734_8c23_6e42_44da_4abd3da5e2a8 -->|calls| 7f12f570_9161_9af4_30ec_582298bb4077 af14f309_4d63_c743_d49f_624cf3fa87a5["bucket()"] 7f12f570_9161_9af4_30ec_582298bb4077 -->|calls| af14f309_4d63_c743_d49f_624cf3fa87a5 style 7f12f570_9161_9af4_30ec_582298bb4077 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/HpackEncoder.java lines 460–471
private void removeNameValueEntry(NameValueEntry eldest) {
int bucket = bucket(eldest.hash);
NameValueEntry e = nameValueEntries[bucket];
if (e == eldest) {
nameValueEntries[bucket] = eldest.next;
} else {
while (e.next != eldest) {
e = e.next;
}
e.next = eldest.next;
}
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does removeNameValueEntry() do?
removeNameValueEntry() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HpackEncoder.java.
Where is removeNameValueEntry() defined?
removeNameValueEntry() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HpackEncoder.java at line 460.
What does removeNameValueEntry() call?
removeNameValueEntry() calls 1 function(s): bucket.
What calls removeNameValueEntry()?
removeNameValueEntry() is called by 1 function(s): remove.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free