Lines Matching refs:nvbuf
203 void *nvbuf; in ioctl_with_dstnv() local
207 nvbuf = malloc(nvsz); in ioctl_with_dstnv()
209 zc->zc_nvlist_dst = (uintptr_t)nvbuf; in ioctl_with_dstnv()
214 errno = nvlist_unpack(nvbuf, zc->zc_nvlist_dst_size, &nvl, 0); in ioctl_with_dstnv()
220 free(nvbuf); in ioctl_with_dstnv()
224 free(nvbuf); in ioctl_with_dstnv()
313 char *name, *nvbuf; in py_set_fsacl() local
328 nvbuf = malloc(nvsz); in py_set_fsacl()
329 err = nvlist_pack(nvl, &nvbuf, &nvsz, NV_ENCODE_NATIVE, 0); in py_set_fsacl()
334 zc.zc_nvlist_src = (uintptr_t)nvbuf; in py_set_fsacl()
338 free(nvbuf); in py_set_fsacl()