Lines Matching defs:last
94 time_t timestamp; /* time tree was last updated from file */
130 * Check if a filespec is last in a list (NULL on UNIX, invalid FSSpec on MacOS
306 prf_file_t new_file, *last;
315 last = &profile->first_file;
332 *last = new_file;
333 last = &new_file->next;
346 *last = new_file;
347 last = &new_file->next;
1119 struct profile_node *p, *last;
1127 last = 0;
1128 for (p = node->first_child; p; last = p, p = p->next) {
1129 if (p->prev != last)
1131 if (last && (last->next != p))
1152 struct profile_node *p, *last, *new;
1161 * place *after* the last match of the node name, since
1164 for (p=section->first_child, last = 0; p; last = p, p = p->next) {
1176 new->prev = last;
1180 if (last)
1181 last->next = new;