Home
last modified time | relevance | path

Searched refs:recursionDepth (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/main/java/com/google/protobuf/nano/
DCodedInputByteBufferNano.java205 if (recursionDepth >= recursionLimit) { in readGroup()
208 ++recursionDepth; in readGroup()
212 --recursionDepth; in readGroup()
218 if (recursionDepth >= recursionLimit) { in readMessage()
222 ++recursionDepth; in readMessage()
225 --recursionDepth; in readMessage()
408 private int recursionDepth; field in CodedInputByteBufferNano
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DCodedInputStream.java422 if (recursionDepth >= recursionLimit) { in readGroup()
425 ++recursionDepth; in readGroup()
429 --recursionDepth; in readGroup()
439 if (recursionDepth >= recursionLimit) { in readGroup()
442 ++recursionDepth; in readGroup()
446 --recursionDepth; in readGroup()
474 if (recursionDepth >= recursionLimit) { in readMessage()
478 ++recursionDepth; in readMessage()
481 --recursionDepth; in readMessage()
492 if (recursionDepth >= recursionLimit) { in readMessage()
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/
DGPBCodedInputStream.m442 if (state_.recursionDepth >= kDefaultRecursionLimit) {
445 ++state_.recursionDepth;
449 --state_.recursionDepth;
454 if (state_.recursionDepth >= kDefaultRecursionLimit) {
457 ++state_.recursionDepth;
461 --state_.recursionDepth;
467 if (state_.recursionDepth >= kDefaultRecursionLimit) {
471 ++state_.recursionDepth;
474 --state_.recursionDepth;
483 if (state_.recursionDepth >= kDefaultRecursionLimit) {
[all …]
DGPBCodedInputStream_PackagePrivate.h53 NSUInteger recursionDepth; member
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/
DCodedInputStream.cs112 private int recursionDepth = 0; field in Google.Protobuf.CodedInputStream
430 recursionDepth++; in SkipGroup()
431 if (recursionDepth >= recursionLimit) in SkipGroup()
458 recursionDepth--; in SkipGroup()
568 if (recursionDepth >= recursionLimit) in ReadMessage()
573 ++recursionDepth; in ReadMessage()
581 --recursionDepth; in ReadMessage()