Lines Matching defs:actual
332 fs_copyfsops(const fs_operation_def_t *template, vfsops_t *actual,
369 return (fs_build_vector(actual, unused_ops, vfs_ops_table, template));
380 vfs_setfsops(int fstype, const fs_operation_def_t *template, vfsops_t **actual)
404 if (actual != NULL)
405 *actual = &vfssw[fstype].vsw_vfsops;
417 vfs_makefsops(const fs_operation_def_t *template, vfsops_t **actual)
422 *actual = (vfsops_t *)kmem_alloc(sizeof (vfsops_t), KM_SLEEP);
424 error = fs_copyfsops(template, *actual, &unused_ops);
426 kmem_free(*actual, sizeof (vfsops_t));
427 *actual = NULL;
3808 * us the actual first entry.
3842 * us the actual first entry.
3901 * following avl_nearest will give us the actual last entry
4146 * Sync all of the mounted filesystems, and then wait for the actual i/o to