Lines Matching +full:timestamp +full:- +full:names
2 * Copyright (c) 1997-2004 Kungliga Tekniska Högskolan
17 * 3. Neither the name of the Institute nor the names of its contributors
45 time_t timestamp; member
54 for (e = head; e != NULL; e = e->next) in get_entry()
55 if (krb5_principal_compare (context, princ, e->principal)) in get_entry()
61 add_entry (krb5_principal princ, int vno, time_t timestamp, struct e **head) in add_entry() argument
68 if(e->max_vno < vno) { in add_entry()
69 e->max_vno = vno; in add_entry()
70 e->timestamp = timestamp; in add_entry()
77 ret = krb5_copy_principal (context, princ, &e->principal); in add_entry()
80 e->max_vno = vno; in add_entry()
81 e->timestamp = timestamp; in add_entry()
82 e->next = *head; in add_entry()
90 struct e *next = head->next; in delete_list()
91 krb5_free_principal (context, head->principal); in delete_list()
113 age = parse_time(opt->age_string, "s"); in kt_purge()
115 krb5_warnx(context, "unparasable time `%s'", opt->age_string); in kt_purge()
129 add_entry (entry.principal, entry.vno, entry.timestamp, &head); in kt_purge()
150 if (entry.vno < e->max_vno in kt_purge()
151 && judgement_day - e->timestamp > age) { in kt_purge()