Home
last modified time | relevance | path

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

/ndk/sources/host-tools/sed-4.2.1/lib/
Dse-selinux.in.h12 { errno = ENOTSUP; return -1; } in getcon()
17 { errno = ENOTSUP; return -1; } in getfscreatecon()
19 { errno = ENOTSUP; return -1; } in setfscreatecon()
23 { errno = ENOTSUP; return -1; } in matchpathcon()
26 { errno = ENOTSUP; return -1; } in getfilecon()
29 { errno = ENOTSUP; return -1; } in lgetfilecon()
32 { errno = ENOTSUP; return -1; } in setfilecon()
35 { errno = ENOTSUP; return -1; } in lsetfilecon()
38 { errno = ENOTSUP; return -1; } in fsetfilecon()
42 { errno = ENOTSUP; return -1; } in security_check_context()
[all …]
Dse-context.in.h8 { errno = ENOTSUP; return 0; } in context_new()
10 { errno = ENOTSUP; return (void *) 0; } in context_str()
15 { errno = ENOTSUP; return -1; } in context_user_set()
18 { errno = ENOTSUP; return -1; } in context_role_set()
21 { errno = ENOTSUP; return -1; } in context_range_set()
24 { errno = ENOTSUP; return -1; } in context_type_set()
Dacl-internal.h45 #ifndef ENOTSUP
46 # define ENOTSUP (-1) macro
130 ((Err) == ENOTSUP || (Err) == ENOSYS || (Err) == EINVAL || (Err) == EBUSY || (Err) == ENOENT)
133 … ((Err) == ENOTSUP || (Err) == ENOSYS || (Err) == EINVAL || (Err) == EBUSY || (Err) == EOPNOTSUPP)
136 ((Err) == ENOTSUP || (Err) == ENOSYS || (Err) == EINVAL || (Err) == EBUSY)
Derrno.in.h145 # ifndef ENOTSUP
146 # define ENOTSUP 2007 macro
Dstrerror.c311 case ENOTSUP: in rpl_strerror()
Dcopy-acl.c297 if (errno == ENOSYS || errno == ENOTSUP) in qcopy_acl()
378 if ((errno == ENOSYS || errno == EINVAL || errno == ENOTSUP) in qcopy_acl()
Dfile-has-acl.c374 if (errno == ENOSYS || errno == ENOTSUP) in file_has_acl()
Dset-mode-acl.c361 if (ret < 0 && errno != EINVAL && errno != ENOTSUP) in qset_acl()
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/errno/
Dcerrno.pass.cpp261 #ifndef ENOTSUP
262 #error ENOTSUP not defined
/ndk/sources/cxx-stl/llvm-libc++/include/
Dcerrno179 #ifndef ENOTSUP
180 #define ENOTSUP 9926
Dsystem_error172 not_supported, // ENOTSUP
316 not_supported = ENOTSUP,
/ndk/sources/host-tools/sed-4.2.1/m4/
Derrno_h.m434 #if !defined ENOTSUP
/ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/
Derrc.pass.cpp78 static_assert(static_cast<int>(std::errc::not_supported) == ENOTSUP, ""); in main()