Searched refs:lru_next (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/rpc/sec/
H A Dsvcauthdes.c96 struct authdes_cache_entry *lru_prev, *lru_next; /* LRU linked list */ member in struct:authdes_cache_entry
536 if ((new->lru_next = lru_first) != NULL) {
562 cur->lru_prev->lru_next = cur->lru_next;
563 if (cur->lru_next != NULL) {
564 cur->lru_next->lru_prev = cur->lru_prev;
569 cur->lru_next = lru_first;
616 p->lru_prev->lru_next = NULL;
665 p->lru_prev->lru_next = NULL;
/illumos-gate/usr/src/uts/common/rpc/sec_gss/
H A Dsvc_rpcsec_gss.c85 struct _svc_rpc_gss_data *lru_next, *lru_prev; member in struct:_svc_rpc_gss_data
1522 client_data->lru_next = NULL;
1582 if ((client_data->lru_next = lru_first) != NULL)
1619 cl->lru_prev->lru_next = cl->lru_next;
1620 if (cl->lru_next != NULL)
1621 cl->lru_next->lru_prev = cl->lru_prev;
1625 cl->lru_next = lru_first;
1680 lru_first = client_data->lru_next;
1682 client_data->lru_prev->lru_next
[all...]
/illumos-gate/usr/src/lib/rpcsec_gss/
H A Dsvc_rpcsec_gss.c78 struct _svc_rpc_gss_data *lru_next, *lru_prev; member in struct:_svc_rpc_gss_data
1257 if ((client_data->lru_next = lru_first) != NULL)
1288 cl->lru_prev->lru_next = cl->lru_next;
1289 if (cl->lru_next != NULL)
1290 cl->lru_next->lru_prev = cl->lru_prev;
1294 cl->lru_next = lru_first;
1345 lru_first = client_data->lru_next;
1347 client_data->lru_prev->lru_next = client_data->lru_next;
[all...]
/illumos-gate/usr/src/cmd/gss/gssd/
H A Dgssd_proc.c55 struct gssd_ctx_slot *lru_next; member in struct:gssd_ctx_slot
171 gssd_ctx_slot_tbl[i-1].lru_next = &gssd_ctx_slot_tbl[i];
179 gssd_ctx_slot_tbl[max_contexts - 1].lru_next = &gssd_ctx_slot_tbl[0];
202 gssd_lru_head = lru->lru_next;
281 next = lru->lru_next;
282 prev->lru_next = next;
292 prev->lru_next = lru;
296 lru->lru_next = next;

Completed in 61 milliseconds