Home
last modified time | relevance | path

Searched refs:OutOfSpaceException (Results 1 - 4 of 4) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DCodedOutputStream.java110 * bytes are written than fit in the array, {@link OutOfSpaceException} will be thrown. Writing
120 * more bytes are written than fit in the slice, {@link OutOfSpaceException} will be thrown.
947 public static class OutOfSpaceException extends IOException { class in CodedOutputStream
953 OutOfSpaceException() { in OutOfSpaceException() method in CodedOutputStream.OutOfSpaceException
957 OutOfSpaceException(String explanationMessage) { in OutOfSpaceException() method in CodedOutputStream.OutOfSpaceException
961 OutOfSpaceException(Throwable cause) { in OutOfSpaceException() method in CodedOutputStream.OutOfSpaceException
965 OutOfSpaceException(String explanationMessage, Throwable cause) { in OutOfSpaceException() method in CodedOutputStream.OutOfSpaceException
998 throw new OutOfSpaceException(e); in inefficientWriteStringNoTag()
999 } catch (OutOfSpaceException e) { in inefficientWriteStringNoTag()
1320 throw new OutOfSpaceException( in write()
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DCodedOutputStream.cs77 /// OutOfSpaceException will be thrown.
86 /// OutOfSpaceException will be thrown.
543 public sealed class OutOfSpaceException : IOException class in Google.Protobuf.CodedOutputStream
545 internal OutOfSpaceException() in OutOfSpaceException() method in Google.Protobuf.CodedOutputStream.OutOfSpaceException
H A DWriteBufferHelper.cs141 throw new CodedOutputStream.OutOfSpaceException(); in RefreshBuffer()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DCodedOutputStreamTest.java33 import com.google.protobuf.CodedOutputStream.OutOfSpaceException;
570 fail("Expected OutOfSpaceException"); in testSerializeInvalidUtf8FollowedByOutOfSpace()
571 } catch (OutOfSpaceException e) { in testSerializeInvalidUtf8FollowedByOutOfSpace()
576 fail("Expected OutOfSpaceException"); in testSerializeInvalidUtf8FollowedByOutOfSpace()
577 } catch (OutOfSpaceException e) { in testSerializeInvalidUtf8FollowedByOutOfSpace()
603 } catch (CodedOutputStream.OutOfSpaceException expected) { in testCorrectExceptionThrowWhenEncodingStringsWithoutEnoughSpace()

Completed in 8 milliseconds