Lines Matching refs:nvbuf
218 void *nvbuf; in ioctl_with_dstnv() local
222 nvbuf = malloc(nvsz); in ioctl_with_dstnv()
224 zc->zc_nvlist_dst = (uintptr_t)nvbuf; in ioctl_with_dstnv()
229 errno = nvlist_unpack(nvbuf, zc->zc_nvlist_dst_size, &nvl, 0); in ioctl_with_dstnv()
235 free(nvbuf); in ioctl_with_dstnv()
239 free(nvbuf); in ioctl_with_dstnv()
328 char *name, *nvbuf; in py_set_fsacl() local
343 nvbuf = malloc(nvsz); in py_set_fsacl()
344 err = nvlist_pack(nvl, &nvbuf, &nvsz, NV_ENCODE_NATIVE, 0); in py_set_fsacl()
349 zc.zc_nvlist_src = (uintptr_t)nvbuf; in py_set_fsacl()
353 free(nvbuf); in py_set_fsacl()