Lines Matching defs:hdl
105 sa_cache_init(void *hdl)
107 NOTE(ARGUNUSED(hdl))
113 sa_cache_fini(void *hdl)
115 NOTE(ARGUNUSED(hdl))
207 sa_cache_find_init(const char *mntpnt, sa_proto_t proto, void **hdl)
213 if (hdl == NULL)
234 *hdl = calloc(1, sizeof (sharefs_find_hdl_t));
235 if (*hdl == NULL)
241 bcopy(&ioc->hdl, *hdl, sizeof (sharefs_find_hdl_t));
253 sa_cache_find_next(void *hdl, nvlist_t **share)
259 if (hdl == NULL || share == NULL)
266 bcopy(hdl, &ioc->hdl, sizeof (sharefs_find_hdl_t));
294 bcopy(&ioc->hdl, hdl, sizeof (sharefs_find_hdl_t));
306 sa_cache_find_fini(void *hdl)
316 bcopy(hdl, &ioc->hdl, sizeof (sharefs_find_hdl_t));
331 free(hdl);