toRunHandle() — netty Function Reference
Architecture documentation for the toRunHandle() function in PoolChunk.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD ad10cf92_7c56_46e4_64cc_cf0d8d87aa22["toRunHandle()"] 271be16e_fb25_9fe6_0749_cf5dd80dd903["PoolChunk"] ad10cf92_7c56_46e4_64cc_cf0d8d87aa22 -->|defined in| 271be16e_fb25_9fe6_0749_cf5dd80dd903 e0491618_1a24_463c_753f_6914e389ffd3["splitLargeRun()"] e0491618_1a24_463c_753f_6914e389ffd3 -->|calls| ad10cf92_7c56_46e4_64cc_cf0d8d87aa22 c0ff4822_02b1_af55_da13_566b386e84c6["collapsePast()"] c0ff4822_02b1_af55_da13_566b386e84c6 -->|calls| ad10cf92_7c56_46e4_64cc_cf0d8d87aa22 9ad10a7c_d7ec_f0b7_f83a_1abef2f04247["collapseNext()"] 9ad10a7c_d7ec_f0b7_f83a_1abef2f04247 -->|calls| ad10cf92_7c56_46e4_64cc_cf0d8d87aa22 style ad10cf92_7c56_46e4_64cc_cf0d8d87aa22 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/PoolChunk.java lines 600–604
private static long toRunHandle(int runOffset, int runPages, int inUsed) {
return (long) runOffset << RUN_OFFSET_SHIFT
| (long) runPages << SIZE_SHIFT
| (long) inUsed << IS_USED_SHIFT;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does toRunHandle() do?
toRunHandle() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/PoolChunk.java.
Where is toRunHandle() defined?
toRunHandle() is defined in buffer/src/main/java/io/netty/buffer/PoolChunk.java at line 600.
What calls toRunHandle()?
toRunHandle() is called by 3 function(s): collapseNext, collapsePast, splitLargeRun.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free