Searched refs:UnexpectedEof (Results 1 – 19 of 19) sorted by relevance
/external/rust/crates/protobuf/src/ |
D | error.rs | 18 UnexpectedEof, enumerator 48 WireError::UnexpectedEof => write!(f, "unexpected EOF"), in fmt() 105 WireError::UnexpectedEof => "unexpected EOF", in description()
|
D | buf_read_iter.rs | 214 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()
|
D | coded_input_stream.rs | 153 return Err(ProtobufError::WireError(WireError::UnexpectedEof)); in check_eof()
|
/external/rust/crates/tokio/src/io/util/ |
D | read_int.rs | 7 use std::io::ErrorKind::UnexpectedEof; 65 return Poll::Ready(Err(UnexpectedEof.into())); 121 return Poll::Ready(Err(UnexpectedEof.into()));
|
D | read_exact.rs | 44 io::Error::new(io::ErrorKind::UnexpectedEof, "early eof") in eof()
|
/external/rust/crates/protobuf/src/text_format/lexer/ |
D | lexer_impl.rs | 21 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/ |
D | read_exact.rs | 37 return Poll::Ready(Err(io::ErrorKind::UnexpectedEof.into())) in poll()
|
/external/rust/crates/grpcio/src/ |
D | error.rs | 87 let error = ProtobufError::WireError(WireError::UnexpectedEof); in test_convert()
|
/external/crosvm/devices/src/virtio/ |
D | descriptor_utils.rs | 350 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/ |
D | file_traits.rs | 97 return Err(Error::from(ErrorKind::UnexpectedEof)); in read_exact_volatile() 188 Ok(0) => return Err(Error::from(ErrorKind::UnexpectedEof)), in read_exact_at_volatile()
|
D | mmap.rs | 615 io::ErrorKind::UnexpectedEof, in read_to_memory()
|
/external/rust/crates/serde_json/src/ |
D | error.rs | 164 Category::Eof => io::Error::new(io::ErrorKind::UnexpectedEof, j), in from()
|
/external/rust/crates/flate2/src/gz/ |
D | write.rs | 353 if err.kind() == io::ErrorKind::UnexpectedEof { in write()
|
D | bufread.rs | 467 Err(io::ErrorKind::UnexpectedEof.into()) in read()
|
/external/rust/crates/serde_cbor/src/ |
D | read.rs | 248 if e.kind() == io::ErrorKind::UnexpectedEof { in read_into()
|
/external/crosvm/disk/src/ |
D | android_sparse.rs | 290 ErrorKind::UnexpectedEof, in read_at_volatile()
|
/external/crosvm/fuse/src/ |
D | filesystem.rs | 264 io::ErrorKind::UnexpectedEof, in write_all_from()
|
/external/vm_tools/p9/src/protocol/ |
D | wire_format.rs | 192 ErrorKind::UnexpectedEof, in decode()
|
/external/vm_tools/p9/src/server/ |
D | mod.rs | 209 io::ErrorKind::UnexpectedEof => libc::EIO, in error_to_rmessage()
|