HomeSort by relevance Sort by last modified time
    Searched refs:IOVector (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/net/quic/
iovector.cc 5 #include "net/quic/iovector.h"
9 IOVector::IOVector() {}
11 IOVector::~IOVector() {}
quic_utils.h 90 // Utility function that returns an IOVector object wrapped around |str|.
91 inline IOVector MakeIOVector(base::StringPiece str) {
92 IOVector iov;
iovector_test.cc 5 #include "net/quic/iovector.h"
25 IOVector iov1;
29 IOVector iov2 = iov1;
39 IOVector iov1;
43 IOVector iov2;
57 IOVector iov;
88 IOVector iov;
117 IOVector iov;
161 IOVector iov;
192 IOVector iov
    [all...]
iovector.h 30 // IOVector is a helper class that makes it easier to work with POSIX vector I/O
36 // IOVector is a bookkeeping object that collects a description of buffers to
41 // buffer blocks are added to the IOVector is important to the client. The
44 // iovector.Append(p0, len0);
46 // iovector.Append(pn, lenn);
47 // int bytes_written = writev(fd, iovector.iovec(), iovector.Size());
49 // iovector.Consume(bytes_written);
52 // used to change the IOVector to only keep track of description of blocks of
55 // IOVector does not have any method to change the iovec entries that i
    [all...]
quic_data_writer.h 51 bool WriteIOVector(const IOVector& data);
quic_packet_creator.h 86 const IOVector& data,
96 const IOVector& data,
quic_packet_generator.h 123 const IOVector& data,
quic_packet_generator.cc 94 const IOVector& data_to_write,
117 IOVector data = data_to_write;
quic_packet_creator_test.cc 155 frames_.push_back(QuicFrame(new QuicStreamFrame(0u, false, 0u, IOVector())));
156 frames_.push_back(QuicFrame(new QuicStreamFrame(0u, true, 0u, IOVector())));
185 frames_.push_back(QuicFrame(new QuicStreamFrame(0u, false, 0u, IOVector())));
436 frames_.push_back(QuicFrame(new QuicStreamFrame(0u, false, 0u, IOVector())));
502 frames_.push_back(QuicFrame(new QuicStreamFrame(0u, false, 0u, IOVector())));
579 size_t consumed = creator_.CreateStreamFrame(1u, IOVector(), 0u, true,
801 IOVector empty_iovector;
    [all...]
quic_packet_creator.cc 215 const IOVector& data,
246 IOVector frame_data;
256 const IOVector& data,
quic_data_stream.cc 163 sequencer()->OnStreamFrame(QuicStreamFrame(id(), fin, 0, IOVector()));
quic_data_writer.cc 108 bool QuicDataWriter::WriteIOVector(const IOVector& data) {
quic_reliable_client_stream_test.cc 101 IOVector iov;
quic_session.h 105 const IOVector& data,
quic_session_test.cc 154 const IOVector& data,
173 return WritevData(id, IOVector(), 0, true, MAY_FEC_PROTECT, NULL);
759 QuicStreamFrame frame(stream->id(), true, kByteOffset, IOVector());
818 IOVector data = MakeIOVector(body);
    [all...]
quic_stream_sequencer.cc 63 IOVector data;
quic_protocol.h 24 #include "net/quic/iovector.h"
610 IOVector data);
615 // Returns a copy of the IOVector |data| as a heap-allocated string.
622 IOVector data;
    [all...]
quic_connection.h 30 #include "net/quic/iovector.h"
250 const IOVector& data,
quic_headers_stream_test.cc 95 QuicConsumedData SaveIov(const IOVector& data) {
quic_stream_sequencer_test.cc 393 IOVector data = MakeIOVector(string(kNewDataLength, '.'));
reliable_quic_stream.cc 8 #include "net/quic/iovector.h"
384 // Fill an IOVector with bytes from the iovec.
385 IOVector data;
quic_packet_generator_test.cc 217 IOVector CreateData(size_t len) {
220 IOVector data;
    [all...]
quic_protocol.cc 121 IOVector data)
696 // Ensure the stream frame's IOVector points to the owned copy of the data.
  /external/chromium_org/net/tools/quic/
quic_spdy_server_stream_test.cc 149 const IOVector& data,
  /external/chromium_org/net/quic/test_tools/
quic_test_utils.h 353 const IOVector& data,

Completed in 1122 milliseconds

1 2