Searched defs:fchownat (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/sys/
H A Dchown.c34 #pragma weak _fchownat = fchownat
36 fchownat(int fd, const char *name, uid_t uid, gid_t gid, int flags) function
48 return (fchownat(AT_FDCWD, name, uid, gid, 0));
59 return (fchownat(AT_FDCWD, name, uid, gid, AT_SYMLINK_NOFOLLOW));
70 return (fchownat(filedes, NULL, uid, gid, 0));
/illumos-gate/usr/src/uts/common/syscall/
H A Dchown.c58 fchownat(int fd, char *path, uid_t uid, gid_t gid, int flag) function
85 return (fchownat(AT_FDCWD, path, uid, gid, 0));
91 return (fchownat(AT_FDCWD, path, uid, gid, AT_SYMLINK_NOFOLLOW));
97 return (fchownat(fd, NULL, uid, gid, 0));
/illumos-gate/usr/src/man/man2/
H A DMakefile189 fchownat.2 \
288 fchownat.2 := LINKSRC = chown.2
/illumos-gate/usr/src/cmd/cpio/
H A Dcpio.c548 * such as openat, fchownat(), unlinkat()...
569 * fchownat(dfd, <component name>,..)
1847 if (fchownat(dirfd, ".", Rpw_p->pw_uid,
1854 } else if ((fchownat(dirfd, ".", G_p->g_uid,
5725 if (fchownat(dirfd,
5742 } else if ((fchownat(dirfd, get_component(nam_p),
6253 if (fchownat(dirfd, get_component(onam_p),
6265 if ((fchownat(dirfd, get_component(onam_p),
9697 fchownat(int fd, char *name, uid_t owner, gid_t group, int flag) function
/illumos-gate/usr/src/cmd/tar/
H A Dtar.c108 static int fchownat();
238 * such as openat, fchownat(), unlinkat()...
259 * fchownat(dfd, <component name>,..)
3175 if (fchownat(dirfd, ".", stbuf.st_uid,
4574 (void) fchownat(dirfd, name, duid, dgid, symflag);
8539 fchownat(int fd, const char *name, uid_t owner, gid_t group, int flag) function

Completed in 98 milliseconds