Lines Matching refs:fFS

698 	fFS(NULL),
751 fFS = _FileSystem()->GetFS();
758 if (fFS != NULL) {
762 context->private_data = fFS->userData;
772 fuseError = fuse_fs_getattr(fFS, "/", &st);
865 fuseError = fuse_fs_open(fFS, path, &cookie);
867 fuseError = fuse_fs_fsync(fFS, path, 0, &cookie);
869 fuse_fs_flush(fFS, path, &cookie);
870 fuse_fs_release(fFS, path, &cookie);
887 if (_FileSystem()->HasHaikuFuseExtensions() && fFS->ops.ioctl != NULL) {
888 int fuseError = fuse_fs_ioctl(fFS, "/", FUSE_HAIKU_GET_DRIVE_INFO, info, NULL,
903 if (fFS->ops.statfs == NULL)
906 fuseError = fuse_fs_statfs(fFS, "/", &st);
1055 fuseError = fuse_fs_open(fFS, path, cookie);
1087 fuse_fs_release(fFS, path, cookie);
1160 fuseError = fuse_fs_open(fFS, path, &cookie);
1162 fuseError = fuse_fs_fsync(fFS, path, 0, &cookie);
1164 fuse_fs_flush(fFS, path, &cookie);
1165 fuse_fs_release(fFS, path, &cookie);
1213 int fuseError = fuse_fs_readlink(fFS, path, buffer, bufferSize);
1258 fuseError = fuse_fs_symlink(fFS, target, path);
1318 fuseError = fuse_fs_link(fFS, oldPath, newPath);
1369 fuseError = fuse_fs_unlink(fFS, path);
1429 fuseError = fuse_fs_rename(fFS, oldPath, newPath);
1479 fuseError = fuse_fs_access(fFS, path, mode);
1522 fuseError = fuse_fs_getattr(fFS, path, st);
1561 int fuseError = fuse_fs_chmod(fFS, path, st->st_mode);
1570 int fuseError = fuse_fs_chown(fFS, path, uid, gid);
1578 int fuseError = fuse_fs_truncate(fFS, path, st->st_size);
1595 int fuseError = fuse_fs_getattr(fFS, path, &currentStat);
1605 int fuseError = fuse_fs_utimens(fFS, path, tv);
1685 fuseError = fuse_fs_create(fFS, path, mode, cookie);
1694 fuse_fs_flush(fFS, path, cookie);
1695 fuse_fs_release(fFS, path, cookie);
1696 fuse_fs_unlink(fFS, path);
1763 fuseError = fuse_fs_open(fFS, path, cookie);
1782 fuseError = fuse_fs_ftruncate(fFS, path, 0, cookie);
1785 fuseError = fuse_fs_truncate(fFS, path, 0);
1788 fuse_fs_flush(fFS, path, cookie);
1789 fuse_fs_release(fFS, path, cookie);
1825 fuseError = fuse_fs_getattr(fFS, path, &st);
1879 fuseError = fuse_fs_flush(fFS, path, cookie);
1926 fuseError = fuse_fs_release(fFS, path, cookie);
2041 fuseError = fuse_fs_mkdir(fFS, path, mode);
2093 fuseError = fuse_fs_rmdir(fFS, path);
2149 if (fFS->ops.readdir == NULL && fFS->ops.getdir != NULL) {
2155 int fuseError = fuse_fs_opendir(fFS, path, cookie);
2207 fuseError = fuse_fs_releasedir(fFS, path, cookie);
2291 fuseError = fFS->ops.getdir(path, (fuse_dirh_t)&readDirBuffer,
2295 fuseError = fuse_fs_readdir(fFS, path, &readDirBuffer,
2420 listSize = fuse_fs_listxattr(fFS, path, NULL, 0);
2437 bytesRead = fuse_fs_listxattr(fFS, path, cookie->AttributesBuffer(), listSize);
2516 attrSize = fuse_fs_getxattr(fFS, path, name, NULL, 0);
2547 bytesRead = fuse_fs_getxattr(fFS, path, name, cookie->Buffer(), attrSize);
2752 fuseError = fuse_fs_getattr(fFS, path, &st);
3391 fuseError = fuse_fs_getattr(fFS, path, &st);
3523 fuseError = fuse_fs_getattr(fFS, path, &st);
3640 fuseError = fuse_fs_write(fFS, path, buffer, length, pos, cookie);
3642 fuseError = fuse_fs_read(fFS, path, buffer, length, pos, cookie);