Home
last modified time | relevance | path

Searched refs:prevpp (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/
H A Ddnlc.c1547 dcentry_t **prevpp, *te; in dnlc_dir_rem_entry() local
1578 te = *prevpp; in dnlc_dir_rem_entry()
1579 *prevpp = (*prevpp)->de_next; in dnlc_dir_rem_entry()
1597 prevpp = &((*prevpp)->de_next); in dnlc_dir_rem_entry()
1622 dcfree_t **prevpp, *tfp; in dnlc_dir_rem_space_by_len() local
1654 tfp = *prevpp; in dnlc_dir_rem_space_by_len()
1655 *prevpp = (*prevpp)->df_next; in dnlc_dir_rem_space_by_len()
1663 prevpp = &((*prevpp)->df_next); in dnlc_dir_rem_space_by_len()
1714 tfp = *prevpp; in dnlc_dir_rem_space_by_handle()
1715 *prevpp = (*prevpp)->df_next; in dnlc_dir_rem_space_by_handle()
[all …]
/illumos-gate/usr/src/uts/intel/io/dktp/hba/ghd/
H A Dghd_timer.c827 ccc_t **prevpp; in ghd_timer_detach() local
835 prevpp = &tmrp->t_ccc_listp; in ghd_timer_detach()
836 ASSERT(*prevpp != NULL); in ghd_timer_detach()
840 if (*prevpp == cccp) in ghd_timer_detach()
842 prevpp = &(*prevpp)->ccc_nextp; in ghd_timer_detach()
843 } while (*prevpp != NULL); in ghd_timer_detach()
850 *prevpp = cccp->ccc_nextp; in ghd_timer_detach()
/illumos-gate/usr/src/uts/common/fs/tmpfs/
H A Dtmp_dir.c91 struct tdirent **prevpp; in tmpfs_hash_in() local
96 prevpp = &t_hashtable[T_HASH_INDEX(hash)]; in tmpfs_hash_in()
99 t->td_link = *prevpp; in tmpfs_hash_in()
100 *prevpp = t; in tmpfs_hash_in()
111 struct tdirent **prevpp; in tmpfs_hash_out() local
115 prevpp = &t_hashtable[T_HASH_INDEX(hash)]; in tmpfs_hash_out()
118 while (*prevpp != t) in tmpfs_hash_out()
119 prevpp = &(*prevpp)->td_link; in tmpfs_hash_out()
120 *prevpp = t->td_link; in tmpfs_hash_out()