Searched refs:lchmod (Results 1 - 19 of 19) sorted by relevance

/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dfchmodat.c30 # undef lchmod macro
31 # define lchmod lchmod_rpl macro
32 static int lchmod (char const *f, mode_t m) { errno = ENOSYS; return -1; } function
36 Invoke chmod or lchmod on file, FILE, using mode MODE, in the directory
42 on a system without lchmod support causes this function to fail. */
45 #define AT_FUNC_F1 lchmod
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_notimp.rb13 assert_include(File.methods, :lchmod)
15 assert_equal(false, File.respond_to?(:lchmod))
18 assert_equal(true, File.respond_to?(:lchmod))
32 if File.respond_to?(:lchmod)
39 File.lchmod newmode, "#{d}/g"
56 m = File.method(:lchmod)
57 if File.respond_to?(:lchmod)
H A Dtest_file_exhaustive.rb351 assert_equal(1, File.lchmod(0444, @file))
353 File.lchmod(0600, @file)
354 assert_raise(Errno::ENOENT) { File.lchmod(0600, @nofile) }
/macosx-10.10.1/Libc-1044.1.2/emulated/
H A Dlchmod.c33 lchmod(const char *path, mode_t mode) function
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Dchmod.c131 __STDPP__directive pragma pp:hide lchmod
133 #define lchmod ______lchmod
147 __STDPP__directive pragma pp:nohide lchmod
149 #undef lchmod
152 extern int lchmod(const char*, mode_t);
155 * NOTE: we only use the native lchmod() on symlinks just in case
276 chmodf = lchmod;
/macosx-10.10.1/file_cmds-242/chmod/
H A Dchmod.c129 * lchmod(2) is introduced and this option does real
290 change_mode = lchmod;
/macosx-10.10.1/rsync-45/rsync/
H A Dsyscall.c164 code = lchmod(path, mode & CHMOD_BITS);
H A Dconfigure13477 for ac_func in waitpid wait4 getcwd strdup chown chmod lchmod mknod mkfifo \
/macosx-10.10.1/ruby-106/ruby/lib/
H A Dfileutils.rb1325 File.lchmod mode, path() if have_lchmod?
1399 File.lchmod st.mode & 01777, path
1408 File.lchmod st.mode, path
1501 return false unless File.respond_to?(:lchmod)
1502 File.lchmod 0
/macosx-10.10.1/file_cmds-242/cp/
H A Dutils.c401 (islink ? lchmod(to.p_path, fs->st_mode) :
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dstat.h537 int lchmod(const char *, mode_t) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
/macosx-10.10.1/libarchive-30/libarchive/
H A DCMakeLists.txt387 CHECK_FUNCTION_EXISTS_GLIBC(lchmod HAVE_LCHMOD)
H A Dconfigure22225 for ac_func in lchflags lchmod lchown link lstat
/macosx-10.10.1/xar-254/xar/lib/
H A Dstat.c641 if( lchmod(file, m) ) {
644 xar_err_set_string(x, "perm: could not lchmod symlink");
/macosx-10.10.1/ruby-106/ruby/test/pathname/
H A Dtest_pathname.rb763 path.lchmod(0444)
/macosx-10.10.1/libarchive-30/libarchive/libarchive/
H A Darchive_write_disk.c2059 * If this is a symlink, use lchmod(). If the
2060 * platform doesn't support lchmod(), just skip it. A
2066 if (lchmod(a->name, mode) != 0) {
/macosx-10.10.1/ruby-106/ruby/
H A Dfile.c2067 * Follows symbolic links. Also see <code>File#lchmod</code>.
2103 if (lchmod(path, (int)(VALUE)mode) < 0)
2109 * File.lchmod(mode_int, file_name, ...) -> integer
5535 rb_define_singleton_method(rb_cFile, "lchmod", rb_file_s_lchmod, -1);
H A Dconfigure15747 setrgid setegid setregid setresgid issetugid pause lchown lchmod\
/macosx-10.10.1/xar-254/xar/
H A Dconfigure4402 for ac_func in lchmod
4404 ac_fn_c_check_func "$LINENO" "lchmod" "ac_cv_func_lchmod"

Completed in 612 milliseconds