HomeSort by: relevance | last modified time | path
    Searched defs:nvl (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/libnv/dist/
cnvlist.c 143 nvlist_t *nvl; \
149 nvl = nvpair_nvlist(cookie); \
151 nvlist_remove_nvpair(nvl, cookie); \
171 nvlist_t *nvl; \
177 nvl = nvpair_nvlist(cookie); \
179 nvlist_remove_nvpair(nvl, cookie); \
198 nvlist_t *nvl; local in function:cnvlist_take_binary
202 nvl = nvpair_nvlist(cookie);
204 nvlist_remove_nvpair(nvl, cookie);
nv_kern_netbsd.c 78 nvlist_t *nvl; local in function:nvlist_copyin
94 nvl = nvlist_unpack(buf, len, flags);
96 if (nvl == NULL) {
99 *nvlp = nvl;
104 nvlist_copyout(nvlist_ref_t *nref, const nvlist_t *nvl)
111 buf = nvlist_pack(nvl, &len);
133 nref->flags = nvlist_flags(nvl);
144 nvlist_xfer_ioctl(int fd, unsigned long cmd, const nvlist_t *nvl,
152 if (nvl) {
156 buf = nvlist_pack(nvl, &nref.len)
    [all...]
nvpair.c 222 nvpair_insert(struct nvl_head *head, nvpair_t *nvp, nvlist_t *nvl)
227 PJDLOG_ASSERT((nvlist_flags(nvl) & NV_FLAG_NO_UNIQUE) != 0 ||
228 !nvlist_exists(nvl, nvpair_name(nvp)));
231 nvp->nvp_list = nvl;
237 nvlist_t *nvl; local in function:nvpair_remove_nvlist
240 nvl = __DECONST(nvlist_t *, nvpair_get_nvlist(nvp));
241 PJDLOG_ASSERT(nvl != NULL);
242 nvlist_set_parent(nvl, NULL);
261 nvpair_remove(struct nvl_head *head, nvpair_t *nvp, const nvlist_t *nvl)
265 PJDLOG_ASSERT(nvp->nvp_list == nvl);
1279 nvlist_t *nvl; local in function:nvpair_create_nvlist
2010 nvlist_t *nvl, *prev; local in function:nvpair_append_nvlist_array
    [all...]
nvlist.c 119 #define NVLIST_MAGIC 0x6e766c /* "nvl" */
129 #define NVLIST_ASSERT(nvl) do { \
130 PJDLOG_ASSERT((nvl) != NULL); \
131 PJDLOG_ASSERT((nvl)->nvl_magic == NVLIST_MAGIC); \
153 nvlist_t *nvl; local in function:nvlist_create
157 nvl = nv_malloc(sizeof(*nvl));
158 if (nvl == NULL)
160 nvl->nvl_error = 0;
161 nvl->nvl_flags = flags
1149 nvlist_t *nvl, *retnvl, *tmpnvl, *array; local in function:nvlist_xunpack
1327 nvlist_t *nvl, *ret; local in function:nvlist_recv
    [all...]

Completed in 13 milliseconds