Go to the source code of this file.
Typedefs | |
typedef struct grpc_byte_buffer_reader | grpc_byte_buffer_reader |
typedef struct grpc_byte_buffer_reader grpc_byte_buffer_reader |
Definition at line 62 of file include/grpc/impl/codegen/byte_buffer.h.
GRPCAPI grpc_byte_buffer* grpc_byte_buffer_copy | ( | grpc_byte_buffer * | bb | ) |
Copies input byte buffer bb.
Increases the reference count of all the source slices. The user is responsible for calling grpc_byte_buffer_destroy over the returned copy.
Definition at line 71 of file byte_buffer.cc.
GRPCAPI void grpc_byte_buffer_destroy | ( | grpc_byte_buffer * | bb | ) |
Destroys byte_buffer deallocating all its memory.
Definition at line 81 of file byte_buffer.cc.
GRPCAPI size_t grpc_byte_buffer_length | ( | grpc_byte_buffer * | bb | ) |
Returns the size of the given byte buffer, in bytes.
Definition at line 92 of file byte_buffer.cc.
GRPCAPI void grpc_byte_buffer_reader_destroy | ( | grpc_byte_buffer_reader * | reader | ) |
Cleanup and destroy reader
Definition at line 45 of file byte_buffer_reader.cc.
GRPCAPI int grpc_byte_buffer_reader_init | ( | grpc_byte_buffer_reader * | reader, |
grpc_byte_buffer * | buffer | ||
) |
Initialize reader to read over buffer. Returns 1 upon success, 0 otherwise.
Definition at line 33 of file byte_buffer_reader.cc.
GRPCAPI int grpc_byte_buffer_reader_next | ( | grpc_byte_buffer_reader * | reader, |
grpc_slice * | slice | ||
) |
Updates slice with the next piece of data from from reader and returns
Definition at line 66 of file byte_buffer_reader.cc.
GRPCAPI int grpc_byte_buffer_reader_peek | ( | grpc_byte_buffer_reader * | reader, |
grpc_slice ** | slice | ||
) |
EXPERIMENTAL API - This function may be removed and changed, in the future.
Updates slice with the next piece of data from from reader and returns
NOTE: Do not use this function unless the caller can guarantee that the underlying grpc_byte_buffer outlasts the use of the slice. This is only safe when the underlying grpc_byte_buffer remains immutable while slice is being accessed.
Definition at line 49 of file byte_buffer_reader.cc.
GRPCAPI grpc_slice grpc_byte_buffer_reader_readall | ( | grpc_byte_buffer_reader * | reader | ) |
Merge all data from reader into single slice
Definition at line 84 of file byte_buffer_reader.cc.
GRPCAPI grpc_byte_buffer* grpc_raw_byte_buffer_create | ( | grpc_slice * | slices, |
size_t | nslices | ||
) |
Returns a RAW byte buffer instance over the given slices (up to nslices).
Increases the reference count for all slices processed. The user is responsible for invoking grpc_byte_buffer_destroy on the returned instance.
Definition at line 34 of file byte_buffer.cc.
GRPCAPI grpc_byte_buffer* grpc_raw_byte_buffer_from_reader | ( | grpc_byte_buffer_reader * | reader | ) |
Returns a RAW byte buffer instance from the output of reader.
Definition at line 56 of file byte_buffer.cc.
GRPCAPI grpc_byte_buffer* grpc_raw_compressed_byte_buffer_create | ( | grpc_slice * | slices, |
size_t | nslices, | ||
grpc_compression_algorithm | compression | ||
) |
Returns a compressed RAW byte buffer instance over the given slices (up to nslices). The compression argument defines the compression algorithm used to generate the data in slices.
Increases the reference count for all slices processed. The user is responsible for invoking grpc_byte_buffer_destroy on the returned instance.
Definition at line 40 of file byte_buffer.cc.