Home
last modified time | relevance | path

Searched refs:oldLimit (Results 1 – 15 of 15) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DCodedInputStream.java391 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 …]
DMapEntryLite.java202 final int oldLimit = input.pushLimit(length); in parseInto() local
223 input.popLimit(oldLimit); in parseInto()
/third_party/protobuf/csharp/src/Google.Protobuf/
DSegmentedBufferHelper.cs120 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()
DParsingPrimitivesMessages.cs122 int oldLimit = SegmentedBufferHelper.PushLimit(ref ctx.state, length); in ReadMessage()
134 SegmentedBufferHelper.PopLimit(ref ctx.state, oldLimit); in ReadMessage()
DCodedInputStream.cs622 internal void PopLimit(int oldLimit) in PopLimit() argument
624 SegmentedBufferHelper.PopLimit(ref state, oldLimit); in PopLimit()
DFieldCodec.cs597 int oldLimit = SegmentedBufferHelper.PushLimit(ref ctx.state, length);
614 SegmentedBufferHelper.PopLimit(ref ctx.state, oldLimit);
/third_party/protobuf/objectivec/
DGPBCodedInputStream.m280 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 …]
DGPBCodedInputStream.h239 - (void)popLimit:(size_t)oldLimit;
DGPBCodedInputStream_PackagePrivate.h106 size_t oldLimit);
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DDiscardUnknownFieldsTest.java84 int oldLimit = input.pushLimit(messageSize); in assertReuseCodedInputStreamPreserve() local
87 input.popLimit(oldLimit); in assertReuseCodedInputStreamPreserve()
DMapTest.java1349 int oldLimit = input.pushLimit(length); in testDeterministicSerialziation() local
1366 input.popLimit(oldLimit); in testDeterministicSerialziation()
/third_party/node/test/parallel/
Dtest-vm-basic.js253 const oldLimit = Error.stackTraceLimit; constant
349 Error.stackTraceLimit = oldLimit;
/third_party/protobuf/csharp/src/Google.Protobuf/Collections/
DRepeatedField.cs129 int oldLimit = SegmentedBufferHelper.PushLimit(ref ctx.state, length); in AddEntriesFrom()
156 SegmentedBufferHelper.PopLimit(ref ctx.state, oldLimit); in AddEntriesFrom()
/third_party/skia/src/core/
DSkResourceCache.cpp420 size_t oldLimit = fSingleAllocationByteLimit; in setSingleAllocationByteLimit() local
422 return oldLimit; in setSingleAllocationByteLimit()
/third_party/sqlite/src/
Dsqlite3.c176053 int oldLimit;
176086 oldLimit = db->aLimit[limitId];
176095 return oldLimit; /* IMP: R-53341-35419 */