Lines Matching defs:title
15 * the same title, which is not the same title as the default output. (No.)
83 -o Output FIELDs instead of defaults, each with optional :size and =title
221 // Linked list of -o fields selected for display, in order, with :len and =title
226 char *title;
1057 char *width, *title, *end, *s;
1063 // Get title, length of title, type, end of type, and display width
1067 title = end+1;
1071 title = 0;
1076 if (!title) length = width-type;
1079 // Allocate structure plus extra space to append a copy of title data
1080 // (this way it's same lifetime, freeing struct automatically frees title)
1081 field = xzalloc(sizeof(struct ofields)+(length+1)*!!title);
1082 if (title) {
1083 memcpy(field->title = (char *)(field+1), title, length);
1084 field->title[field->len = length] = 0;
1088 field->len = strtol(++width, &title, 10);
1089 if (!isdigit(*width) || title != end) return title;
1113 if (!field->title) field->title = typos[field->which].name;
1130 field->title);