Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DCodedOutputStream.java972 public static class OutOfSpaceException extends IOException { class in CodedOutputStream
978 OutOfSpaceException() { in OutOfSpaceException() method in CodedOutputStream.OutOfSpaceException
982 OutOfSpaceException(Throwable cause) { in OutOfSpaceException() method in CodedOutputStream.OutOfSpaceException
986 OutOfSpaceException(String explanationMessage, Throwable cause) { in OutOfSpaceException() method in CodedOutputStream.OutOfSpaceException
1018 throw new OutOfSpaceException(e); in inefficientWriteStringNoTag()
1019 } catch (OutOfSpaceException e) { in inefficientWriteStringNoTag()
1291 throw new OutOfSpaceException( in write()
1333 throw new OutOfSpaceException( in writeUInt32NoTag()
1347 throw new OutOfSpaceException( in writeFixed32NoTag()
1379 throw new OutOfSpaceException( in writeUInt64NoTag()
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/main/java/com/google/protobuf/nano/
DCodedOutputByteBufferNano.java309 throw new OutOfSpaceException(oldPosition + minLengthVarIntSize, buffer.limit()); in writeStringNoTag()
322 final OutOfSpaceException outOfSpaceException = new OutOfSpaceException(buffer.position(), in writeStringNoTag()
934 public static class OutOfSpaceException extends IOException { class in CodedOutputByteBufferNano
937 OutOfSpaceException(int position, int limit) { in OutOfSpaceException() method in CodedOutputByteBufferNano.OutOfSpaceException
947 throw new OutOfSpaceException(buffer.position(), buffer.limit()); in writeRawByte()
970 throw new OutOfSpaceException(buffer.position(), buffer.limit()); in writeRawBytes()
1044 throw new OutOfSpaceException(buffer.position(), buffer.limit()); in writeRawLittleEndian32()
1054 throw new OutOfSpaceException(buffer.position(), buffer.limit()); in writeRawLittleEndian64()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/
DCodedOutputStream.cs670 throw new OutOfSpaceException(); in RefreshBuffer()
683 public sealed class OutOfSpaceException : IOException class in Google.Protobuf.CodedOutputStream
685 internal OutOfSpaceException() in OutOfSpaceException() method in Google.Protobuf.CodedOutputStream.OutOfSpaceException
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/test/java/com/google/protobuf/
DCodedOutputStreamTest.java33 import com.google.protobuf.CodedOutputStream.OutOfSpaceException;
543 } catch (OutOfSpaceException e) {
549 } catch (OutOfSpaceException e) {
570 } catch (CodedOutputStream.OutOfSpaceException expected) {
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java2339 } catch (CodedOutputByteBufferNano.OutOfSpaceException expected) {} in testCorrectExceptionThrowWhenEncodingStringsWithoutEnoughSpace()