Searched refs:nvbuf (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.3-release/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dioctl.c204 void *nvbuf; local
208 nvbuf = malloc(nvsz);
210 zc->zc_nvlist_dst = (uintptr_t)nvbuf;
215 errno = nvlist_unpack(nvbuf, zc->zc_nvlist_dst_size, &nvl, 0);
221 free(nvbuf);
225 free(nvbuf);
314 char *name, *nvbuf; local
329 nvbuf = malloc(nvsz);
330 err = nvlist_pack(nvl, &nvbuf, &nvsz, NV_ENCODE_NATIVE, 0);
335 zc.zc_nvlist_src = (uintptr_t)nvbuf;
[all...]
/freebsd-10.3-release/sys/cddl/contrib/opensolaris/common/nvpair/
H A Dopensolaris_nvpair_alloc_fixed.c49 typedef struct nvbuf { struct
/freebsd-10.3-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_dataset.c4656 void *nvbuf; local
4665 nvbuf = malloc(nvsz);
4666 if (nvbuf == NULL) {
4672 zc.zc_nvlist_dst = (uintptr_t)nvbuf;
4682 free(nvbuf);
4703 int rc = nvlist_unpack(nvbuf, zc.zc_nvlist_dst_size, nvl, 0);
4712 free(nvbuf);
4722 char *nvbuf; local
4733 nvbuf = malloc(nvsz);
4735 err = nvlist_pack(nvl, &nvbuf,
[all...]

Completed in 145 milliseconds