Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/fs/
H A Ddnlc.c1547 dcentry_t **prevpp, *te; in dnlc_dir_rem_entry() local
1570 prevpp = &dcp->dc_namehash[hash & dcp->dc_nhash_mask]; in dnlc_dir_rem_entry()
1571 while (*prevpp != NULL) { in dnlc_dir_rem_entry()
1572 if (((*prevpp)->de_hash == hash) && in dnlc_dir_rem_entry()
1573 (namlen == (*prevpp)->de_namelen) && in dnlc_dir_rem_entry()
1574 bcmp((*prevpp)->de_name, name, namlen) == 0) { in dnlc_dir_rem_entry()
1576 *handlep = (*prevpp)->de_handle; in dnlc_dir_rem_entry()
1578 te = *prevpp; in dnlc_dir_rem_entry()
1579 *prevpp = (*prevpp)->de_next; in dnlc_dir_rem_entry()
1598 prevpp = &((*prevpp)->de_next); in dnlc_dir_rem_entry()
[all …]
/titanic_41/usr/src/uts/intel/io/dktp/hba/ghd/
H A Dghd_timer.c826 ccc_t **prevpp; in ghd_timer_detach() local
834 prevpp = &tmrp->t_ccc_listp; in ghd_timer_detach()
835 ASSERT(*prevpp != NULL); in ghd_timer_detach()
839 if (*prevpp == cccp) in ghd_timer_detach()
841 prevpp = &(*prevpp)->ccc_nextp; in ghd_timer_detach()
842 } while (*prevpp != NULL); in ghd_timer_detach()
849 *prevpp = cccp->ccc_nextp; in ghd_timer_detach()
/titanic_41/usr/src/uts/common/fs/tmpfs/
H A Dtmp_dir.c88 struct tdirent **prevpp; in tmpfs_hash_in() local
93 prevpp = &t_hashtable[T_HASH_INDEX(hash)]; in tmpfs_hash_in()
96 t->td_link = *prevpp; in tmpfs_hash_in()
97 *prevpp = t; in tmpfs_hash_in()
108 struct tdirent **prevpp; in tmpfs_hash_out() local
112 prevpp = &t_hashtable[T_HASH_INDEX(hash)]; in tmpfs_hash_out()
115 while (*prevpp != t) in tmpfs_hash_out()
116 prevpp = &(*prevpp)->td_link; in tmpfs_hash_out()
117 *prevpp = t->td_link; in tmpfs_hash_out()
/titanic_41/usr/src/cmd/lvm/md_monitord/
H A Dprobedev.c164 add_to_list(mdnamelist_t **curpp, mdnamelist_t **prevpp, in add_to_list() argument
170 prevp = *prevpp; in add_to_list()
186 *prevpp = prevp; in add_to_list()
/titanic_41/usr/src/cmd/lvm/util/
H A Dmetastat.c825 add_to_list(mdnamelist_t **curpp, mdnamelist_t **prevpp, mdnamelist_t **newlpp) in add_to_list() argument
830 prevp = *prevpp; in add_to_list()
846 *prevpp = prevp; in add_to_list()