Lines Matching defs:description
101 char *description;
515 strna(s->description), event_source_type_to_string(s->type));
887 free(s->description);
1187 /* Use the signal name as description for the event source by default */
1406 _public_ int sd_event_source_set_description(sd_event_source *s, const char *description) {
1410 return free_and_strdup(&s->description, description);
1413 _public_ int sd_event_source_get_description(sd_event_source *s, const char **description) {
1415 assert_return(description, -EINVAL);
1416 assert_return(s->description, -ENXIO);
1419 *description = s->description;
2318 strna(s->description), event_source_type_to_string(s->type));
2353 strna(s->description), event_source_type_to_string(s->type));