Searched refs:oldLimit (Results 1 – 15 of 15) sorted by relevance
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | CodedInputStream.java | 391 final int oldLimit = recursionLimit; in setRecursionLimit() local 393 return oldLimit; in setRecursionLimit() 414 final int oldLimit = sizeLimit; in setSizeLimit() local 416 return oldLimit; in setSizeLimit() 475 public abstract void popLimit(final int oldLimit); in popLimit() argument 870 final int oldLimit = pushLimit(length); in readMessage() local 875 popLimit(oldLimit); in readMessage() 886 final int oldLimit = pushLimit(length); in readMessage() local 891 popLimit(oldLimit); in readMessage() 1187 final int oldLimit = currentLimit; in pushLimit() local [all …]
|
D | MapEntryLite.java | 202 final int oldLimit = input.pushLimit(length); in parseInto() local 223 input.popLimit(oldLimit); in parseInto()
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
D | SegmentedBufferHelper.cs | 120 int oldLimit = state.currentLimit; in PushLimit() 121 if (byteLimit > oldLimit) in PushLimit() 129 return oldLimit; in PushLimit() 135 public static void PopLimit(ref ParserInternalState state, int oldLimit) in PopLimit() 137 state.currentLimit = oldLimit; in PopLimit()
|
D | ParsingPrimitivesMessages.cs | 122 int oldLimit = SegmentedBufferHelper.PushLimit(ref ctx.state, length); in ReadMessage() 134 SegmentedBufferHelper.PopLimit(ref ctx.state, oldLimit); in ReadMessage()
|
D | CodedInputStream.cs | 622 internal void PopLimit(int oldLimit) in PopLimit() argument 624 SegmentedBufferHelper.PopLimit(ref state, oldLimit); in PopLimit()
|
D | FieldCodec.cs | 597 int oldLimit = SegmentedBufferHelper.PushLimit(ref ctx.state, length); 614 SegmentedBufferHelper.PopLimit(ref ctx.state, oldLimit);
|
/third_party/protobuf/objectivec/ |
D | GPBCodedInputStream.m | 280 size_t oldLimit = state->currentLimit; 281 if (byteLimit > oldLimit) { 285 return oldLimit; 289 size_t oldLimit) { 290 state->currentLimit = oldLimit; 395 - (void)popLimit:(size_t)oldLimit { 396 GPBCodedInputStreamPopLimit(&state_, oldLimit); 460 size_t oldLimit = GPBCodedInputStreamPushLimit(&state_, length); 465 GPBCodedInputStreamPopLimit(&state_, oldLimit); 474 size_t oldLimit = GPBCodedInputStreamPushLimit(&state_, length); [all …]
|
D | GPBCodedInputStream.h | 239 - (void)popLimit:(size_t)oldLimit;
|
D | GPBCodedInputStream_PackagePrivate.h | 106 size_t oldLimit);
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
D | DiscardUnknownFieldsTest.java | 84 int oldLimit = input.pushLimit(messageSize); in assertReuseCodedInputStreamPreserve() local 87 input.popLimit(oldLimit); in assertReuseCodedInputStreamPreserve()
|
D | MapTest.java | 1349 int oldLimit = input.pushLimit(length); in testDeterministicSerialziation() local 1366 input.popLimit(oldLimit); in testDeterministicSerialziation()
|
/third_party/node/test/parallel/ |
D | test-vm-basic.js | 253 const oldLimit = Error.stackTraceLimit; constant 349 Error.stackTraceLimit = oldLimit;
|
/third_party/protobuf/csharp/src/Google.Protobuf/Collections/ |
D | RepeatedField.cs | 129 int oldLimit = SegmentedBufferHelper.PushLimit(ref ctx.state, length); in AddEntriesFrom() 156 SegmentedBufferHelper.PopLimit(ref ctx.state, oldLimit); in AddEntriesFrom()
|
/third_party/skia/src/core/ |
D | SkResourceCache.cpp | 420 size_t oldLimit = fSingleAllocationByteLimit; in setSingleAllocationByteLimit() local 422 return oldLimit; in setSingleAllocationByteLimit()
|
/third_party/sqlite/src/ |
D | sqlite3.c | 176053 int oldLimit; 176086 oldLimit = db->aLimit[limitId]; 176095 return oldLimit; /* IMP: R-53341-35419 */
|