Searched refs:S_ISREG (Results 1 - 25 of 63) sorted by relevance

123

/haiku/src/system/kernel/disk_device_manager/
H A DKFileDiskDevice.cpp59 if (!S_ISREG(st.st_mode))
141 if (stat(fFilePath, &st) == 0 && S_ISREG(st.st_mode))
154 if (stat(fFilePath, &st) != 0 || !S_ISREG(st.st_mode))
/haiku/src/tools/
H A Dcreate_image.cpp115 if (!S_ISREG(st.st_mode) && !S_ISBLK(st.st_mode) && !S_ISCHR(st.st_mode)) {
120 if (S_ISREG(st.st_mode)) {
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DGlobalFunctions.cpp103 if (!S_ISREG(b.st_mode))
/haiku/src/bin/
H A Dunchop.c149 return (S_ISREG(e.st_mode));
H A Ddiskimage.cpp88 if (!S_ISREG(st.st_mode)) {
H A Dcopyattr.cpp356 } else if (S_ISREG(sourceStat.st_mode)) {
389 } else if (S_ISREG(sourceStat.st_mode)) {
/haiku/src/build/libroot/
H A Dfs_freebsd.cpp31 if (S_ISREG(st.st_mode))
131 if (S_ISREG(st.st_mode))
/haiku/headers/posix/sys/
H A Dstat.h65 #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG) macro
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_common.c189 if (S_ISREG(st.st_mode))
/haiku/src/kits/debug/
H A DTeamDebugger.cpp197 if (stat(path.Path(), &st) == 0 && S_ISREG(st.st_mode)) {
/haiku/src/bin/debug/
H A Ddebug_utils.cpp58 if (stat(path.c_str(), &st) == 0 && S_ISREG(st.st_mode)) {
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DNode.h56 inline bool IsFile() const { return S_ISREG(fMode); }
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DInode.h44 { return S_ISREG(Mode()); }
/haiku/src/build/libbe/storage/
H A DStatable.cpp41 return S_ISREG(statData.st_mode);
/haiku/src/add-ons/kernel/file_systems/ufs2/
H A DInode.h95 { return S_ISREG(Mode()); }
/haiku/src/system/boot/loader/
H A Dpackage_support.cpp294 && S_ISREG(st.st_mode)) {
344 if (!S_ISREG(st.st_mode))
/haiku/src/tools/fs_shell/
H A Dunistd.cpp221 if (S_ISREG(status.st_mode))
272 if (S_ISREG(status.st_mode))
/haiku/src/bin/package/
H A Dcommand_extract.cpp462 if (S_ISREG(entry->Mode()) || S_ISLNK(entry->Mode())) {
465 if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode)) {
493 if (S_ISREG(entry->Mode())) {
/haiku/src/kits/storage/
H A DCopyEngine.cpp190 } else if (S_ISREG(sourceStat.st_mode)) {
221 } else if (S_ISREG(sourceStat.st_mode)) {
H A DStatable.cpp53 return S_ISREG(stat.st_mode);
/haiku/src/add-ons/kernel/file_systems/exfat/
H A DInode.h57 { return S_ISREG(Mode()); }
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DNode.cpp175 return S_ISREG(fStat.st_mode);
/haiku/src/bin/bfs_tools/lib/
H A DInode.h26 bool IsFile() const { return S_ISREG(fInode->mode); }
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DStatItem.h170 bool IsFile() const { return S_ISREG(GetMode()); }
/haiku/src/kits/package/manager/
H A DRepositoryBuilder.cpp232 if (!S_ISREG(st.st_mode))

Completed in 128 milliseconds

123