Home / Function/ _setLongLE() — netty Function Reference

_setLongLE() — netty Function Reference

Architecture documentation for the _setLongLE() function in UnpooledDirectByteBuf.java from the netty codebase.

Function java Buffer Search called by 1

Entity Profile

Dependency Diagram

graph TD
  a4b7919e_dc2a_0841_0ca5_be94b4a2e14a["_setLongLE()"]
  9d6a7cd0_08a5_9155_3c10_b8a8fd6480e9["UnpooledDirectByteBuf"]
  a4b7919e_dc2a_0841_0ca5_be94b4a2e14a -->|defined in| 9d6a7cd0_08a5_9155_3c10_b8a8fd6480e9
  9227405f_42f2_925d_5a57_145999e5270e["ByteBuf()"]
  9227405f_42f2_925d_5a57_145999e5270e -->|calls| a4b7919e_dc2a_0841_0ca5_be94b4a2e14a
  style a4b7919e_dc2a_0841_0ca5_be94b4a2e14a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java lines 549–556

    @Override
    protected void _setLongLE(int index, long value) {
        if (PlatformDependent.hasVarHandle()) {
            VarHandleByteBufferAccess.setLongLE(buffer, index, value);
            return;
        }
        buffer.putLong(index, ByteBufUtil.swapLong(value));
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does _setLongLE() do?
_setLongLE() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java.
Where is _setLongLE() defined?
_setLongLE() is defined in buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java at line 549.
What calls _setLongLE()?
_setLongLE() 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