class CompositeHTTPBodyStream
Defined at line 98 of file ../../third_party/crashpad/src/util/net/http_body.h
An implementation of HTTPBodyStream that combines an array of
several other HTTPBodyStream objects into a single, unified stream.
Public Methods
void CompositeHTTPBodyStream (const PartsList & parts)
Creates a stream from an array of other stream parts.
Parameters
parts [in] A vector of HTTPBodyStream objects, of which this object takes ownership, that will be represented as a single unified stream. Callers should not mutate the stream objects after passing them to an instance of this class.
void CompositeHTTPBodyStream (const CompositeHTTPBodyStream & )
Defined at line 110 of file ../../third_party/crashpad/src/util/net/http_body.h
CompositeHTTPBodyStream & operator= (const CompositeHTTPBodyStream & )
Defined at line 111 of file ../../third_party/crashpad/src/util/net/http_body.h
void ~CompositeHTTPBodyStream ()
FileOperationResult GetBytesBuffer (uint8_t * buffer, size_t max_len)
HTTPBodyStream: