Searched refs:statMask (Results 26 - 32 of 32) sorted by path

12

/haiku/src/build/libroot/
H A Dfs.cpp876 const struct stat *st, size_t statSize, int statMask)
920 if (statMask & B_STAT_MODE) {
925 if (statMask & B_STAT_UID) {
930 if (statMask & B_STAT_GID) {
935 if (statMask & B_STAT_SIZE) {
940 if (statMask & (B_STAT_ACCESS_TIME | B_STAT_MODIFICATION_TIME)) {
944 if (~statMask & (B_STAT_ACCESS_TIME | B_STAT_MODIFICATION_TIME)) {
950 times[0] = (statMask & B_STAT_ACCESS_TIME)
952 times[1] = (statMask & B_STAT_MODIFICATION_TIME)
959 if (statMask
875 _kern_write_stat(int fd, const char *path, bool traverseLink, const struct stat *st, size_t statSize, int statMask) argument
[all...]
/haiku/src/system/kernel/device_manager/
H A Ddevfs.cpp1869 uint32 statMask)
1878 if (statMask & B_STAT_SIZE)
1883 if (statMask & B_STAT_MODE) {
1888 if (statMask & B_STAT_UID)
1890 if (statMask & B_STAT_GID)
1893 if (statMask & B_STAT_MODIFICATION_TIME)
1895 if (statMask & B_STAT_CREATION_TIME)
1898 notify_stat_changed(fs->id, get_parent_id(vnode), vnode->id, statMask);
1868 devfs_write_stat(fs_volume* _volume, fs_vnode* _vnode, const struct stat* stat, uint32 statMask) argument
/haiku/src/system/kernel/fs/
H A Dfifo.cpp1036 uint32 statMask)
1039 if ((statMask & B_STAT_SIZE) != 0)
1049 statMask);
1035 fifo_write_stat(fs_volume* volume, fs_vnode* vnode, const struct ::stat* st, uint32 statMask) argument
H A Drootfs.cpp1090 uint32 statMask)
1103 if (statMask & B_STAT_SIZE)
1108 if ((statMask & B_STAT_MODE) != 0) {
1117 if ((statMask & B_STAT_UID) != 0) {
1124 if ((statMask & B_STAT_GID) != 0) {
1131 if ((statMask & B_STAT_MODIFICATION_TIME) != 0) {
1137 if ((statMask & B_STAT_CREATION_TIME) != 0) {
1145 notify_stat_changed(fs->id, get_parent_id(vnode), vnode->id, statMask);
1089 rootfs_write_stat(fs_volume* _volume, fs_vnode* _vnode, const struct stat* stat, uint32 statMask) argument
H A Dvfs.cpp394 const struct stat* stat, int statMask);
413 const struct stat* statData, int statMask);
6619 int statMask)
6623 FUNCTION(("common_write_stat(vnode = %p, stat = %p, statMask = %d)\n",
6624 vnode, stat, statMask));
6627 && (statMask & B_STAT_SIZE) != 0) {
6634 return FS_CALL(vnode, write_stat, stat, statMask);
6659 const struct stat* stat, int statMask, bool kernel)
6662 "kernel %d\n", fd, path, stat, statMask, kernel));
6671 status = FS_CALL(vnode.Get(), write_stat, stat, statMask);
6618 common_write_stat(struct file_descriptor* descriptor, const struct stat* stat, int statMask) argument
6658 common_path_write_stat(int fd, char* path, bool traverseLeafLink, const struct stat* stat, int statMask, bool kernel) argument
6953 attr_write_stat(struct file_descriptor* descriptor, const struct stat* stat, int statMask) argument
8638 _kern_write_stat(int fd, const char* path, bool traverseLeafLink, const struct stat* stat, size_t statSize, int statMask) argument
9643 _user_write_stat(int fd, const char* userPath, bool traverseLeafLink, const struct stat* userStat, size_t statSize, int statMask) argument
[all...]
/haiku/src/tests/system/kernel/file_corruption/fs/
H A Dchecksumfs.cpp1431 const struct stat* st, uint32 statMask)
1452 if ((statMask & B_STAT_SIZE) != 0 && (uint64)st->st_size != node->Size()) {
1463 if ((statMask & B_STAT_UID) != 0 && st->st_uid != node->UID()) {
1472 if ((statMask & B_STAT_GID) != 0 && st->st_gid != node->GID()) {
1481 if ((statMask & B_STAT_MODE) != 0) {
1491 if ((statMask & B_STAT_CREATION_TIME) != 0) {
1500 if ((statMask & B_STAT_MODIFICATION_TIME) != 0) {
1510 if ((statMask & B_STAT_CHANGE_TIME) != 0) {
1529 return transaction.Commit(StatChangedNotification(node, statMask));
1430 checksumfs_write_stat(fs_volume* fsVolume, fs_vnode* vnode, const struct stat* st, uint32 statMask) argument
/haiku/src/tools/fs_shell/
H A Dvfs.cpp225 const struct fssh_stat *, int statMask);
244 const struct fssh_stat *, int statMask);
3892 const struct fssh_stat *stat, int statMask)
3896 FUNCTION(("common_write_stat(vnode = %p, stat = %p, statMask = %d)\n", vnode, stat, statMask));
3900 return FS_CALL(vnode, write_stat, stat, statMask);
3932 const struct fssh_stat *stat, int statMask, bool kernel)
3937 FUNCTION(("common_write_stat: fd: %d, path '%s', stat %p, stat_mask %d, kernel %d\n", fd, path, stat, statMask, kernel));
3944 status = FS_CALL(vnode, write_stat, stat, statMask);
4216 const struct fssh_stat *stat, int statMask)
3891 common_write_stat(struct file_descriptor *descriptor, const struct fssh_stat *stat, int statMask) argument
3931 common_path_write_stat(int fd, char *path, bool traverseLeafLink, const struct fssh_stat *stat, int statMask, bool kernel) argument
4215 attr_write_stat(struct file_descriptor *descriptor, const struct fssh_stat *stat, int statMask) argument
5554 _kern_write_stat(int fd, const char *path, bool traverseLeafLink, const fssh_struct_stat *stat, fssh_size_t statSize, int statMask) argument
[all...]

Completed in 125 milliseconds

12