/external/rust/crates/protobuf/src/ |
D | error.rs | 60 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/ |
D | pstore.rs | 19 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/ |
D | rutabaga_utils.rs | 8 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/ |
D | cras_client_message.rs | 20 IoError(io::Error), enumerator 37 Error::IoError(ref err) => err.fmt(f), in fmt() 55 Error::IoError(io_err) in from()
|
D | cras_stream.rs | 22 IoError(io::Error), enumerator 31 Error::IoError(ref err) => err.fmt(f), in fmt() 39 Error::IoError(io_err) in from()
|
D | libcras.rs | 161 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/ |
D | connection.rs | 12 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/ |
D | lib.rs | 14 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/ |
D | command.rs | 25 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/ |
D | ext_exc.ml | 25 Llvm.IoError _ -> ();;
|
D | bitreader.ml | 46 with Llvm.IoError _ ->
|
/external/llvm-project/llvm/test/Bindings/OCaml/ |
D | ext_exc.ml | 25 Llvm.IoError _ -> ();;
|
D | bitreader.ml | 46 with Llvm.IoError _ ->
|
/external/crosvm/devices/src/virtio/ |
D | descriptor_utils.rs | 31 IoError(io::Error), enumerator 47 IoError(e) => write!(f, "descriptor I/O error: {}", e), in fmt()
|
/external/crosvm/devices/src/ |
D | pit.rs | 7 use std::io::Error as IoError; 158 SpawnThread(IoError),
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm.ml | 294 exception IoError of string Exception 296 let () = Callback.register_exception "Llvm.IoError" (IoError "")
|
D | llvm.mli | 385 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/ |
D | llvm.ml | 329 exception IoError of string Exception 331 let () = Callback.register_exception "Llvm.IoError" (IoError "")
|
D | llvm.mli | 386 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/ |
D | mod.rs | 251 ProtobufError::IoError(e) => SysError::new(e.raw_os_error().unwrap_or(EINVAL)), in proto_to_sys_err()
|
/external/crosvm/crosvm_plugin/src/ |
D | lib.rs | 136 protobuf::ProtobufError::IoError(e) => e.raw_os_error().unwrap_or(EINVAL), in proto_error_to_int()
|