OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:chunkedreader
(Results
1 - 18
of
18
) sorted by null
/prebuilts/go/darwin-x86/src/net/http/httputil/
httputil.go
14
// NewChunkedReader returns a new
chunkedReader
that translates the data read from r
16
// The
chunkedReader
returns io.EOF when the final 0-length chunk is read.
/prebuilts/go/linux-x86/src/net/http/httputil/
httputil.go
14
// NewChunkedReader returns a new
chunkedReader
that translates the data read from r
16
// The
chunkedReader
returns io.EOF when the final 0-length chunk is read.
/prebuilts/go/darwin-x86/src/net/http/internal/
chunked.go
23
// NewChunkedReader returns a new
chunkedReader
that translates the data read from r
25
// The
chunkedReader
returns io.EOF when the final 0-length chunk is read.
34
return &
chunkedReader
{r: br}
37
type
chunkedReader
struct {
45
func (cr *
chunkedReader
) beginChunk() {
61
func (cr *
chunkedReader
) chunkHeaderAvailable() bool {
70
func (cr *
chunkedReader
) Read(b []uint8) (n int, err error) {
chunked_test.go
189
// Issue 17355:
ChunkedReader
shouldn't block waiting for more data
/prebuilts/go/linux-x86/src/net/http/internal/
chunked.go
23
// NewChunkedReader returns a new
chunkedReader
that translates the data read from r
25
// The
chunkedReader
returns io.EOF when the final 0-length chunk is read.
34
return &
chunkedReader
{r: br}
37
type
chunkedReader
struct {
45
func (cr *
chunkedReader
) beginChunk() {
61
func (cr *
chunkedReader
) chunkHeaderAvailable() bool {
70
func (cr *
chunkedReader
) Read(b []uint8) (n int, err error) {
chunked_test.go
189
// Issue 17355:
ChunkedReader
shouldn't block waiting for more data
/prebuilts/go/darwin-x86/pkg/darwin_amd64/net/http/
internal.a
37
&