_setIntLE() — netty Function Reference
Architecture documentation for the _setIntLE() function in UnpooledDirectByteBuf.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 540158b8_491d_e508_79a7_39ab31a5eb10["_setIntLE()"] 9d6a7cd0_08a5_9155_3c10_b8a8fd6480e9["UnpooledDirectByteBuf"] 540158b8_491d_e508_79a7_39ab31a5eb10 -->|defined in| 9d6a7cd0_08a5_9155_3c10_b8a8fd6480e9 9227405f_42f2_925d_5a57_145999e5270e["ByteBuf()"] 9227405f_42f2_925d_5a57_145999e5270e -->|calls| 540158b8_491d_e508_79a7_39ab31a5eb10 style 540158b8_491d_e508_79a7_39ab31a5eb10 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java lines 517–524
@Override
protected void _setIntLE(int index, int value) {
if (PlatformDependent.hasVarHandle()) {
VarHandleByteBufferAccess.setIntLE(buffer, index, value);
return;
}
buffer.putInt(index, ByteBufUtil.swapInt(value));
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does _setIntLE() do?
_setIntLE() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java.
Where is _setIntLE() defined?
_setIntLE() is defined in buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java at line 517.
What calls _setIntLE()?
_setIntLE() is called by 1 function(s): ByteBuf.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free