Lines Matching refs:model
1072 const char *model; in get_model() local
1076 if (sd_device_get_property_value(d, "ID_MODEL_FROM_DATABASE", &model) >= 0) in get_model()
1077 return model; in get_model()
1079 if (sd_device_get_property_value(d, "ID_MODEL", &model) >= 0) in get_model()
1080 return model; in get_model()
1166 const char *model, *label; in acquire_description() local
1171 model = get_model(d); in acquire_description()
1177 if (model && label) in acquire_description()
1178 arg_description = strjoin(model, " ", label); in acquire_description()
1181 else if (model) in acquire_description()
1182 arg_description = strdup(model); in acquire_description()