Searched refs:IOVector (Results 1 – 8 of 8) sorted by relevance
27 static IOVector::block_type create_block(const std::string& string) { in create_block()28 return IOVector::block_type(string.begin(), string.end()); in create_block()31 static IOVector::block_type create_block(char value, size_t len) { in create_block()32 auto block = IOVector::block_type(); in create_block()42 static IOVector::block_type copy_block(const T& block) { in copy_block()43 auto copy = IOVector::block_type(); in copy_block()48 TEST(IOVector, empty) { in TEST() argument50 IOVector bc; in TEST()54 TEST(IOVector, move_constructor) { in TEST() argument55 IOVector x; in TEST()[all …]
19 IOVector& IOVector::operator=(IOVector&& move) noexcept { in operator =()29 IOVector::block_type IOVector::clear() { in clear()41 void IOVector::drop_front(IOVector::size_type len) { in drop_front()65 IOVector IOVector::take_front(IOVector::size_type len) { in take_front()74 IOVector res; in take_front()114 void IOVector::trim_front() { in trim_front()131 void IOVector::trim_chain_front() { in trim_chain_front()138 void IOVector::pop_front_block() { in pop_front_block()148 IOVector::block_type IOVector::coalesce() && { in coalesce()190 return const_cast<const IOVector*>(this)->coalesce<>(); in coalesce()[all …]
140 struct IOVector { struct145 IOVector() = default; argument147 explicit IOVector(block_type&& block) { append(std::move(block)); } in IOVector() function149 IOVector(const IOVector& copy) = delete;150 IOVector(IOVector&& move) noexcept : IOVector() { *this = std::move(move); } in IOVector() argument152 IOVector& operator=(const IOVector& copy) = delete; argument153 IOVector& operator=(IOVector&& move) noexcept; argument181 IOVector take_front(size_type len); argument
96 auto block = IOVector::block_type(MAX_PAYLOAD); in Run()206 auto header_block = IOVector::block_type(header_begin, header_end); in Write()226 IOVector read_buffer_;234 IOVector write_buffer_ GUARDED_BY(write_mutex_);236 IOVector incoming_queue_;
64 IOVector input_buffer_;87 IOVector input_buffer_;383 IOVector output_buffer_;
124 IOVector packet_queue;
725 IOVector incoming_payload_;728 IOVector read_data_;
879 IOVector incoming_payload_ GUARDED_BY(read_mutex_);