Searched refs:lstat (Results 101 - 125 of 322) sorted by relevance

1234567891011>>

/netbsd-current/usr.bin/make/
H A Dutil.c257 if (lstat(".", &st_cur) == -1) {
303 if (lstat(nextpathptr, &st_next) == -1) {
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_solaris.cpp122 DECLARE__REAL_AND_INTERNAL64(uptr, lstat, const char *path, void *buf) {
123 return _REAL64(lstat)(path, (struct stat *)buf);
/netbsd-current/bin/pax/
H A Dar_subs.c359 if (kflag && (lstat(arcn->name, &sb) == 0)) {
374 if ((uflag || Dflag) && ((lstat(arcn->name, &sb) == 0))) {
413 if ((Yflag || Zflag) && ((lstat(arcn->name, &sb) == 0))) {
1023 res = lstat(dirbuf, &sb);
1059 if ((Yflag || Zflag) && ((lstat(arcn->name, &sb) == 0))) {
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dlibcvs.mak66 -@erase "$(INTDIR)\lstat.obj"
174 "$(INTDIR)\lstat.obj" \
249 -@erase "$(INTDIR)\lstat.obj"
354 "$(INTDIR)\lstat.obj" \
534 SOURCE=.\lstat.c
536 "$(INTDIR)\lstat.obj" : $(SOURCE) "$(INTDIR)"
H A Dtempname.c82 # define __lxstat64(version, file, buf) lstat (file, buf)
/netbsd-current/external/bsd/am-utils/dist/amd/
H A Damfs_toplvl.c266 * The lstat is needed if this mount is type=direct.
276 if (lstat(mp->am_path, &stb) < 0) {
278 dlog("lstat(%s): %m", mp->am_path);
303 * but only after we've tried normal lstat/umount a few times --
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dsafe_open.c56 /* Olaf Kirch discusses how the lstat()/open()+fstat() test can
58 /* lstat() has been re-used for a sensitive file (article
131 * Look up the file again, this time using lstat(). Compare the fstat()
132 * (open file) modes with the lstat() modes. If there is any difference,
151 else if (lstat(path, &lstat_st) < 0) {
161 parent_ok = (stat(parent_path, &parent_st) == 0 /* not lstat */
189 * End up here in case of fstat()/lstat() problems or inconsistencies.
/netbsd-current/lib/libc/gen/
H A Dgetcwd.c176 if (lstat(resolved, &sb) == -1)
/netbsd-current/share/examples/puffs/icfs/
H A Dicfs.c190 if (lstat(argv[0], &sb) == -1)
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/roken/
H A Diruserok.c264 if (lstat(pbuf, &sbuf) < 0)
265 cp = ".rhosts lstat failed";
/netbsd-current/external/bsd/tcpdump/dist/lbl/
H A Dos-sunos4.h121 int lstat(const char *, struct stat *);
/netbsd-current/tests/lib/libc/c063/
H A Dt_fchmodat.c182 ATF_REQUIRE(lstat(LINK, &st) == 0);
/netbsd-current/tests/lib/libc/sys/
H A Dt_link.c199 ATF_REQUIRE(lstat(pathl, &sb) == 0);
/netbsd-current/sbin/dump/
H A Dsnapshot.c75 if (lstat(file, &sb) < 0)
/netbsd-current/external/bsd/pkg_install/dist/create/
H A Dpl.c120 if (lstat(name, &st) < 0) {
/netbsd-current/crypto/external/bsd/openssh/dist/
H A Dsftp-realpath.c152 * Append the next path component and lstat() it. If
153 * lstat() fails we still can return successfully if
161 if (lstat(resolved, &sb) != 0) {
/netbsd-current/usr.bin/realpath/
H A Drealpath.c164 if (lstat(s, &sb) == -1 || !S_ISLNK(sb.st_mode)) {
/netbsd-current/external/bsd/libpcap/dist/lbl/
H A Dos-sunos4.h122 int lstat(const char *, struct stat *);
/netbsd-current/external/gpl2/xcvs/dist/src/
H A Drcscmds.c538 if (lstat (file1, &sb1) < 0)
540 if (lstat (file2, &sb2) < 0)
/netbsd-current/usr.bin/rdist/
H A Dserver.c347 if ((opts & FOLLOW ? stat(target, &stb) : lstat(target, &stb)) < 0) {
716 if (lstat(target, &stb) < 0) {
822 if (lstat(target, &stb) == 0) {
1020 if (lstat(target, &stb) == 0) {
1058 if (lstat(name, &stb) < 0) {
1182 else if (lstat(target, &stb) < 0)
1263 if (lstat(target, &stb) < 0) {
1342 if (lstat(target, &stb) < 0) {
/netbsd-current/bin/mv/
H A Dmv.c248 if (!lstat(to, &sb)) {
259 if (lstat(from, &sb)) {
/netbsd-current/external/gpl3/gdb/dist/readline/readline/examples/rlfe/
H A Dos.h396 #if !defined(HAVE_LSTAT) && !defined(lstat)
397 # define lstat stat macro
/netbsd-current/bin/rm/
H A Drm.c289 if (lstat(f, &sb)) {
395 if (lstat(file, &sb))
/netbsd-current/external/gpl3/gdb.old/dist/readline/readline/examples/rlfe/
H A Dos.h396 #if !defined(HAVE_LSTAT) && !defined(lstat)
397 # define lstat stat macro
/netbsd-current/external/gpl2/lvm2/dist/lib/device/
H A Ddev-cache.c215 if (lstat(p0, &stat0)) {
216 log_sys_very_verbose("lstat", p0);
219 if (lstat(p1, &stat1)) {
220 log_sys_very_verbose("lstat", p1);
419 if (lstat(path, &info) < 0) {
420 log_sys_very_verbose("lstat", path);

Completed in 424 milliseconds

1234567891011>>