Searched defs:BytesRemaining (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/components/cronet/android/
H A Dwrapped_channel_upload_element_reader.cc32 uint64 WrappedChannelElementReader::BytesRemaining() const { function in class:cronet::WrappedChannelElementReader
/external/chromium_org/content/browser/fileapi/
H A Dupload_file_system_file_element_reader.cc72 uint64 UploadFileSystemFileElementReader::BytesRemaining() const { function in class:content::UploadFileSystemFileElementReader
84 std::min(BytesRemaining(), static_cast<uint64>(buf_length));
/external/chromium_org/net/base/
H A Dupload_bytes_element_reader.cc38 uint64 UploadBytesElementReader::BytesRemaining() const { function in class:net::UploadBytesElementReader
52 std::min(BytesRemaining(), static_cast<uint64>(buf_length));
H A Dio_buffer.cc73 int DrainableIOBuffer::BytesRemaining() const { function in class:net::DrainableIOBuffer
H A Dupload_file_element_reader.cc71 uint64 UploadFileElementReader::BytesRemaining() const { function in class:net::UploadFileElementReader
81 std::min(BytesRemaining(), static_cast<uint64>(buf_length));
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachVMRegion.h31 mach_vm_address_t BytesRemaining(mach_vm_address_t addr) const function in class:MachVMRegion
/external/chromium_org/net/quic/
H A Dquic_data_reader.cc153 size_t QuicDataReader::BytesRemaining() const { function in class:net::QuicDataReader
/external/chromium_org/net/http/
H A Dhttp_stream_parser.cc88 // // capacity() == 1024. size() == BytesRemaining() == BytesConsumed() == 0.
94 // // size() == BytesRemaining() == bytes_read. data() is unaffected.
96 // while (buf->BytesRemaining() > 0) {
99 // int bytes_written = Write(buf, buf->BytesRemaining());
102 // // BytesRemaining() == 0. BytesConsumed() == size().
107 // // size() == BytesRemaining() == BytesConsumed() == 0.
127 int BytesRemaining() const { function in class:net::HttpStreamParser::SeekableIOBuffer
424 int bytes_remaining = request_headers_->BytesRemaining();
452 if (request_headers_->BytesRemaining() > 0) {
477 if (request_body_send_buf_->BytesRemaining() >
[all...]
/external/llvm/lib/Support/
H A Draw_ostream.cpp316 size_t BytesRemaining = Size - BytesToWrite; local
317 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) {
319 return write(Ptr + BytesToWrite, BytesRemaining);
321 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);

Completed in 4349 milliseconds