memoryAddress() — netty Function Reference
Architecture documentation for the memoryAddress() function in PooledDirectByteBuf.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 55e9c11c_c3c1_40a0_987f_3e5fcb0af272["memoryAddress()"] 0c356342_2e64_41e8_80a2_1d1923dc7709["PooledDirectByteBuf"] 55e9c11c_c3c1_40a0_987f_3e5fcb0af272 -->|defined in| 0c356342_2e64_41e8_80a2_1d1923dc7709 3f1c77ec_7246_96e5_d09a_0d12fa41bdaf["_memoryAddress()"] 3f1c77ec_7246_96e5_d09a_0d12fa41bdaf -->|calls| 55e9c11c_c3c1_40a0_987f_3e5fcb0af272 7f6fc2b2_0bf0_36a3_8734_cebce4b63239["hasMemoryAddress()"] 55e9c11c_c3c1_40a0_987f_3e5fcb0af272 -->|calls| 7f6fc2b2_0bf0_36a3_8734_cebce4b63239 style 55e9c11c_c3c1_40a0_987f_3e5fcb0af272 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/PooledDirectByteBuf.java lines 309–316
@Override
public long memoryAddress() {
ensureAccessible();
if (!hasMemoryAddress()) {
throw new UnsupportedOperationException();
}
return chunk.cleanable.memoryAddress() + offset;
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does memoryAddress() do?
memoryAddress() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/PooledDirectByteBuf.java.
Where is memoryAddress() defined?
memoryAddress() is defined in buffer/src/main/java/io/netty/buffer/PooledDirectByteBuf.java at line 309.
What does memoryAddress() call?
memoryAddress() calls 1 function(s): hasMemoryAddress.
What calls memoryAddress()?
memoryAddress() is called by 1 function(s): _memoryAddress.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free