Searched refs:syscall_code (Results 1 – 1 of 1) sorted by relevance
33 let mut syscall_code = SyscallReturnCode(1); in test_syscall_ops() localVariable34 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()