Searched refs:lstat (Results 126 - 150 of 322) sorted by relevance

1234567891011>>

/netbsd-current/external/public-domain/xz/dist/src/xz/
H A Dfile_io.c298 // If --force was used, use stat() instead of lstat(). This way
302 // instead of lstat(), xz will think that foo hasn't been replaced
308 ? stat(name, &new_st) : lstat(name, &new_st);
336 // There's a race condition between lstat() and unlink()
562 // by POSIX). Check for symlinks with a separate lstat() on
566 if (lstat(pair->src_name, &st)) {
604 // and skip the lstat() call and the associated race.
625 if (lstat(pair->src_name, &st) == 0
805 // (avoids a race between close() and stat()/lstat() and
/netbsd-current/usr.bin/unzip/
H A Dunzip.c333 if (lstat(path, &sb) == 0) {
371 if (lstat(path, &sb) == 0) {
613 if (lstat(*path, &sb) == 0) {
/netbsd-current/lib/libpuffs/
H A Dnull.c154 if (lstat(PCNPATH(pcn), &sb) == -1)
313 rv = lstat(PCNPATH(pcn), &sb);
381 if (lstat(PNPATH(pn), &sb) == -1)
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/
H A Dops-common.h79 inline int lstat(const wchar_t* path, stat_type* buffer) function in namespace:filesystem::__gnu_posix
138 using ::lstat;
140 inline int lstat(const char* path, stat_type* buffer)
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/
H A Dops-common.h117 inline int lstat(const wchar_t* path, stat_type* buffer) function in namespace:filesystem::__gnu_posix
177 using ::lstat;
179 inline int lstat(const char* path, stat_type* buffer)
/netbsd-current/external/bsd/am-utils/dist/conf/autofs/
H A Dautofs_solaris_v1.c536 if ((err = lstat(target2, &buf)))
664 if (!lstat(space_hack, &stb)) {
/netbsd-current/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
H A Dstat.c71 /* On platforms that don't provide lstat(), we use stat() instead. */
74 val = lstat(str, &sb);
188 /* On platforms that don't provide lstat(), we use stat() instead. */
191 val = lstat(str, &sb);
/netbsd-current/crypto/external/bsd/openssl.old/dist/apps/
H A Drehash.c59 # define lstat(path, buf) stat(path, buf) macro
377 if (lstat(buf, &st) < 0)
/netbsd-current/external/gpl3/gcc/dist/libgfortran/intrinsics/
H A Dstat.c71 /* On platforms that don't provide lstat(), we use stat() instead. */
74 val = lstat(str, &sb);
188 /* On platforms that don't provide lstat(), we use stat() instead. */
191 val = lstat(str, &sb);
/netbsd-current/usr.bin/touch/
H A Dtouch.c132 stime_file(optarg, ts, lstat);
156 get_file_status = lstat;
/netbsd-current/external/bsd/kyua-cli/dist/utils/fs/
H A Doperations.cpp77 if (::lstat(path.c_str(), &sb) == -1) {
/netbsd-current/external/bsd/kyua-testers/dist/
H A Dfs.c158 if (lstat(path, sb) == -1) {
159 warn("lstat(%s) failed", path);
/netbsd-current/sbin/mknod/
H A Dmknod.c259 if (lstat(name, &sb) != 0 || (!fifo && sb.st_rdev != dev))
/netbsd-current/share/examples/puffs/rot13fs/
H A Drot13fs.c142 if (lstat(argv[0], &sb) == -1)
/netbsd-current/external/gpl2/diffutils/dist/lib/
H A Dtempname.c104 # define __lxstat64(version, path, buf) lstat (path, buf)
/netbsd-current/external/gpl2/texinfo/dist/lib/
H A Dtempname.c106 # define __lxstat64(version, path, buf) lstat (path, buf)
/netbsd-current/sys/rump/include/rump/
H A Drump_syscallshotgun.h110 #define lstat(a,b) rump_sys_lstat(a,b) macro
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dcanonicalize.c240 if (lstat (rname, &st) != 0)
H A Dgetcwd.c112 # define __lstat lstat
/netbsd-current/tests/lib/libc/c063/
H A Dt_fchownat.c231 ATF_REQUIRE(lstat(LINK, &st) == 0);
H A Dt_utimensat.c194 ATF_REQUIRE(lstat(LINK, &st) == 0);
/netbsd-current/usr.bin/sort/
H A Dsort.c322 } else if (lstat(outpath, &st) == 0
/netbsd-current/external/gpl2/xcvs/dist/src/
H A Dignore.c19 #include "lstat.h"
442 lstat (file, &sb) != -1)
/netbsd-current/bin/getfacl/
H A Dgetfacl.c194 error = lstat(path, &sb);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRTDyldMemoryManager.cpp237 if (Name == "lstat") return (uint64_t)&lstat;

Completed in 506 milliseconds

1234567891011>>