Home
last modified time | relevance | path

Searched refs:UnexpectedEof (Results 1 – 19 of 19) sorted by relevance

/external/rust/crates/protobuf/src/
Derror.rs18 UnexpectedEof, enumerator
48 WireError::UnexpectedEof => write!(f, "unexpected EOF"), in fmt()
105 WireError::UnexpectedEof => "unexpected EOF", in description()
Dbuf_read_iter.rs214 return Err(ProtobufError::WireError(WireError::UnexpectedEof)); in read_byte()
291 None => return Err(ProtobufError::WireError(WireError::UnexpectedEof)), in read_exact_bytes()
295 return Err(ProtobufError::WireError(WireError::UnexpectedEof)); in read_exact_bytes()
347 return Err(ProtobufError::WireError(WireError::UnexpectedEof)); in read_exact()
366 return Err(ProtobufError::WireError(WireError::UnexpectedEof)); in read_exact()
Dcoded_input_stream.rs153 return Err(ProtobufError::WireError(WireError::UnexpectedEof)); in check_eof()
/external/rust/crates/tokio/src/io/util/
Dread_int.rs7 use std::io::ErrorKind::UnexpectedEof;
65 return Poll::Ready(Err(UnexpectedEof.into()));
121 return Poll::Ready(Err(UnexpectedEof.into()));
Dread_exact.rs44 io::Error::new(io::ErrorKind::UnexpectedEof, "early eof") in eof()
/external/rust/crates/protobuf/src/text_format/lexer/
Dlexer_impl.rs21 UnexpectedEof, enumerator
40 LexerError::UnexpectedEof => write!(f, "Unexpected EOF"), in fmt()
145 self.next_char_opt().ok_or(LexerError::UnexpectedEof) in next_char()
157 None => Err(LexerError::UnexpectedEof), in skip_c_comment()
/external/rust/crates/futures-util/src/io/
Dread_exact.rs37 return Poll::Ready(Err(io::ErrorKind::UnexpectedEof.into())) in poll()
/external/rust/crates/grpcio/src/
Derror.rs87 let error = ProtobufError::WireError(WireError::UnexpectedEof); in test_convert()
/external/crosvm/devices/src/virtio/
Ddescriptor_utils.rs350 io::ErrorKind::UnexpectedEof, in read_exact_to()
375 io::ErrorKind::UnexpectedEof, in read_exact_to_at()
421 io::ErrorKind::UnexpectedEof, in read_exact_to_at_fut()
674 io::ErrorKind::UnexpectedEof, in write_all_from_at_fut()
1109 io::ErrorKind::UnexpectedEof in reader_unexpected_eof()
/external/crosvm/sys_util/src/
Dfile_traits.rs97 return Err(Error::from(ErrorKind::UnexpectedEof)); in read_exact_volatile()
188 Ok(0) => return Err(Error::from(ErrorKind::UnexpectedEof)), in read_exact_at_volatile()
Dmmap.rs615 io::ErrorKind::UnexpectedEof, in read_to_memory()
/external/rust/crates/serde_json/src/
Derror.rs164 Category::Eof => io::Error::new(io::ErrorKind::UnexpectedEof, j), in from()
/external/rust/crates/flate2/src/gz/
Dwrite.rs353 if err.kind() == io::ErrorKind::UnexpectedEof { in write()
Dbufread.rs467 Err(io::ErrorKind::UnexpectedEof.into()) in read()
/external/rust/crates/serde_cbor/src/
Dread.rs248 if e.kind() == io::ErrorKind::UnexpectedEof { in read_into()
/external/crosvm/disk/src/
Dandroid_sparse.rs290 ErrorKind::UnexpectedEof, in read_at_volatile()
/external/crosvm/fuse/src/
Dfilesystem.rs264 io::ErrorKind::UnexpectedEof, in write_all_from()
/external/vm_tools/p9/src/protocol/
Dwire_format.rs192 ErrorKind::UnexpectedEof, in decode()
/external/vm_tools/p9/src/server/
Dmod.rs209 io::ErrorKind::UnexpectedEof => libc::EIO, in error_to_rmessage()