Lines Matching refs:ti
748 traverse_info *ti = (traverse_info*) tichar; in entry_since() local
750 if (ti->version->earlier_than(j->get_version())) { in entry_since()
753 if (ti->head == NULL) in entry_since()
754 ti->head = j; in entry_since()
756 ti->tail->setnextptr(j); // make last entry point to j in entry_since()
758 ti->tail = j; // make j new last entry in entry_since()
770 struct traverse_info ti; in get_log_entries_since() local
773 ti.version = v; in get_log_entries_since()
774 ti.head = ti.tail = NULL; in get_log_entries_since()
776 count = f.execute_on_log(&(entry_since), (char *) &ti, FALSE); in get_log_entries_since()
798 currentry = ti.head; in get_log_entries_since()
799 for (i = 0, currentry = ti.head; in get_log_entries_since()