Lines Matching refs:results

64 	nvlist_t	*results;  in hp_init()  local
87 rv = i_hp_call_hotplugd(args, &results); in hp_init()
93 if ((rv == 0) && (results != NULL)) { in hp_init()
94 rv = i_hp_parse_results(results, &root, NULL); in hp_init()
95 nvlist_free(results); in hp_init()
511 nvlist_t *results; in hp_set_state() local
566 rv = i_hp_call_hotplugd(args, &results); in hp_set_state()
572 if ((rv == 0) && (results != NULL)) { in hp_set_state()
573 rv = i_hp_parse_results(results, &root, NULL); in hp_set_state()
574 nvlist_free(results); in hp_set_state()
593 nvlist_t *results; in hp_set_private() local
626 rv = i_hp_call_hotplugd(args, &results); in hp_set_private()
632 if ((rv == 0) && (results != NULL)) { in hp_set_private()
633 rv = i_hp_parse_results(results, NULL, &values); in hp_set_private()
634 nvlist_free(results); in hp_set_private()
653 nvlist_t *results; in hp_get_private() local
686 rv = i_hp_call_hotplugd(args, &results); in hp_get_private()
692 if ((rv == 0) && (results != NULL)) { in hp_get_private()
693 rv = i_hp_parse_results(results, NULL, &values); in hp_get_private()
694 nvlist_free(results); in hp_get_private()
1172 nvlist_t *results = NULL; in i_hp_call_hotplugd() local
1238 door_arg.data_size, &results, 0)) != 0) { in i_hp_call_hotplugd()
1241 results = NULL; in i_hp_call_hotplugd()
1253 if ((results != NULL) && in i_hp_call_hotplugd()
1254 (nvlist_lookup_uint64(results, HPD_SEQNUM, &seqnum) == 0)) { in i_hp_call_hotplugd()
1266 *resultsp = results; in i_hp_call_hotplugd()
1332 i_hp_parse_results(nvlist_t *results, hp_node_t *rootp, char **optionsp) in i_hp_parse_results() argument
1342 if (nvlist_lookup_byte_array(results, HPD_INFO, in i_hp_parse_results()
1354 if ((nvlist_lookup_string(results, HPD_OPTIONS, &str) == 0) && in i_hp_parse_results()
1361 if (nvlist_lookup_int32(results, HPD_STATUS, &rv) != 0) { in i_hp_parse_results()