Searched refs:st_ino (Results 1 - 25 of 139) sorted by relevance

123456

/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dfdmatch.c60 (sbuf1.st_ino == sbuf2.st_ino))
H A Dgetpwd.c83 && dotstat.st_ino == pwdstat.st_ino
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dfdmatch.c60 (sbuf1.st_ino == sbuf2.st_ino))
H A Dgetpwd.c83 && dotstat.st_ino == pwdstat.st_ino
/freebsd-9.3-release/tools/regression/pipe/
H A Dpipe-ino.c31 * structure members st_mode, st_ino, st_dev, st_uid, st_gid, st_atim,
33 * Check that st_dev and st_ino are meaningful.
59 if (st1.st_ino == st2.st_ino)
60 errx(1, "FAIL: inode numbers are equal: %d", st1.st_ino);
/freebsd-9.3-release/lib/libc/gen/
H A Dftok.c45 return (key_t) (id << 24 | (st.st_dev & 0xff) << 16 | (st.st_ino & 0xffff));
H A Dgetcwd.c114 root_ino = s.st_ino;
124 ino = s.st_ino;
181 if (s.st_dev == dev && s.st_ino == ino)
/freebsd-9.3-release/sys/compat/svr4/
H A Dsvr4_stat.h39 svr4_o_ino_t st_ino; member in struct:svr4_stat
54 svr4_ino_t st_ino; member in struct:svr4_xstat
75 svr4_ino64_t st_ino; member in struct:svr4_stat64
/freebsd-9.3-release/bin/pwd/
H A Dpwd.c117 if (lg.st_dev == phy.st_dev && lg.st_ino == phy.st_ino)
/freebsd-9.3-release/contrib/openbsm/compat/
H A Dflopen.h89 sb.st_ino != fsb.st_ino) {
/freebsd-9.3-release/lib/libutil/
H A Dflopen.c91 sb.st_ino != fsb.st_ino) {
H A Dpidfile.c65 if (sb.st_dev != pfh->pf_dev || sb.st_ino != pfh->pf_ino)
162 pfh->pf_ino = sb.st_ino;
/freebsd-9.3-release/sbin/kldload/
H A Dkldload.c75 ino = sb.st_ino;
107 if (sb.st_dev != dev || sb.st_ino != ino) {
113 } else if (sb.st_dev == dev && sb.st_ino == ino) {
/freebsd-9.3-release/contrib/opie/libopie/
H A Dlock.c154 if (statbuf[0].st_ino != statbuf[1].st_ino)
202 if (!S_ISREG(statbuf[0].st_mode) || (statbuf[0].st_mode != statbuf[1].st_mode) || (statbuf[0].st_ino != statbuf[1].st_ino))
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Dgetcwd.c103 root_ino = s.st_ino;
113 ino = s.st_ino;
182 if (s.st_dev == dev && s.st_ino == ino)
/freebsd-9.3-release/usr.sbin/snapinfo/
H A Dsnapinfo.c146 if (flags == FTW_F && st->st_ino == inode) {
151 printf(" (inode %d)", st->st_ino);
/freebsd-9.3-release/contrib/nvi/ex/
H A Dex_init.c226 lsb.st_ino != hsb.st_ino) &&
234 lsb.st_ino != hsb.st_ino) &&
/freebsd-9.3-release/sys/i386/ibcs2/
H A Dibcs2_stat.h41 ibcs2_ino_t st_ino; member in struct:ibcs2_stat
/freebsd-9.3-release/usr.sbin/lpr/chkprintcap/
H A Dchkprintcap.c192 * st_ino, so that the problem spool directories can be noted in
208 return a->stab.st_ino < b->stab.st_ino;
216 && (a->stab.st_ino == b->stab.st_ino));
/freebsd-9.3-release/bin/pax/
H A Dtables.c146 indx = ((unsigned)arcn->sb.st_ino) % L_TAB_SZ;
153 if ((pt->ino == arcn->sb.st_ino) &&
195 pt->ino = arcn->sb.st_ino;
234 indx = ((unsigned)arcn->sb.st_ino) % L_TAB_SZ;
244 if ((pt->ino == arcn->sb.st_ino) &&
779 if ((nino = arcn->sb.st_ino & (ino_t)ino_mask) != arcn->sb.st_ino) {
781 trunc_bits = arcn->sb.st_ino & (ino_t)(~ino_mask);
802 arcn->sb.st_ino = nino;
868 arcn->sb.st_ino
[all...]
/freebsd-9.3-release/contrib/xz/src/xz/
H A Dfile_io.c98 // On DOS-like systems, st_ino is meaningless, so don't bother
118 // st_ino is an array, and we don't want to
120 || memcmp(&new_st.st_ino, &known_st->st_ino,
121 sizeof(new_st.st_ino)) != 0
125 || new_st.st_ino != known_st->st_ino
609 pair->dest_st.st_ino[0] = 0;
610 pair->dest_st.st_ino[1] = 0;
611 pair->dest_st.st_ino[
[all...]
/freebsd-9.3-release/contrib/cvs/diff/
H A Dsystem.h273 #define same_file(s,t) ((s)->st_ino==(t)->st_ino && (s)->st_dev==(t)->st_dev)
/freebsd-9.3-release/contrib/cvs/src/
H A Dhardlink.c82 sprintf (inodestr, "%lx", (unsigned long) sb.st_ino);
198 sprintf (inodestr, "%lx", (unsigned long) sb.st_ino);
/freebsd-9.3-release/crypto/openssl/crypto/rand/
H A Drand_unix.c210 if (randomstats[j].st_ino == st->st_ino &&
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_entry_stat.c75 st->st_ino = archive_entry_ino64(entry);

Completed in 205 milliseconds

123456