Lines Matching defs:hdl
36 sacache_init(void *hdl)
44 return (ops->sac_init(hdl));
48 sacache_fini(void *hdl)
54 ops->sac_fini(hdl);
189 * hdl : place holder for returned find handle
195 * SA_OK : init was successful, returned hdl is valid
202 * The returned 'hdl' is passed to subsequent calls to
207 sacache_share_find_init(const char *sh_path, sa_proto_t proto, void **hdl)
215 return (ops->sac_share_find_init(sh_path, proto, hdl));
222 * hdl : find handle returned from previous call to
240 sacache_share_find_next(void *hdl, nvlist_t **share)
248 return (ops->sac_share_find_next(hdl, share));
255 * hdl : find handle returned from previous call to
259 * SA_OK : hdl was cleaned up successfully.
265 sacache_share_find_fini(void *hdl)
273 return (ops->sac_share_find_fini(hdl));
282 * hdl : place holder for returned find handle
288 * SA_OK : init was successful, returned hdl is valid
293 * The returned 'hdl' is passed to subsequent calls to
298 sacache_share_ds_find_init(const char *dataset, sa_proto_t proto, void **hdl)
306 return (ops->sac_share_ds_find_init(dataset, proto, hdl));
313 * hdl : find handle returned from previous call to
330 sacache_share_ds_find_get(void *hdl, nvlist_t **share)
338 return (ops->sac_share_ds_find_get(hdl, share));
345 * hdl : find handle returned from previous call to
349 * SA_OK : hdl was cleaned up successfully.
355 sacache_share_ds_find_fini(void *hdl)
363 return (ops->sac_share_ds_find_fini(hdl));