Searched refs:NOSYS (Results 1 - 16 of 16) sorted by relevance
/third_party/rust/crates/rustix/tests/mm/ |
H A D | mlock.rs | 38 | Err(rustix::io::Errno::NOSYS) => {} in test_mlock_with() 74 | Err(rustix::io::Errno::NOSYS) => {} in test_mlock_with_onfault()
|
H A D | mmap.rs | 111 Err(rustix::io::Errno::NOSYS) => (), in test_mlock() 119 Err(rustix::io::Errno::NOSYS) => (), in test_mlock()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/thread/ |
H A D | syscalls.rs | 42 if err == io::Errno::NOSYS { 114 if err == io::Errno::NOSYS { 163 if err == io::Errno::NOSYS { 242 if err == io::Errno::NOSYS {
|
/third_party/rust/crates/rustix/tests/io/ |
H A D | seals.rs | 12 Err(rustix::io::Errno::NOSYS) => return, in test_seals()
|
H A D | read_write.rs | 32 Err(rustix::io::Errno::NOSYS) => return, in test_readwrite_pv() 173 Err(rustix::io::Errno::NOSYS) | Err(rustix::io::Errno::NOTSUP) => return, in test_pwritev2()
|
/third_party/rust/crates/rustix/src/fs/ |
H A D | statx.rs | 13 /// This function returns [`io::Errno::NOSYS`] if `statx` is not available on 16 /// handles this and translates them into `NOSYS`. 49 1 => Err(io::Errno::NOSYS), in _statx() 62 Err(io::Errno::NOSYS) => statx_error_nosys(), in statx_init() 71 /// The first `statx` call failed with `NOSYS` (or something we're treating 72 /// like `NOSYS`). 76 Err(io::Errno::NOSYS) in statx_error_nosys() 84 // with `PERM`, and if not, treat it like `NOSYS`. in statx_error_perm()
|
/third_party/rust/crates/rustix/tests/process/ |
H A D | rlimit.rs | 37 Err(rustix::io::Errno::NOSYS) => return, in test_setrlimit()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/time/ |
H A D | syscalls.rs | 40 debug_assert_eq!(err, io::Errno::NOSYS); 107 if err == io::Errno::NOSYS { 195 if err == io::Errno::NOSYS {
|
/third_party/rust/crates/rustix/tests/fs/ |
H A D | renameat.rs | 73 Err(err) if err == rustix::io::Errno::NOSYS => return, in test_renameat_with()
|
H A D | openat2.rs | 37 Err(io::Errno::NOSYS) => return, in test_openat2()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/ |
H A D | vdso_wrappers.rs | 258 Err(io::Errno::NOSYS) => _rustix_clock_gettime_via_syscall_old(clockid, res), in _rustix_clock_gettime_via_syscall()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/process/ |
H A D | syscalls.rs | 343 debug_assert_eq!(err, io::Errno::NOSYS); 392 Err(io::Errno::NOSYS) => setrlimit_old(limit, new),
|
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/ |
H A D | syscalls.rs | 416 Err(io::Errno::NOSYS) => fstat_old(fd), 457 Err(io::Errno::NOSYS) => stat_old(filename), 511 Err(io::Errno::NOSYS) => statat_old(dirfd, filename, flags), 570 Err(io::Errno::NOSYS) => lstat_old(filename), 1237 Err(io::Errno::NOSYS) => _utimensat_old(dirfd, pathname, times, flags), in _utimensat() 1325 Err(io::Errno::NOSYS)
|
/third_party/rust/crates/rustix/src/backend/linux_raw/io/ |
H A D | errno.rs | 424 pub const NOSYS: Self = Self::from_errno(errno::ENOSYS); consts
|
/third_party/rust/crates/rustix/src/backend/libc/io/ |
H A D | errno.rs | 744 pub const NOSYS: Self = Self(c::ENOSYS); consts
|
/third_party/rust/crates/rustix/src/backend/libc/fs/ |
H A D | syscalls.rs | 412 Err(io::Errno::NOSYS) => statat_old(dirfd, path, flags), 968 Err(io::Errno::NOSYS) => fstat_old(fd),
|
Completed in 14 milliseconds