Home
last modified time | relevance | path

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

/systemd-251/src/shared/
Dformat-table.c75 … unsigned ellipsize_percent; /* 0 … 100, where to place the ellipsis when compression is needed */ member
340 unsigned ellipsize_percent) { in table_data_matches() argument
360 if (d->ellipsize_percent != ellipsize_percent) in table_data_matches()
386 unsigned ellipsize_percent) { in table_data_new() argument
403 d->ellipsize_percent = ellipsize_percent; in table_data_new()
424 unsigned ellipsize_percent) { in table_add_cell_full() argument
453 if (ellipsize_percent == UINT_MAX) in table_add_cell_full()
454 ellipsize_percent = p ? p->ellipsize_percent : 100; in table_add_cell_full()
457 assert(ellipsize_percent <= 100); in table_add_cell_full()
462 …ata_matches(p, type, data, minimum_width, maximum_width, weight, align_percent, ellipsize_percent)) in table_add_cell_full()
[all …]
Dformat-table.h77 …_width, size_t maximum_width, unsigned weight, unsigned align_percent, unsigned ellipsize_percent);