Searched refs:lstat (Results 1 - 25 of 268) sorted by relevance

1234567891011

/macosx-10.10/gnutar-453/gnutar/lib/
H A Dlstat.h22 # undef lstat macro
23 # define lstat rpl_lstat macro
H A Dlchown.c39 if (lstat (file, &stats) == 0 && S_ISLNK (stats.st_mode))
H A Dlstat.c1 /* Work around a bug of lstat on some systems
26 "#define lstat lstat64" is being used, and sys_stat.h deletes this
34 /* lstat works differently on Linux and Solaris systems. POSIX (see
38 lstat function already has the desired semantics (in treating
39 `lstat ("symlink/", sbuf)' just like `lstat ("symlink/.", sbuf)',
51 int lstat_result = lstat (file, sbuf);
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dlstat.c29 NoN(lstat)
34 lstat(const char* path, struct stat* st)
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dlstat.c39 lstat(const char *path, struct stat *buf) function
/macosx-10.10/ruby-106/ruby/nacl/
H A Dstat.h9 int lstat(const char* path, struct stat* result);
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dunlink-if-ordinary.c58 #define lstat stat macro
67 if (lstat (name, &st) == 0
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dremove.c50 if (lstat(file, &sb) < 0)
/macosx-10.10/emacs-93/emacs/src/s/
H A Dbsd4-1.h121 #define lstat stat
120 #define lstat macro
/macosx-10.10/ksh-23/ksh/src/lib/libast/path/
H A Dpathstat.c41 return(lstat(path, st));
/macosx-10.10/postfix-255/postfix/src/util/
H A Dwarn_stat.h19 #define lstat(p, s) warn_lstat((p), (s)) macro
H A Dlstat_as.c5 /* lstat file as user
49 /* lstat_as - lstat file as user */
65 status = lstat(path, st);
H A Dwarn_stat.c22 /* fstat() and lstat() system calls with code that logs a
79 /* warn_lstat - lstat with warning */
85 ret = lstat(path, st);
/macosx-10.10/removefile-35/
H A Dremovefile_rename_unlink.c91 } while (lstat(new_name, &statbuf) == 0);
93 if (lstat(path, &statbuf) == -1)
106 if (lstat(new_name, &statbuf) == -1) {
/macosx-10.10/srm-7/srm/src/
H A Drename_unlink.c63 } while (lstat(new_name, &statbuf) == 0);
65 if (lstat(path, &statbuf) == -1)
80 if (lstat(new_name, &statbuf) == -1) {
/macosx-10.10/Libc-1044.1.2/emulated/
H A Dlchflags.c36 if(lstat(path, &s) < 0)
H A Dlutimes.c41 if(lstat(path, &s) < 0)
/macosx-10.10/libarchive-30/libarchive/libarchive/test/
H A Dtest_write_disk_secure.c127 assertEqualInt(0, lstat("link_to_dir3", &st));
149 assertEqualInt(0, lstat("link_to_dir4", &st));
177 assertEqualInt(0, lstat("link_to_dir5", &st));
184 assert(0 == lstat("dir", &st));
188 assert(0 == lstat("link_to_dir", &st));
197 assert(0 == lstat("dir/filea", &st));
202 assert(0 != lstat("dir/fileb", &st));
204 assert(0 == lstat("link_to_dir2", &st));
210 assert(0 == lstat("link_to_dir2/filec", &st));
/macosx-10.10/vim-55/src/auto/
H A Dosdef.h106 #ifndef lstat /* could be redefined to lstat64() */
/macosx-10.10/PowerManagement-494.1.2/swd/
H A Dswd.c63 if ((lstat(logfile, &logs) != 0) || !S_ISREG(logs.st_mode))
66 if (lstat(stacksfile, &stacks)) {
140 if (lstat(PANIC_FILE, &pfstat) == 0)
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_open_ok.c96 if (lstat(*path, statp) < 0) {
/macosx-10.10/procmail-14/procmail/src/
H A Dfoldinfo.c80 { if(!(paranoid?lstat(dir,&stbuf):stat(dir,&stbuf))) /* does it exist? */
122 { if(paranoid?lstat(buf,&stbuf):stat(buf,&stbuf))
220 { if(errno!=EACCES||(setids(),lstat(buf,&stbuf)))
260 if(lstat(buf,&stbuf))
285 if(!lstat(buf,&stbuf)) /* anything in the way? */
291 if(lstat(buf,&stbuf)) /* nothing in the way? */
301 if(!isgrpwrite&&!lstat(defdeflock,&stbuf)&&stbuf.st_uid!=uid&&
H A Dexopen.c93 i=lstat(full,&filebuf);
105 while((i=lstat(full,&filebuf))&&errno==ENAMETOOLONG&&op>ldp);
130 if(lstat(full,&filebuf)||filebuf.st_nlink!=1||filebuf.st_size||
162 if(lstat(old,&sto)||(ret=1,lstat(newn,&stn)||
/macosx-10.10/ruby-106/ruby/lib/
H A Dfileutils.rb696 st = File.lstat(fullpath)
720 unless fu_stat_identical_entry?(st, File.lstat(fullpath))
1206 @lstat = nil
1234 lstat! ? true : false
1238 s = lstat!
1243 s = lstat!
1248 s = lstat!
1253 s = lstat!
1258 s = lstat!
1263 s = lstat!
1309 def lstat method in class:copy_entry.Entry_
[all...]
/macosx-10.10/file_cmds-242/ln/
H A Dln.c149 if (hflag && lstat(sourcedir, &sb) == 0 && S_ISLNK(sb.st_mode)) {
194 (lstat(source, &sb) == 0 && S_ISDIR(sb.st_mode)) ||
207 exists = !lstat(source, &sb);

Completed in 140 milliseconds

1234567891011