recordLeakNonRefCountingOperation() — netty Function Reference
Architecture documentation for the recordLeakNonRefCountingOperation() function in AdvancedLeakAwareByteBuf.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 99037518_9631_68f6_6e1c_f2ef030091e9["recordLeakNonRefCountingOperation()"] 202ee4c1_c235_e70f_24a3_9900f0bd91da["AdvancedLeakAwareByteBuf"] 99037518_9631_68f6_6e1c_f2ef030091e9 -->|defined in| 202ee4c1_c235_e70f_24a3_9900f0bd91da 0f92c079_d3aa_ff5c_bef8_c0c50c4218f8["ByteBuf()"] 0f92c079_d3aa_ff5c_bef8_c0c50c4218f8 -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 5a560c9e_1ebd_d950_64a9_98c31fee0941["ensureWritable()"] 5a560c9e_1ebd_d950_64a9_98c31fee0941 -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 da70f10d_0d17_6a87_4568_96f009b159f8["getBoolean()"] da70f10d_0d17_6a87_4568_96f009b159f8 -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 bedcf900_0e2e_2e37_ba60_9f5cbf0da6f1["getByte()"] bedcf900_0e2e_2e37_ba60_9f5cbf0da6f1 -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 e8bf5d40_5918_2a5e_82ea_66d833e661dc["getUnsignedByte()"] e8bf5d40_5918_2a5e_82ea_66d833e661dc -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 97097d3a_6869_d35a_39ea_a1695a411f23["getShort()"] 97097d3a_6869_d35a_39ea_a1695a411f23 -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 1e39ea91_84ab_3d6c_9423_1f7d2dae96a7["getUnsignedShort()"] 1e39ea91_84ab_3d6c_9423_1f7d2dae96a7 -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 bb7f93d0_afea_bcc9_87f1_3af0990a6eac["getMedium()"] bb7f93d0_afea_bcc9_87f1_3af0990a6eac -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 3e3f235c_1ae8_c772_4203_b401ae20b0b6["getUnsignedMedium()"] 3e3f235c_1ae8_c772_4203_b401ae20b0b6 -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 e69a14de_69a5_dd21_8446_28c24f29602a["getInt()"] e69a14de_69a5_dd21_8446_28c24f29602a -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 9d8ba73d_f695_4d48_aef4_2110a30facda["getUnsignedInt()"] 9d8ba73d_f695_4d48_aef4_2110a30facda -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 a7ecfdc8_a6e4_e45b_7a8c_7323240f6999["getLong()"] a7ecfdc8_a6e4_e45b_7a8c_7323240f6999 -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 d70f6f23_d299_7969_a80e_051e9e50b4d3["getChar()"] d70f6f23_d299_7969_a80e_051e9e50b4d3 -->|calls| 99037518_9631_68f6_6e1c_f2ef030091e9 style 99037518_9631_68f6_6e1c_f2ef030091e9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/AdvancedLeakAwareByteBuf.java lines 63–67
static void recordLeakNonRefCountingOperation(ResourceLeakTracker<ByteBuf> leak) {
if (!ACQUIRE_AND_RELEASE_ONLY) {
leak.record();
}
}
Domain
Subdomains
Called By
- ByteBuf()
- ByteBuffer()
- CharSequence()
- String()
- bytesBefore()
- ensureWritable()
- forEachByte()
- forEachByteDesc()
- getBoolean()
- getByte()
- getBytes()
- getChar()
- getDouble()
- getFloat()
- getInt()
- getIntLE()
- getLong()
- getLongLE()
- getMedium()
- getMediumLE()
- getShort()
- getShortLE()
- getUnsignedByte()
- getUnsignedInt()
- getUnsignedIntLE()
- getUnsignedMedium()
- getUnsignedMediumLE()
- getUnsignedShort()
- getUnsignedShortLE()
- indexOf()
- nioBufferCount()
- nioBuffers()
- readBoolean()
- readByte()
- readBytes()
- readChar()
- readDouble()
- readFloat()
- readInt()
- readIntLE()
- readLong()
- readLongLE()
- readMedium()
- readMediumLE()
- readShort()
- readShortLE()
- readUnsignedByte()
- readUnsignedInt()
- readUnsignedIntLE()
- readUnsignedMedium()
- readUnsignedMediumLE()
- readUnsignedShort()
- readUnsignedShortLE()
- setBytes()
- setCharSequence()
- writeBytes()
- writeCharSequence()
Source
Frequently Asked Questions
What does recordLeakNonRefCountingOperation() do?
recordLeakNonRefCountingOperation() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/AdvancedLeakAwareByteBuf.java.
Where is recordLeakNonRefCountingOperation() defined?
recordLeakNonRefCountingOperation() is defined in buffer/src/main/java/io/netty/buffer/AdvancedLeakAwareByteBuf.java at line 63.
What calls recordLeakNonRefCountingOperation()?
recordLeakNonRefCountingOperation() is called by 57 function(s): ByteBuf, ByteBuffer, CharSequence, String, bytesBefore, ensureWritable, forEachByte, forEachByteDesc, and 49 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free