Home | History | Annotate | Download | only in io

Lines Matching defs:CodedInputStream

73 // CodedInputStream ==================================================
75 CodedInputStream::~CodedInputStream() {
86 int CodedInputStream::default_recursion_limit_ = 100;
93 void CodedInputStream::BackUpInputToCurrentPosition() {
106 inline void CodedInputStream::RecomputeBufferLimits() {
119 CodedInputStream::Limit CodedInputStream::PushLimit(int byte_limit) {
144 void CodedInputStream::PopLimit(Limit limit) {
155 std::pair<CodedInputStream::Limit, int>
156 CodedInputStream::IncrementRecursionDepthAndPushLimit(int byte_limit) {
160 CodedInputStream::Limit CodedInputStream::ReadLengthAndPushLimit() {
165 bool CodedInputStream::DecrementRecursionDepthAndPopLimit(Limit limit) {
173 bool CodedInputStream::CheckEntireMessageConsumedAndPopLimit(Limit limit) {
179 int CodedInputStream::BytesUntilLimit() const {
186 void CodedInputStream::SetTotalBytesLimit(
201 int CodedInputStream::BytesUntilTotalBytesLimit() const {
206 void CodedInputStream::PrintTotalBytesLimitError() {
210 "warnings), see CodedInputStream::SetTotalBytesLimit() "
214 bool CodedInputStream::Skip(int count) {
251 bool CodedInputStream::GetDirectBufferPointer(const void** data, int* size) {
259 bool CodedInputStream::ReadRaw(void* buffer, int size) {
263 bool CodedInputStream::ReadString(string* buffer, int size) {
268 bool CodedInputStream::ReadStringFallback(string* buffer, int size) {
302 bool CodedInputStream::ReadLittleEndian32Fallback(uint32* value) {
319 bool CodedInputStream::ReadLittleEndian64Fallback(uint64* value) {
381 bool CodedInputStream::ReadVarint32Slow(uint32* value) {
389 int64 CodedInputStream::ReadVarint32Fallback(uint32 first_byte_or_zero) {
411 uint32 CodedInputStream::ReadTagSlow() {
437 uint32 CodedInputStream::ReadTagFallback(uint32 first_byte_or_zero) {
474 bool CodedInputStream::ReadVarint64Slow(uint64* value) {
497 std::pair<uint64, bool> CodedInputStream::ReadVarint64Fallback() {
550 bool CodedInputStream::Refresh() {
574 "CodedInputStream::SetTotalBytesLimit() in "