Searched refs:chown (Results 1 - 25 of 41) sorted by relevance

12

/haiku-fatelf/src/bin/coreutils/lib/
H A Dlchown.c32 /* If the system chown does not follow symlinks, we don't want it
33 replaced by gnulib's chown, which does follow symlinks. */
35 # undef chown macro
38 /* Work just like chown, except when FILE is a symbolic link.
40 But if autoconf tests determined that chown modifies
41 symlinks, then just call chown. */
57 return chown (file, uid, gid);
84 return chown (file, uid, gid);
93 return chown (file, uid, gid);
H A Dchown.c1 /* provide consistent interface to chown for systems that don't interpret
36 chown (const char *file _GL_UNUSED, uid_t uid _GL_UNUSED, function
45 /* Below we refer to the system's chown(). */
46 # undef chown macro
53 /* Provide a more-closely POSIX-conforming version of chown on
55 - chown doesn't treat an ID of -1 as meaning
57 - chown doesn't dereference symlinks. */
90 /* Handle the case in which the system-supplied chown function
108 and pipes, so fall back on chown in that case. */
136 result = chown (fil
[all...]
H A Ddirchownmod.c58 calls may do the chown but not the chmod. */
83 /* If at least one of the S_IXUGO bits are set, chown might
89 /* On some systems, chown clears S_ISUID and S_ISGID, so do
90 chown before chmod. On older System V hosts, ordinary
91 users can give their files away via chown; don't worry
101 : chown (dir, owner, group));
105 doesn't care and it's OK to use the bit's pre-chown
H A Dfchownat.c36 Invoke chown or lchown on file, FILE, using OWNER and GROUP, in the
38 use lchown, otherwise, use chown. If possible, do it without changing
40 then (chown|lchown)/restore_cwd. If either the save_cwd or the
45 # define AT_FUNC_F2 chown
82 chown and lchown. */
H A Dunistd.in.h156 # undef chown macro
157 # define chown rpl_chown macro
164 <http://www.opengroup.org/susv3xsh/chown.html>. */
165 extern int chown (const char *file, uid_t uid, gid_t gid)
169 # undef chown
170 # define chown(f,u,g) \
171 (GL_LINK_WARNING ("chown fails to follow symlinks on some systems and " \
173 "use gnulib module chown for portability"), \
174 chown (f, u, g))
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dfchownat.c35 Invoke chown or lchown on file, FILE, using OWNER and GROUP, in the
37 use lchown, otherwise, use chown. If possible, do it without changing
44 #define AT_FUNC_F2 chown
H A Dlchown.c23 /* If the system chown does not follow symlinks, we don't want it
24 replaced by gnulib's chown, which does follow symlinks. */
43 /* Work just like chown, except when FILE is a symbolic link.
45 But if autoconf tests determined that chown modifies
46 symlinks, then just call chown. */
61 return chown (file, uid, gid);
H A Dchown.c1 /* provide consistent interface to chown for systems that don't interpret
32 /* Below we refer to the system's chown(). */
33 #undef chown macro
40 /* Provide a more-closely POSIX-conforming version of chown on
42 - chown doesn't treat an ID of -1 as meaning
44 - chown doesn't dereference symlinks. */
68 /* Handle the case in which the system-supplied chown function
83 so fall back on chown in that case. */
102 return chown (file, uid, gid);
H A Dunistd.h57 <http://www.opengroup.org/susv3xsh/chown.html>. */
58 # define chown rpl_chown macro
59 extern int chown (const char *file, uid_t uid, gid_t gid);
63 # undef chown macro
64 # define chown(f,u,g) \ macro
65 (GL_LINK_WARNING ("chown fails to follow symlinks on some systems and " \
67 "use gnulib module chown for portability"), \
68 chown (f, u, g))
H A Dunistd.in.h56 <http://www.opengroup.org/susv3xsh/chown.html>. */
57 # define chown rpl_chown macro
58 extern int chown (const char *file, uid_t uid, gid_t gid);
62 # undef chown macro
63 # define chown(f,u,g) \ macro
64 (GL_LINK_WARNING ("chown fails to follow symlinks on some systems and " \
66 "use gnulib module chown for portability"), \
67 chown (f, u, g))
/haiku-fatelf/headers/private/userlandfs/fuse/
H A Dfuse_compat.h24 int (*chown) (const char *, uid_t, gid_t); member in struct:fuse_operations_compat25
83 int (*chown) (const char *, uid_t, gid_t); member in struct:fuse_operations_compat22
134 int (*chown) (const char *, uid_t, gid_t); member in struct:fuse_operations_compat2
182 int (*chown) (const char *, uid_t, gid_t); member in struct:fuse_operations_compat1
H A Dfuse.h131 int (*chown) (const char *, uid_t, gid_t); member in struct:fuse_operations
/haiku-fatelf/src/system/libroot/posix/unistd/
H A Dchown.c18 chown(const char *path, uid_t owner, gid_t group) function
/haiku-fatelf/src/bin/network/wget/lib/
H A Dunistd.in.h126 <http://www.opengroup.org/susv3xsh/chown.html>. */
127 # define chown rpl_chown macro
128 extern int chown (const char *file, uid_t uid, gid_t gid);
132 # undef chown
133 # define chown(f,u,g) \
134 (GL_LINK_WARNING ("chown fails to follow symlinks on some systems and " \
136 "use gnulib module chown for portability"), \
137 chown (f, u, g))
/haiku-fatelf/src/tests/system/libroot/posix/bonnie++-1.03d/
H A Dinstall.sh123 echo "chown $opt_o $dsttmp" 1>&2
125 chown $opt_o $dsttmp || exit $?
/haiku-fatelf/src/bin/coreutils/src/
H A DMakefile.am52 chown \
144 chown-core.h \
412 echo " chown root $(installed_su)"; \
413 chown root $(installed_su); \
431 chown root $$TMPFILE > /dev/null 2>&1 \
474 chown_SOURCES = chown.c chown-core.c
475 chgrp_SOURCES = chgrp.c chown-core.c
/haiku-fatelf/src/libs/util/
H A Dpty.c124 (void) chown(line, getuid(), ttygid);
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_fs.cpp217 if (fs->ops.chown == NULL)
219 return fs->ops.chown(path, uid, gid);
H A DFUSEFileSystem.cpp438 fFS->ops.chmod != NULL || fFS->ops.chown != NULL
/haiku-fatelf/src/build/libroot/
H A Dfs_darwin.cpp193 // call chown() ignoring fd
195 : chown(path, owner, group);
209 : chown(fullPath, owner, group);
/haiku-fatelf/src/bin/network/wget/build-aux/
H A Dinstall-sh63 chownprog=${CHOWNPROG-chown}
/haiku-fatelf/src/libs/print/libgutenprint/scripts/
H A Dinstall-sh63 chownprog=${CHOWNPROG-chown}
/haiku-fatelf/headers/posix/
H A Dunistd.h195 extern int chown(const char *path, uid_t owner, gid_t group);
/haiku-fatelf/src/bin/network/telnetd/
H A Dsys_term.c437 chown(line, 0, 0);
989 (void) chown(li, 0, 0);
1379 (void)chown(line, 0, 0);
1382 (void)chown(line, 0, 0);
/haiku-fatelf/src/tools/fs_shell/
H A Dfuse.cpp282 PRINTD("##chown\n");
403 fuseOps->chown = fuse_chown;

Completed in 808 milliseconds

12