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

1234

/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/add-ons/kernel/file_systems/netfs/headers/shared/
H A DNodeInfo.h25 return NodeID(st.st_dev, st.st_ino);
/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;
/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/src/add-ons/kernel/file_systems/netfs/shared/
H A DNodeInfo.cpp11 visitor->Visit(this, st.st_ino);
/haiku/src/build/libroot/
H A DNodeRef.h24 node(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)
/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/tests/kits/storage/
H A DBasicTest.h58 && st1.st_ino == st2.st_ino
H A DBasicTest.cpp73 printf(" st_ino : %Lx\n", st.st_ino);
/haiku/src/libs/util/
H A Dpidfile.c58 if (sb.st_dev != pfh->pf_dev || sb.st_ino != pfh->pf_ino)
157 pfh->pf_ino = sb.st_ino;
/haiku/src/system/libroot/posix/musl/misc/
H A Dnftw.c54 new.ino = st.st_ino;
79 if (h->dev == st.st_dev && h->ino == st.st_ino)
/haiku/src/add-ons/kernel/file_systems/bindfs/
H A DVolume.cpp79 fRootNode = new(std::nothrow) Node(st.st_ino, st.st_mode);
/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/nfs/
H A Dnfs_add_on.c674 st->st_ino=XDRInPacketGetInt32(reply);
886 newNode->vnid = st.st_ino;
1301 ns->rootid = st.st_ino;
1745 newNode->vnid = st.st_ino;
1749 *vnid = st.st_ino;
1845 newNode->vnid = st.st_ino;
1850 *vnid = st.st_ino;
1913 newNode->vnid = st.st_ino;
1918 if ((result = get_vnode(_volume, st.st_ino, (void **)&dummy)) < B_OK) {
1930 if ((result=remove_vnode(_volume,st.st_ino)) < B_O
[all...]
/haiku/src/tools/fs_shell/
H A Dstat_util.cpp154 fsshStat->fssh_st_ino = st->st_ino;
173 st->st_ino = fsshStat->fssh_st_ino;
/haiku/src/tests/add-ons/kernel/file_systems/consistency_check/
H A Dconsistency_check.cpp129 if (stat.st_ino != entry.node) {
131 entry.path.c_str(), entry.node, stat.st_ino);
/haiku/src/system/kernel/device_manager/
H A Dlegacy_drivers.cpp583 stat.st_ino = -1;
637 driver->node = stat.st_ino;
653 change_driver_watcher(stat.st_dev, stat.st_ino, true);
685 && (stat.st_dev != driver->device || stat.st_ino != driver->node)) {
690 driver->node = stat.st_ino;
1122 add_node_listener(stat.st_dev, stat.st_ino, B_WATCH_DIRECTORY,
1127 entry->node = stat.st_ino;
1201 add_node_listener(stat.st_dev, stat.st_ino, B_WATCH_DIRECTORY,
1207 entry->node = stat.st_ino;
1226 stat.st_ino);
[all...]
/haiku/headers/posix/sys/
H A Dstat.h15 ino_t st_ino; /* this file's serial inode ID */ member in struct:stat
/haiku/src/build/libbe/storage/
H A DStatable.cpp87 ref->node = statData.st_ino;
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/add-ons/kernel/network/protocols/unix/
H A DUnixEndpoint.cpp138 fAddress.SetTo(st.st_dev, st.st_ino, vnode);
/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);

Completed in 311 milliseconds

1234