Lines Matching refs:entry
112 register struct cache_entry *entry; in _svcauth_des() local
353 entry = &authdes_cache[sid]; in _svcauth_des()
354 entry->laststamp = timestamp; in _svcauth_des()
362 if (entry->rname != NULL) in _svcauth_des()
363 mem_free (entry->rname, strlen (entry->rname) + 1); in _svcauth_des()
365 entry->rname = mem_alloc ((u_int) full_len); in _svcauth_des()
366 if (entry->rname != NULL) in _svcauth_des()
367 memcpy (entry->rname, cred->adc_fullname.name, full_len); in _svcauth_des()
373 entry->key = *sessionkey; in _svcauth_des()
374 entry->window = window; in _svcauth_des()
375 invalidate (entry->localcred); /* mark any cached cred invalid */ in _svcauth_des()
383 cred->adc_fullname.name = entry->rname; in _svcauth_des()
384 cred->adc_fullname.key = entry->key; in _svcauth_des()
385 cred->adc_fullname.window = entry->window; in _svcauth_des()