Searched refs:pathconf (Results 1 - 25 of 74) sorted by relevance

123

/illumos-gate/usr/src/lib/libc/common/sys/
H A Dpathconf.s30 .file "pathconf.s"
32 /* C library -- pathconf */
33 /* long pathconf(char *path, int name) */
37 ANSI_PRAGMA_WEAK(pathconf,function)
41 SYSCALL_RVAL1(pathconf)
43 SET_SIZE(pathconf)
/illumos-gate/usr/src/lib/libbc/libc/sys/4.2/
H A Dpathconf.c32 pathconf(char *p, int what) function
/illumos-gate/usr/src/lib/libbc/libc/sys/sys5/
H A Dpathconf.c32 pathconf(char *p, int what) function
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetwd.c45 if ((val = pathconf(".", _PC_PATH_MAX)) == -1)
/illumos-gate/usr/src/ucblib/libucb/port/gen/
H A Dgetwd.c44 if ((val = pathconf(".", _PC_PATH_MAX)) == -1L)
/illumos-gate/usr/src/uts/common/nfs/
H A Dmount.h38 #include <sys/pathconf.h> /* static pathconf kludge */
83 struct pathcnf *pathconf; /* static pathconf kludge */ member in struct:nfs_args
119 caddr32_t pathconf; /* static pathconf kludge */ member in struct:nfs_args32
146 #define NFSMNT_POSIX 0x40000 /* static pathconf kludge info */
/illumos-gate/usr/src/lib/libxcurses/src/libc/mks/
H A Dm_pathma.c73 x = pathconf(path, _PC_PATH_MAX);
97 printf("pathconf() = -1 and errno = EINVAL\n");
/illumos-gate/usr/src/lib/libbc/inc/include/sys/
H A Dmount.h59 * pathconf() information
87 struct pathcnf *pathconf; /* static pathconf kludge */ member in struct:nfs_args
107 #define NFSMNT_POSIX 0x4000 /* static pathconf kludge info */
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dunistd.h138 extern long pathconf(char *, int);
/illumos-gate/usr/src/lib/libcmdutils/common/
H A Dsysattrs.c100 * Call sysattr_support() instead of pathconf(file, _PC_SATTR_ENABLED) or
101 * pathconf(file, _PC_SATTR_EXISTS) so that if pathconf() fails over NFS, we
121 if (((rc = pathconf(file, name)) == 1) || (errno != EINVAL)) {
/illumos-gate/usr/src/ucbhead/
H A Dunistd.h91 /* command names for POSIX pathconf */
107 * Use pathconf/sysconf to obtain actual configuration value.
151 extern long pathconf(const char *, int);
/illumos-gate/usr/src/uts/common/syscall/
H A Dpathconf.c53 * Common code for pathconf(), fpathconf() system calls
125 /* fpathconf/pathconf interfaces */
141 pathconf(char *fname, int name) function
/illumos-gate/usr/src/man/man2/
H A DMakefile219 pathconf.2 \
308 pathconf.2 := LINKSRC = fpathconf.2
/illumos-gate/usr/src/cmd/unpack/
H A Dunpack.c367 max_name = pathconf(filename, _PC_NAME_MAX);
401 if (pathconf(filename, _PC_XATTR_EXISTS) == 1)
413 if (pathconf(argvk, _PC_XATTR_EXISTS)
/illumos-gate/usr/src/cmd/pack/
H A Dpack.c415 max_name = pathconf(argv[k], _PC_NAME_MAX);
476 if (pathconf(argv[k], _PC_XATTR_EXISTS) == 1)
487 if (pathconf(filename,
/illumos-gate/usr/src/lib/libsec/common/
H A Daclutils.c69 acl_flavor = pathconf(filename, _PC_ACL_ENABLED);
114 ace_acl = pathconf(fname, _PC_ACL_ENABLED);
260 acl_flavor_target = pathconf(acl_inp->file, _PC_ACL_ENABLED);
269 * If target returns an error or 0 from pathconf call then
399 acl_flavor = pathconf(file, _PC_ACL_ENABLED);
/illumos-gate/usr/src/lib/libtecla/common/
H A Ddireader.c190 int name_max = pathconf(path, _PC_NAME_MAX);
/illumos-gate/usr/src/cmd/pathchk/
H A Dpathchk.c72 pathconf(\"%s\", %s) returns '%s'. Using %s = %d\n";
132 * Calls pathconf(), and returns 1 if pathconf failed, zero
133 * otherwise. If pathconf() succeeded, then *valp contains the
140 *valp = pathconf(path, type);
143 * pathconf() is not supported on some mounted filesystems
144 * (e.g NFS mounts) and pathconf() is known to fail.
/illumos-gate/usr/src/cmd/fs.d/nfs/mountd/
H A Dexportlist.c40 #include <sys/pathconf.h>
H A Dnfsauth.c41 #include <sys/pathconf.h>
/illumos-gate/usr/src/lib/sun_sas/common/
H A Ddevlink_disco.c180 dirplen = pathconf(dir, _PC_NAME_MAX);
/illumos-gate/usr/src/cmd/backup/dump/
H A Dlftw.c166 if (pathconf(path, _PC_XATTR_EXISTS) == 1) {
/illumos-gate/usr/src/cmd/csplit/
H A Dcsplit.c375 if (strlen(file) > pathconf(".", _PC_NAME_MAX)) {
379 /* truncate file at pathname delim to do pathconf */
387 if (strlen(delim + 1) > pathconf(file, _PC_NAME_MAX)) {
/illumos-gate/usr/src/cmd/fstyp/
H A Dfstyp.c224 size = pathconf(".", _PC_PATH_MAX) + 1;
434 name_max = pathconf(lib_dir, _PC_NAME_MAX);
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs_vfsops.c203 if (nargs->pathconf) {
204 kmem_free(nargs->pathconf, sizeof (struct pathcnf));
205 nargs->pathconf = NULL;
346 /* Copyin pathconf if there is one */
347 if (STRUCT_FGETP(args, pathconf) != NULL) {
350 nargs->pathconf = pc;
586 * Remounts need to save the pathconf information.
991 /* static pathconf kludge */
1034 * The pathconf information is kept on a linked list of kmem_alloc'ed
1037 * See sys/pathconf
[all...]

Completed in 165 milliseconds

123