/third_party/musl/libc-test/src/functionalext/supplement/conf/ |
H A D | fpathconf.c | 28 long result = fpathconf(0, _PC_LINK_MAX); in fpathconf_0100() 40 long result = fpathconf(0, _PC_SOCK_MAXBUF); in fpathconf_0200() 52 long result = fpathconf(0, _PC_FILESIZEBITS); in fpathconf_0300() 64 long result = fpathconf(0, _PC_2_SYMLINKS); in fpathconf_0400() 76 long result = fpathconf(0, 1000); in fpathconf_0500()
|
/third_party/musl/src/conf/ |
H A D | pathconf.c | 5 return fpathconf(-1, name); in pathconf()
|
H A D | fpathconf.c | 5 long fpathconf(int fd, int name) in fpathconf() function
|
/third_party/ltp/testcases/kernel/syscalls/fpathconf/ |
H A D | fpathconf01.c | 37 * Testcase to test the basic functionality of fpathconf(2) system call. 87 TEST(fpathconf(fd, test_cases[i].value)); in main() 92 "fpathconf has NO limit for " in main() 96 "fpathconf(fd, %s) failed", in main() 101 "fpathconf(fd, %s) returned %ld", in main()
|
/third_party/FreeBSD/lib/libc/include/ |
H A D | namespace.h | 68 #define fpathconf _fpathconf
macro
|
/third_party/musl/porting/liteos_a/user/include/ |
H A D | unistd.h | 151 long fpathconf(int, int);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | unistd.h | 126 long fpathconf(int, int);
|
/third_party/musl/porting/linux/user/include/ |
H A D | unistd.h | 153 long fpathconf(int, int);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | unistd.h | 151 long fpathconf(int, int);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | unistd.h | 126 long fpathconf(int, int);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | unistd.h | 131 long fpathconf(int, int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | unistd.h | 126 long fpathconf(int, int);
|
/third_party/musl/include/ |
H A D | unistd.h | 190 long fpathconf(int, int);
|
/third_party/lwip/src/apps/http/makefsdata/ |
H A D | tinydir.h | 781 name_max = fpathconf(dirfd(dirp), _PC_NAME_MAX); in tinydir_open()
|
/third_party/musl/libc-test/src/api/ |
H A D | unistd.c | 276 {long(*p)(int,int) = fpathconf;} in f()
|
/third_party/rust/crates/libc/src/ |
H A D | wasi.rs | 647 pub fn fpathconf(filedes: ::c_int, name: ::c_int) -> c_long; in fpathconf() functions
|
/third_party/rust/crates/nix/test/ |
H A D | test_unistd.rs | 644 let path_max = fpathconf(f.as_raw_fd(), PathconfVar::PATH_MAX); in test_fpathconf_limited() 647 .expect("fpathconf failed") in test_fpathconf_limited()
|
/third_party/rust/crates/nix/src/ |
H A D | unistd.rs | 2044 /// [fpathconf(2)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/pathconf.html)) 2059 pub fn fpathconf(fd: RawFd, var: PathconfVar) -> Result<Option<c_long>> { in fpathconf() functions 2062 libc::fpathconf(fd, var as c_int) in fpathconf()
|
/third_party/rust/crates/libc/src/vxworks/ |
H A D | mod.rs | 1193 pub fn fpathconf(filedes: ::c_int, name: ::c_int) -> c_long; in fpathconf() functions
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 888 pub fn fpathconf(filedes: ::c_int, name: ::c_int) -> c_long; in fpathconf() functions
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | core-util.c | 3547 if ((n = fpathconf(fd, _PC_PIPE_BUF)) >= 0) in pa_pipe_buf()
|
/third_party/python/Modules/ |
H A D | posixmodule.c | 11592 /* This is used for fpathconf(), pathconf(), confstr() and sysconf(). 11752 os.fpathconf -> long 11770 limit = fpathconf(fd, name); in os_fpathconf_impl() 11801 limit = fpathconf(path->fd, name); in os_pathconf_impl()
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3601 pub fn fpathconf(filedes: ::c_int, name: ::c_int) -> c_long; in fpathconf() functions
|
/third_party/python/Lib/test/ |
H A D | test_os.py | 2219 @unittest.skipUnless(hasattr(os, 'fpathconf'), 'test needs os.fpathconf()') 2226 self.check(os.fpathconf, "PC_NAME_MAX")
|