Lines Matching refs:pInfo

872 static int vboxfuseOp_opendir(const char *pszPath, struct fuse_file_info *pInfo)
892 pInfo->fh = (uintptr_t)pNode;
907 off_t offDir, struct fuse_file_info *pInfo)
909 PVBOXFUSEDIR pDir = (PVBOXFUSEDIR)(uintptr_t)pInfo->fh;
965 static int vboxfuseOp_releasedir(const char *pszPath, struct fuse_file_info *pInfo)
967 PVBOXFUSEDIR pDir = (PVBOXFUSEDIR)(uintptr_t)pInfo->fh;
970 pInfo->fh = 0;
996 static int vboxfuseOp_open(const char *pszPath, struct fuse_file_info *pInfo)
998 LogFlow(("vboxfuseOp_open(\"%s\", .flags=%#x)\n", pszPath, pInfo->flags));
1004 if (pInfo->flags & (O_APPEND | O_NONBLOCK | O_SYMLINK | O_NOCTTY | O_SHLOCK | O_EXLOCK | O_ASYNC
1007 if ((pInfo->flags & O_ACCMODE) == O_ACCMODE)
1010 if (pInfo->flags & ( O_APPEND | O_ASYNC | O_DIRECT /* | O_LARGEFILE ? */
1014 if ((pInfo->flags & O_ACCMODE) == O_ACCMODE)
1017 if (pInfo->flags & ( O_APPEND | O_ASYNC | O_DIRECT /* | O_LARGEFILE ? */
1021 if ((pInfo->flags & O_ACCMODE) == O_ACCMODE)
1046 if (pInfo->flags & O_DIRECTORY)
1049 if ( (pInfo->flags & O_ACCMODE) == O_WRONLY
1050 || (pInfo->flags & O_ACCMODE) == O_RDWR)
1058 else if ((pInfo->flags & O_ACCMODE) == O_RDONLY)
1089 pInfo->fh = (uintptr_t)pNode;
1104 static int vboxfuseOp_release(const char *pszPath, struct fuse_file_info *pInfo)
1106 PVBOXFUSENODE pNode = (PVBOXFUSENODE)(uintptr_t)pInfo->fh;
1108 pInfo->fh = 0;
1122 if ( (pInfo->flags & O_ACCMODE) == O_WRONLY
1123 || (pInfo->flags & O_ACCMODE) == O_RDWR)
1128 else if ((pInfo->flags & O_ACCMODE) == O_RDONLY)
1163 off_t offFile, struct fuse_file_info *pInfo)
1171 PVBOXFUSENODE pNode = (PVBOXFUSENODE)(uintptr_t)pInfo->fh;
1180 PVBOXFUSEFLATIMAGE pFlatImage = (PVBOXFUSEFLATIMAGE)(uintptr_t)pInfo->fh;
1283 off_t offFile, struct fuse_file_info *pInfo)
1291 PVBOXFUSENODE pNode = (PVBOXFUSENODE)(uintptr_t)pInfo->fh;
1300 PVBOXFUSEFLATIMAGE pFlatImage = (PVBOXFUSEFLATIMAGE)(uintptr_t)pInfo->fh;