Home
last modified time | relevance | path

Searched refs:IoError (Results 1 – 21 of 21) sorted by relevance

/external/rust/crates/protobuf/src/
Derror.rs60 IoError(io::Error), enumerator
84 &ProtobufError::IoError(ref e) => write!(f, "IO error: {}", e), in fmt()
97 &ProtobufError::IoError(ref e) => e.description(), in description()
117 &ProtobufError::IoError(ref e) => Some(e), in cause()
127 ProtobufError::IoError(err) in from()
140 ProtobufError::IoError(e) => e, in from()
/external/crosvm/arch/src/
Dpstore.rs19 IoError(io::Error), enumerator
30 IoError(e) => write!(f, "failed to create pstore backend file: {}", e), in fmt()
57 .map_err(Error::IoError)?; in create_memory_region()
58 file.set_len(pstore.size as u64).map_err(Error::IoError)?; in create_memory_region()
/external/crosvm/rutabaga_gfx/src/
Drutabaga_utils.rs8 use std::io::Error as IoError;
149 IoError(IoError), enumerator
210 IoError(e) => write!(f, "an input/output error occur: {}", e), in fmt()
233 impl From<IoError> for RutabagaError {
234 fn from(e: IoError) -> RutabagaError { in from()
235 RutabagaError::IoError(e) in from()
/external/adhd/cras/client/libcras/src/
Dcras_client_message.rs20 IoError(io::Error), enumerator
37 Error::IoError(ref err) => err.fmt(f), in fmt()
55 Error::IoError(io_err) in from()
Dcras_stream.rs22 IoError(io::Error), enumerator
31 Error::IoError(ref err) => err.fmt(f), in fmt()
39 Error::IoError(io_err) in from()
Dlibcras.rs161 IoError(io::Error), enumerator
175 Error::IoError(ref err) => err.fmt(f), in fmt()
187 Error::IoError(io_err) in from()
/external/rust/crates/criterion/src/
Dconnection.rs12 IoError(std::io::Error), enumerator
21 MessageError::IoError(other) in from()
32 MessageError::IoError(error) => write!( in fmt()
44 MessageError::IoError(err) => Some(err), in source()
/external/crosvm/vhost/src/
Dlib.rs14 use std::io::Error as IoError;
26 VhostOpen(IoError),
28 IoctlError(IoError),
59 Err(Error::IoctlError(IoError::last_os_error())) in ioctl_result()
/external/crosvm/devices/src/virtio/video/
Dcommand.rs25 IoError(io::Error), enumerator
38 IoError(e) => write!(f, "failed to read an object: {}", e), in fmt()
50 ReadCmdError::IoError(e) in from()
/external/llvm/test/Bindings/OCaml/
Dext_exc.ml25 Llvm.IoError _ -> ();;
Dbitreader.ml46 with Llvm.IoError _ ->
/external/llvm-project/llvm/test/Bindings/OCaml/
Dext_exc.ml25 Llvm.IoError _ -> ();;
Dbitreader.ml46 with Llvm.IoError _ ->
/external/crosvm/devices/src/virtio/
Ddescriptor_utils.rs31 IoError(io::Error), enumerator
47 IoError(e) => write!(f, "descriptor I/O error: {}", e), in fmt()
/external/crosvm/devices/src/
Dpit.rs7 use std::io::Error as IoError;
158 SpawnThread(IoError),
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml294 exception IoError of string Exception
296 let () = Callback.register_exception "Llvm.IoError" (IoError "")
Dllvm.mli385 exception IoError of string Exception
2548 path [p]. If the file could not be read, then [IoError msg] is
2553 If standard input is empty, then [IoError msg] is raised. *)
/external/llvm-project/llvm/bindings/ocaml/llvm/
Dllvm.ml329 exception IoError of string Exception
331 let () = Callback.register_exception "Llvm.IoError" (IoError "")
Dllvm.mli386 exception IoError of string Exception
2614 path [p]. If the file could not be read, then [IoError msg] is
2619 If standard input is empty, then [IoError msg] is raised. *)
/external/crosvm/src/plugin/
Dmod.rs251 ProtobufError::IoError(e) => SysError::new(e.raw_os_error().unwrap_or(EINVAL)), in proto_to_sys_err()
/external/crosvm/crosvm_plugin/src/
Dlib.rs136 protobuf::ProtobufError::IoError(e) => e.raw_os_error().unwrap_or(EINVAL), in proto_error_to_int()