Lines Matching refs:onvl
189 nvlist_t *onvl;
193 * Get the address line in the nvlist `onvl' from ipmgmtd daemon.
195 status = i_ipadm_get_db_addr(iph, NULL, ipaddr->ipadm_aobjname, &onvl);
201 if ((nvp = nvlist_next_nvpair(onvl, NULL)) == NULL ||
220 nvlist_free(onvl);
223 nvlist_free(onvl);
291 nvlist_t *onvl, *anvl = NULL;
301 * Get the address line in the nvlist `onvl' from ipmgmtd daemon.
303 status = i_ipadm_get_db_addr(iph, NULL, aobjname, &onvl);
308 * onvl should contain exactly one pair, an nvlist which represents
312 while ((nvp = nvlist_next_nvpair(onvl, nvp)) != NULL) {
358 nvlist_free(onvl);
370 nvlist_t *onvl;
374 status = i_ipadm_get_db_addr(iph, NULL, aobjname, &onvl);
378 status = i_ipadm_nvl2addrconf_addrobj(onvl, ipaddr);
383 nvlist_free(onvl);
934 nvlist_t *onvl = NULL;
957 status = i_ipadm_get_db_addr(iph, ifname, NULL, &onvl);
989 * `onvl' will contain all the address lines from the db. Each line
997 * `onvl'.
999 for (nvp = nvlist_next_nvpair(onvl, NULL); nvp != NULL;
1000 nvp = nvlist_next_nvpair(onvl, nvp)) {
1040 nvlist_free(onvl);
1044 nvlist_free(onvl);
3014 * Reads all the address lines from the persistent DB into the nvlist `onvl',
3022 const char *aobjname, nvlist_t **onvl)
3046 err = nvlist_unpack(nvlbuf, nvlsize, onvl, NV_ENCODE_NATIVE);