Searched refs:di_val (Results 1 – 2 of 2) sorted by relevance
/titanic_50/usr/src/cmd/picl/plugins/sun4v/mdesc/ |
H A D | dr.c | 117 char *di_val; in add_devinfo_props() local 128 di_val = di_bus_addr(di_node); in add_devinfo_props() 129 if (di_val) { in add_devinfo_props() 131 PICL_PTYPE_CHARSTRING, PICL_READ, strlen(di_val) + 1, in add_devinfo_props() 133 (void) ptree_create_and_add_prop(nodeh, &propinfo, di_val, in add_devinfo_props() 137 di_val = di_binding_name(di_node); in add_devinfo_props() 138 if (di_val) { in add_devinfo_props() 140 PICL_PTYPE_CHARSTRING, PICL_READ, strlen(di_val) + 1, in add_devinfo_props() 142 (void) ptree_create_and_add_prop(nodeh, &propinfo, di_val, in add_devinfo_props() 146 di_val = di_driver_name(di_node); in add_devinfo_props() [all …]
|
/titanic_50/usr/src/cmd/picl/plugins/common/devtree/ |
H A D | picldevtree.c | 970 add_boolean_prop(picl_nodehdl_t nodeh, ptree_propinfo_t propinfo, char *di_val) in add_boolean_prop() argument 973 PICL_PTYPE_VOID, PICL_READ, (size_t)0, di_val, NULL, NULL); in add_boolean_prop() 978 add_uints_prop(picl_nodehdl_t nodeh, ptree_propinfo_t propinfo, char *di_val, in add_uints_prop() argument 983 PICL_PTYPE_UNSIGNED_INT, PICL_READ, sizeof (int), di_val, in add_uints_prop() 987 PICL_PTYPE_BYTEARRAY, PICL_READ, len * sizeof (int), di_val, in add_uints_prop() 994 add_strings_prop(picl_nodehdl_t nodeh, ptree_propinfo_t propinfo, char *di_val, in add_strings_prop() argument 999 PICL_PTYPE_CHARSTRING, PICL_READ, strlen(sdata) + 1, di_val, in add_strings_prop() 1003 (void) add_string_list_prop(nodeh, di_val, sdata, len); in add_strings_prop() 1008 add_bytes_prop(picl_nodehdl_t nodeh, ptree_propinfo_t propinfo, char *di_val, in add_bytes_prop() argument 1012 PICL_PTYPE_BYTEARRAY, PICL_READ, len, di_val, NULL, NULL); in add_bytes_prop() [all …]
|