Lines Matching refs:label
1086 const char *label; in get_label() local
1090 if (sd_device_get_property_value(d, "ID_FS_LABEL", &label) >= 0) in get_label()
1091 return label; in get_label()
1093 if (sd_device_get_property_value(d, "ID_PART_ENTRY_NAME", &label) >= 0) in get_label()
1094 return label; in get_label()
1166 const char *model, *label; in acquire_description() local
1173 label = get_label(d); in acquire_description()
1174 if (!label) in acquire_description()
1175 (void) sd_device_get_property_value(d, "ID_PART_ENTRY_NUMBER", &label); in acquire_description()
1177 if (model && label) in acquire_description()
1178 arg_description = strjoin(model, " ", label); in acquire_description()
1179 else if (label) in acquire_description()
1180 arg_description = strdup(label); in acquire_description()