Lines Matching defs:fstype

60 safs_get_name(sa_fs_t fstype)
64 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
69 safs_init_fs_handle(libshare_handle_t *shdl, sa_fs_t fstype, void *hdl)
71 int i = SAFS_INDEX(fstype);
73 if (fstype == SA_FS_LEGACY)
77 const char *plugin_name = safs_get_name(fstype);
89 safs_get_fs_handle(libshare_handle_t *shdl, sa_fs_t fstype, void **hdlp)
91 int i = SAFS_INDEX(fstype);
97 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
115 safs_close(libshare_handle_t *shdl, sa_fs_t fstype)
117 int i = SAFS_INDEX(fstype);
131 safs_reset(libshare_handle_t *shdl, sa_fs_t fstype)
134 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
240 sa_fs_t fstype;
242 fstype = safs_path_to_fstype(shdl, path);
243 if (fstype == SA_FS_NOTFOUND)
246 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
258 sa_fs_t fstype;
260 fstype = safs_path_to_fstype(shdl, mntpnt);
261 if (fstype == SA_FS_NOTFOUND)
263 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
279 sa_fs_t fstype;
282 fstype = safs_path_to_fstype(shdl, mntpnt);
283 if (fstype == SA_FS_NOTFOUND)
285 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
296 sa_fs_t fstype;
302 fstype = safs_path_to_fstype(shdl, path);
303 if (fstype == SA_FS_NOTFOUND)
305 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
317 sa_fs_t fstype;
319 fstype = safs_path_to_fstype(shdl, fs_name);
320 if (fstype == SA_FS_NOTFOUND)
322 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
332 sa_fs_t fstype;
335 fstype = safs_path_to_fstype(shdl, srhp->srh_mntpnt);
336 if (fstype == SA_FS_NOTFOUND)
338 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
349 sa_fs_t fstype;
352 fstype = safs_path_to_fstype(shdl, srhp->srh_mntpnt);
353 if (fstype == SA_FS_NOTFOUND)
355 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
365 sa_fs_t fstype;
368 fstype = safs_path_to_fstype(shdl, srhp->srh_mntpnt);
369 if (fstype == SA_FS_NOTFOUND)
371 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
382 sa_fs_t fstype;
385 fstype = safs_path_to_fstype(shdl, fs_name);
386 if (fstype == SA_FS_NOTFOUND)
388 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
399 sa_fs_t fstype;
402 fstype = safs_path_to_fstype(shdl, sh_path);
403 if (fstype == SA_FS_NOTFOUND)
405 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
416 sa_fs_t fstype;
419 fstype = safs_path_to_fstype(shdl, sh_path);
420 if (fstype == SA_FS_NOTFOUND)
422 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
434 sa_fs_t fstype;
438 fstype = safs_path_to_fstype(shdl, sh_path);
439 if (fstype == SA_FS_NOTFOUND)
441 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
448 *fstypep = fstype;
456 sa_fs_t fstype;
459 fstype = safs_real_fstype(mntpnt);
460 if (fstype == SA_FS_NOTFOUND)
462 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);
473 safs_share_notify(libshare_handle_t *shdl, sa_fs_t fstype,
481 ops = (sa_fs_ops_t *)saplugin_find_ops(SA_PLUGIN_FS, fstype);