Lines Matching refs:mode

620 	void AddDump(TraceOutput& out, const char* mode)
624 mode, fVnode, fMountID, fNodeID, fCookie, fPos,
3379 kprintf(" no. type %*s ref open mode pos %*s\n",
3975 check_access_permissions(int accessMode, mode_t mode, gid_t nodeGroupID,
3979 int userPermissions = (mode & S_IRWXU) >> 6;
3980 int groupPermissions = (mode & S_IRWXG) >> 3;
3981 int otherPermissions = mode & S_IRWXO;
3993 if (S_ISDIR(mode))
4499 \param mode The type and permissions for the node to be created.
4511 vfs_create_special_node(const char* path, fs_vnode* subVnode, mode_t mode,
4548 mode, flags, _superVnode != NULL ? _superVnode : &superVnode, &nodeID);
6206 // Set file descriptor open mode
6230 // Get file descriptor open mode
6310 // the open mode must match the lock type
6459 common_create_symlink(int fd, char* path, const char* toPath, int mode,
6467 "mode = %d, kernel = %d)\n", fd, path, toPath, mode, kernel));
6475 status = FS_CALL(vnode.Get(), create_symlink, name, toPath, mode);
6543 common_access(int fd, char* path, int mode, bool effectiveUserGroup, bool kernel)
6555 status = FS_CALL(vnode.Get(), access, mode);
8292 \param openMode The open mode.
8478 \param mode The access permissions the new symlink shall have.
8483 _kern_create_symlink(int fd, const char* path, const char* toPath, int mode)
8490 toPath, mode, true);
8564 _kern_access(int fd, const char* path, int mode, bool effectiveUserGroup)
8570 return common_access(fd, pathBuffer.LockBuffer(), mode, effectiveUserGroup,
9387 int mode)
9406 return common_create_symlink(fd, path, toPath, mode, false);
9579 _user_access(int fd, const char* userPath, int mode, bool effectiveUserGroup)
9593 return common_access(fd, path, mode, effectiveUserGroup, false);