Searched refs:stat (Results 226 - 250 of 509) sorted by relevance

1234567891011>>

/haiku/src/add-ons/network_settings/dialup/
H A DAddOn.cpp13 #include <sys/stat.h>
/haiku/src/tests/add-ons/kernel/partitioning_systems/
H A DPartitioningSystemsTest.cpp57 struct stat stat; local
58 if (fstat(fd, &stat) < 0) {
65 off_t blocks = stat.st_size / blockSize;
/haiku/src/apps/installer/
H A DCopyEngine.h120 const struct stat& statInfo) const = 0;
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DPackageNode.h9 #include <sys/stat.h>
/haiku/headers/private/kernel/boot/
H A Delf.h11 #include <sys/stat.h>
/haiku/headers/compatibility/bsd/
H A Dfts.h57 #define FTS_NOSTAT 0x008 /* don't get stat info */
103 #define FTS_NS 10 /* stat(2) failed */
104 #define FTS_NSOK 11 /* no stat(2) requested */
121 struct stat *fts_statp; /* stat(2) information */
/haiku/src/tests/kits/storage/
H A DBasicTest.cpp69 BasicTest::dumpStat(struct stat &st)
71 printf("stat:\n");
/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixStreamEndpoint.h8 #include <sys/stat.h>
/haiku/src/system/boot/arch/x86/
H A Darch_cpu.cpp388 struct stat stat; local
389 if (fstat(fd, &stat) < 0) {
390 dprintf("ucode_load: couldn't stat microcode file\n");
395 ssize_t length = stat.st_size;
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacapps.h156 #include <sys/stat.h>
/haiku/src/apps/haikudepot/util/
H A DStorageUtils.cpp198 struct stat s;
206 if (-1 == stat(directoryEntryPath.Path(), &s))
259 struct stat s;
270 if (-1 == stat(path.Path(), &s)) {
/haiku/headers/posix/
H A Dfcntl.h10 #include <sys/stat.h>
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DDirectory.cpp28 virtual status_t GetStat(struct stat* st);
111 CachedDirIterator::GetStat(struct stat* st)
218 Directory::Directory(Volume* volume, const struct stat& st)
/haiku/src/build/libroot/
H A Dfs_freebsd.cpp17 #include <sys/stat.h>
27 struct stat st;
127 struct stat st;
H A Dfs_attr_haiku.cpp30 #include <sys/stat.h>
266 struct stat st;
268 sizeof(struct stat));
/haiku/src/tools/fs_shell/
H A Dstat_util.cpp11 #include <sys/stat.h>
151 from_platform_stat(const struct stat *st, struct fssh_stat *fsshStat)
170 to_platform_stat(const struct fssh_stat *fsshStat, struct stat *st)
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInode.h68 status_t Stat(struct stat* st,
70 status_t WriteStat(const struct stat* st, uint32 mask,
140 status_t GetStat(struct stat* st,
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DStdLibFileIO.cpp15 # include <sys/stat.h>
22 # include <sys/stat.h>
27 # include <sys/stat.h>
/haiku/src/bin/pkgman/
H A Dcommand_resolve_dependencies.cpp14 #include <sys/stat.h>
155 struct stat st;
156 if (stat(path, &st) != 0)
157 DIE(errno, "failed to stat() \"%s\"", path);
/haiku/src/bin/
H A Did.c23 #include <sys/stat.h>
57 struct stat statBuffer;
71 struct stat statBuffer;
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dioctl.c63 #include <sys/stat.h>
143 struct stat statbuf;
149 if (stat(vol->dev->d_name, &statbuf) == -1) {
150 ntfs_log_debug("fstrim_limits: could not stat %s\n",
/haiku/src/kits/package/manager/
H A DRepositoryBuilder.cpp153 struct stat entryStat;
222 // stat() the entry and skip any non-file
228 struct stat st;
229 if (stat(entryPath.Path(), &st) != 0)
230 DIE(errno, "failed to stat() %s", entryPath.Path());
/haiku/headers/build/
H A DBeOSBuildCompatibility.h26 #include <sys/stat.h>
87 int _haiku_build_fstat(int fd, struct stat* st);
88 int _haiku_build_fstatat(int fd, const char* path, struct stat* st,
/haiku/src/system/kernel/device_manager/
H A Ddevfs.cpp16 #include <sys/stat.h>
1817 devfs_read_stat(fs_volume* _volume, fs_vnode* _vnode, struct stat* stat) argument
1821 TRACE(("devfs_read_stat: vnode %p (%" B_PRIdINO "), stat %p\n",
1822 vnode, vnode->id, stat));
1824 stat->st_ino = vnode->id;
1825 stat->st_rdev = vnode->id;
1826 stat->st_size = 0;
1827 stat->st_mode = vnode->stream.type;
1829 stat
1868 devfs_write_stat(fs_volume* _volume, fs_vnode* _vnode, const struct stat* stat, uint32 statMask) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/ntfs/
H A Dkernel_interface.cpp335 struct stat statbuf;
610 fs_read_stat(fs_volume* _volume, fs_vnode* _node, struct stat* stat) argument
622 if (ntfs_fuse_getstat(&volume->lowntfs, NULL, ni, stat) != 0)
629 fs_write_stat(fs_volume* _volume, fs_vnode* _node, const struct stat* stat, uint32 mask) argument
650 if ((mask & B_STAT_SIZE) != 0 && node->size != stat->st_size) {
661 if (ntfs_attr_truncate(na, stat->st_size) != 0)
675 if (node->uid != stat->st_uid)
685 if (node->gid != stat
[all...]

Completed in 277 milliseconds

1234567891011>>