Lines Matching defs:data
122 * The data should be "quiet" for this interval (in seconds) before the
123 * vhci cached data is flushed to the disk.
628 char *data;
646 &data) == DDI_SUCCESS)) {
647 if (strcmp(data, "yes") == 0) {
651 ddi_prop_free(data);
654 ddi_prop_free(data);
1157 char *data;
1173 &data) != DDI_PROP_SUCCESS) {
1177 if (strcmp(data, guid) != 0) {
1178 ddi_prop_free(data);
1181 ddi_prop_free(data);
1527 * would result in loss of access to device data.
1989 * the block I/O data transfer structure ("buf") as one of the
4457 * Get buffer size needed to pack the property data.
4481 * mdi_pathinfo_t node to get a consistent data
4507 mdi_prop_update_byte(mdi_pathinfo_t *pip, char *name, uchar_t data)
4520 rv = nvlist_add_byte(MDI_PI(pip)->pi_prop, name, data);
4530 mdi_prop_update_byte_array(mdi_pathinfo_t *pip, char *name, uchar_t *data,
4544 rv = nvlist_add_byte_array(MDI_PI(pip)->pi_prop, name, data, nelements);
4554 mdi_prop_update_int(mdi_pathinfo_t *pip, char *name, int data)
4567 rv = nvlist_add_int32(MDI_PI(pip)->pi_prop, name, (int32_t)data);
4577 mdi_prop_update_int64(mdi_pathinfo_t *pip, char *name, int64_t data)
4590 rv = nvlist_add_int64(MDI_PI(pip)->pi_prop, name, data);
4600 mdi_prop_update_int_array(mdi_pathinfo_t *pip, char *name, int *data,
4614 rv = nvlist_add_int32_array(MDI_PI(pip)->pi_prop, name, (int32_t *)data,
4625 mdi_prop_update_string(mdi_pathinfo_t *pip, char *name, char *data)
4638 rv = nvlist_add_string(MDI_PI(pip)->pi_prop, name, data);
4648 mdi_prop_update_string_array(mdi_pathinfo_t *pip, char *name, char **data,
4662 rv = nvlist_add_string_array(MDI_PI(pip)->pi_prop, name, data,
4670 * Look for byte property identified by name. The data returned
4675 mdi_prop_lookup_byte(mdi_pathinfo_t *pip, char *name, uchar_t *data)
4682 rv = nvlist_lookup_byte(MDI_PI(pip)->pi_prop, name, data);
4689 * Look for byte array property identified by name. The data
4694 mdi_prop_lookup_byte_array(mdi_pathinfo_t *pip, char *name, uchar_t **data,
4702 rv = nvlist_lookup_byte_array(MDI_PI(pip)->pi_prop, name, data,
4709 * Look for int property identified by name. The data returned
4714 mdi_prop_lookup_int(mdi_pathinfo_t *pip, char *name, int *data)
4721 rv = nvlist_lookup_int32(MDI_PI(pip)->pi_prop, name, (int32_t *)data);
4727 * Look for int64 property identified by name. The data returned
4732 mdi_prop_lookup_int64(mdi_pathinfo_t *pip, char *name, int64_t *data)
4738 rv = nvlist_lookup_int64(MDI_PI(pip)->pi_prop, name, data);
4744 * Look for int array property identified by name. The data
4749 mdi_prop_lookup_int_array(mdi_pathinfo_t *pip, char *name, int **data,
4758 (int32_t **)data, nelements);
4764 * Look for string property identified by name. The data
4769 mdi_prop_lookup_string(mdi_pathinfo_t *pip, char *name, char **data)
4776 rv = nvlist_lookup_string(MDI_PI(pip)->pi_prop, name, data);
4782 * Look for string array property identified by name. The data
4787 mdi_prop_lookup_string_array(mdi_pathinfo_t *pip, char *name, char ***data,
4795 rv = nvlist_lookup_string_array(MDI_PI(pip)->pi_prop, name, data,
4803 * functions return the pointer to actual property data and not a
4804 * copy of it. So the data returned is valid as long as
4809 mdi_prop_free(void *data)
7274 mdi_client_set_vhci_private(dev_info_t *dip, void *data)
7280 ct->ct_vprivate = data;
7471 * initialize the vhci cache related data structures and read the on-disk
7472 * vhci cached data into memory.
7527 "%s: data file corrupted, will recreate",
7844 * VHCI busconfig cached data is stored in the form of a nvlist on the disk.
9396 "%s: data file corrupted, will recreate", filename);