Home / Function/ findSPLenient() — netty Function Reference

findSPLenient() — netty Function Reference

Architecture documentation for the findSPLenient() function in HttpObjectDecoder.java from the netty codebase.

Function java ProtocolCodecs HTTP calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  bbcc8918_24b9_8ce0_71a4_83114c088052["findSPLenient()"]
  6c551372_1bb2_fe27_3884_c4cc297c86ae["HttpObjectDecoder"]
  bbcc8918_24b9_8ce0_71a4_83114c088052 -->|defined in| 6c551372_1bb2_fe27_3884_c4cc297c86ae
  4c11fc2f_f276_60ad_ba54_107006b2835d["splitInitialLine()"]
  4c11fc2f_f276_60ad_ba54_107006b2835d -->|calls| bbcc8918_24b9_8ce0_71a4_83114c088052
  f7f6d177_2776_b488_b063_2f0ecf0d580b["isSPLenient()"]
  bbcc8918_24b9_8ce0_71a4_83114c088052 -->|calls| f7f6d177_2776_b488_b063_2f0ecf0d580b
  style bbcc8918_24b9_8ce0_71a4_83114c088052 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/http/HttpObjectDecoder.java lines 1097–1104

    private static int findSPLenient(byte[] sb, int offset, int end) {
        for (int result = offset; result < end; ++result) {
            if (isSPLenient(sb[result])) {
                return result;
            }
        }
        return end;
    }

Subdomains

Called By

Frequently Asked Questions

What does findSPLenient() do?
findSPLenient() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/http/HttpObjectDecoder.java.
Where is findSPLenient() defined?
findSPLenient() is defined in codec-http/src/main/java/io/netty/handler/codec/http/HttpObjectDecoder.java at line 1097.
What does findSPLenient() call?
findSPLenient() calls 1 function(s): isSPLenient.
What calls findSPLenient()?
findSPLenient() is called by 1 function(s): splitInitialLine.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free