Home
last modified time | relevance | path

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

/ndk/sources/host-tools/sed-4.2.1/lib/
Dacl-internal.h131 # elif defined EOPNOTSUPP /* Tru64 NFS */
133 … ((Err) == ENOTSUP || (Err) == ENOSYS || (Err) == EINVAL || (Err) == EBUSY || (Err) == EOPNOTSUPP)
Derrno.in.h55 # define EOPNOTSUPP 10045 macro
Dstrerror.c82 case EOPNOTSUPP: in rpl_strerror()
Dcopy-acl.c422 if (errno == ENOSYS || errno == EOPNOTSUPP) in qcopy_acl()
457 if (errno == ENOSYS || errno == EOPNOTSUPP) in qcopy_acl()
Dfile-has-acl.c474 return (errno == ENOSYS || errno == EOPNOTSUPP ? 0 : -1); in file_has_acl()
Dset-mode-acl.c435 if (errno == ENOSYS || errno == EOPNOTSUPP) in qset_acl()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/errno/
Dcerrno.pass.cpp273 #ifndef EOPNOTSUPP
274 #error EOPNOTSUPP not defined
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcerrno191 #ifndef EOPNOTSUPP
192 #define EOPNOTSUPP 9929
Dsystem_error177 operation_not_supported, // EOPNOTSUPP
321 operation_not_supported = EOPNOTSUPP,
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/
Derrc.pass.cpp82 static_assert(static_cast<int>(std::errc::operation_not_supported) == EOPNOTSUPP, ""); in main()