Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/vmm-sys-util/src/
Dsyscall.rs33 let mut syscall_code = SyscallReturnCode(1); in test_syscall_ops() localVariable
34 match syscall_code.into_result() { in test_syscall_ops()
39 syscall_code = SyscallReturnCode(-1); in test_syscall_ops()
40 assert!(syscall_code.into_result().is_err()); in test_syscall_ops()
42 syscall_code = SyscallReturnCode(1); in test_syscall_ops()
43 match syscall_code.into_empty_result() { in test_syscall_ops()
48 syscall_code = SyscallReturnCode(-1); in test_syscall_ops()
49 assert!(syscall_code.into_empty_result().is_err()); in test_syscall_ops()