Home
last modified time | relevance | path

Searched refs:di_val (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/picl/plugins/sun4v/mdesc/
H A Ddr.c115 char *di_val; in add_devinfo_props() local
126 di_val = di_bus_addr(di_node); in add_devinfo_props()
127 if (di_val) { in add_devinfo_props()
129 PICL_PTYPE_CHARSTRING, PICL_READ, strlen(di_val) + 1, in add_devinfo_props()
131 (void) ptree_create_and_add_prop(nodeh, &propinfo, di_val, in add_devinfo_props()
135 di_val = di_binding_name(di_node); in add_devinfo_props()
136 if (di_val) { in add_devinfo_props()
138 PICL_PTYPE_CHARSTRING, PICL_READ, strlen(di_val) + 1, in add_devinfo_props()
140 (void) ptree_create_and_add_prop(nodeh, &propinfo, di_val, in add_devinfo_props()
144 di_val = di_driver_name(di_node); in add_devinfo_props()
[all …]
/illumos-gate/usr/src/cmd/picl/plugins/common/devtree/
H A Dpicldevtree.c988 add_boolean_prop(picl_nodehdl_t nodeh, ptree_propinfo_t propinfo, char *di_val) in add_boolean_prop() argument
991 PICL_PTYPE_VOID, PICL_READ, (size_t)0, di_val, NULL, NULL); in add_boolean_prop()
996 add_uints_prop(picl_nodehdl_t nodeh, ptree_propinfo_t propinfo, char *di_val, in add_uints_prop() argument
1001 PICL_PTYPE_UNSIGNED_INT, PICL_READ, sizeof (int), di_val, in add_uints_prop()
1005 PICL_PTYPE_BYTEARRAY, PICL_READ, len * sizeof (int), di_val, in add_uints_prop()
1012 add_strings_prop(picl_nodehdl_t nodeh, ptree_propinfo_t propinfo, char *di_val, in add_strings_prop() argument
1017 PICL_PTYPE_CHARSTRING, PICL_READ, strlen(sdata) + 1, di_val, in add_strings_prop()
1021 (void) add_string_list_prop(nodeh, di_val, sdata, len); in add_strings_prop()
1026 add_bytes_prop(picl_nodehdl_t nodeh, ptree_propinfo_t propinfo, char *di_val, in add_bytes_prop() argument
1030 PICL_PTYPE_BYTEARRAY, PICL_READ, len, di_val, NULL, NULL); in add_bytes_prop()
[all …]