Home | History | Annotate | Download | only in http

Lines Matching full:chunk

55 //   Chunked-Body    = *chunk
56 // last-chunk
59 // chunk = chunk-size [ chunk-extension ] CRLF
60 // chunk-data CRLF
61 // chunk-size = 1*HEX
62 // last-chunk = 1*("0") [ chunk-extension ] CRLF
64 // chunk-extension = *( ";" chunk-ext-name [ "=" chunk-ext-val ] )
65 // chunk-ext-name = token
66 // chunk-ext-val = token | quoted-string
67 // chunk-data = chunk-size(OCTET)
70 // The chunk-size field is a string of hex digits indicating the size of the
71 // chunk. The chunked encoding is ended by any chunk whose size is zero,
87 // Called to filter out the chunk markers from buf and to check for end-of-
88 // file. This method modifies |buf| inline if necessary to remove chunk
95 // Scans |buf| for the next chunk delimiter. This method returns the number
97 // value for the next chunk size.
101 // |start| is a string of type "chunk-size" (hex string).
105 // Indicates the number of bytes remaining for the current chunk.
108 // A small buffer used to store a partial chunk marker.
111 // True if waiting for the terminal CRLF of a chunk's data.
114 // Set to true when FilterBuf encounters the last-chunk.