Home | History | Annotate | Download | only in rpc

Lines Matching defs:capacity_

30   BufferWrapper() : buffer_(nullptr), capacity_(0), end_(0) {}
34 capacity_(capacity),
49 capacity_ = other.capacity_;
61 capacity_ = other.capacity_;
64 other.capacity_ = 0;
80 size_type max_size() const { return capacity_; }
81 size_type capacity() const { return capacity_; }
84 if (size <= capacity_)
87 end_ = capacity_;
95 size_type capacity_;