Searched refs:st_ino (Results 1 - 25 of 87) sorted by path

1234

/haiku/headers/posix/compat/sys/
H A Dstat.h20 ino_t st_ino; /* this file's serial inode ID */ member in struct:stat_beos
/haiku/headers/posix/sys/
H A Dstat.h15 ino_t st_ino; /* this file's serial inode ID */ member in struct:stat
/haiku/src/add-ons/kernel/file_systems/layers/log_overlay/
H A Dlog_overlay.cpp351 B_PRIdOFF ")\n", result, stat->st_dev, stat->st_ino, stat->st_mode,
646 stat->st_dev, stat->st_ino, stat->st_mode, stat->st_uid,
979 stat->st_dev, stat->st_ino, stat->st_mode, stat->st_uid,
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareNode.cpp92 fInfo.st.st_ino = -1;
H A DShareVolume.cpp566 st->st_ino = node->GetID();
H A DVirtualVolume.cpp350 st->st_ino = node->GetID();
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DNodeInfo.h25 return NodeID(st.st_dev, st.st_ino);
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DNode.cpp47 ref.node = fStat.st_ino;
62 return fStat.st_ino;
152 if (st.st_dev != fStat.st_dev || st.st_ino != fStat.st_ino) {
301 if (st.st_dev != fStat.st_dev || st.st_ino != fStat.st_ino)
H A DSecurityContext.cpp32 ref->node = st.st_ino;
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DNodeInfo.cpp11 visitor->Visit(this, st.st_ino);
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DPackagesDirectory.cpp119 fNodeRef.node = st.st_ino;
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/
H A DVolume.cpp149 if (st.st_ino == entry->d_ino) {
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A Dfs_interface.h37 ino_t st_ino; member in struct:beos_stat
/haiku/src/bin/
H A Ddiskimage.cpp157 ino_t nodeID = st.st_ino;
169 && volumeID == st.st_dev && nodeID == st.st_ino)
172 && volumeID == st.st_dev && nodeID == st.st_ino)) {
H A Dfdinfo.cpp160 node = stat.st_ino;
/haiku/src/build/libbe/storage/
H A DEntry.cpp499 ref->directory = st.st_ino;
626 ref.node = st.st_ino;
1092 printf("dir.inode == %lld\n", (long long)st.st_ino);
/haiku/src/build/libroot/
H A DNodeRef.h24 node(st.st_ino)
/haiku/src/kits/package/
H A DDaemonClient.cpp60 error = request.AddInt64("root", st.st_ino);
/haiku/src/kits/storage/
H A DEntry.cpp290 ref->directory = st.st_ino;
362 ref.node = st.st_ino;
764 printf("dir.inode == %" B_PRIdINO "\n", st.st_ino);
H A DNodeInfo.cpp501 && stat.st_ino == info.root) {
H A DPathMonitor.cpp179 fNodeRef = node_ref(st.st_dev, st.st_ino);
1081 || nodeRef != node_ref(st.st_dev, st.st_ino)) {
1148 || nodeRef != node_ref(st.st_dev, st.st_ino)) {
1393 && node_ref(ancestorStat.st_dev, ancestorStat.st_ino)
1528 if (node_ref(ancestorStat.st_dev, ancestorStat.st_ino)
1713 node_ref(st.st_dev, st.st_ino), isDirectory, notify);
/haiku/src/kits/tracker/
H A DVirtualDirectoryManager.cpp237 if (node_ref(st.st_dev, st.st_ino) != fInfo->DefinitionFileNodeRef())
482 node_ref(st.st_dev, st.st_ino));
/haiku/src/system/libroot/posix/glibc/include/bits/
H A Dstat.h36 __ino_t st_ino; /* File serial number. */
38 __ino64_t st_ino; /* File serial number. */
90 __ino64_t st_ino; /* File serial number. */
/haiku/src/system/libroot/posix/sys/
H A Dftok.c21 return (key_t)(id << 24 | (st.st_dev & 0xff) << 16 | (st.st_ino & 0xffff));
H A Dstat.c75 beosStat->st_ino = stat->st_ino;
97 stat->st_ino = beosStat->st_ino;

Completed in 150 milliseconds

1234