_getLongLE() — netty Function Reference
Architecture documentation for the _getLongLE() function in UnpooledDirectByteBuf.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 9862168d_8247_8be6_6f39_9a38f692e665["_getLongLE()"] 9d6a7cd0_08a5_9155_3c10_b8a8fd6480e9["UnpooledDirectByteBuf"] 9862168d_8247_8be6_6f39_9a38f692e665 -->|defined in| 9d6a7cd0_08a5_9155_3c10_b8a8fd6480e9 886c3f0f_a6d9_3cb4_2554_d226d502b4a9["getLongLE()"] 886c3f0f_a6d9_3cb4_2554_d226d502b4a9 -->|calls| 9862168d_8247_8be6_6f39_9a38f692e665 886c3f0f_a6d9_3cb4_2554_d226d502b4a9["getLongLE()"] 9862168d_8247_8be6_6f39_9a38f692e665 -->|calls| 886c3f0f_a6d9_3cb4_2554_d226d502b4a9 d4b82886_6cf5_1dc0_567c_5348ed637626["getLong()"] 9862168d_8247_8be6_6f39_9a38f692e665 -->|calls| d4b82886_6cf5_1dc0_567c_5348ed637626 style 9862168d_8247_8be6_6f39_9a38f692e665 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java lines 344–350
@Override
protected long _getLongLE(int index) {
if (PlatformDependent.hasVarHandle()) {
return VarHandleByteBufferAccess.getLongLE(buffer, index);
}
return ByteBufUtil.swapLong(buffer.getLong(index));
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does _getLongLE() do?
_getLongLE() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java.
Where is _getLongLE() defined?
_getLongLE() is defined in buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java at line 344.
What does _getLongLE() call?
_getLongLE() calls 2 function(s): getLong, getLongLE.
What calls _getLongLE()?
_getLongLE() is called by 1 function(s): getLongLE.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free