Home
last modified time | relevance | path

Searched refs:nep (Results 1 – 9 of 9) sorted by relevance

/titanic_44/usr/src/uts/common/crypto/api/
H A Dkcf_miscapi.c318 kcf_ntfy_elem_t *nep; in crypto_notify_events() local
328 nep = kmem_zalloc(sizeof (kcf_ntfy_elem_t), KM_SLEEP); in crypto_notify_events()
329 mutex_init(&nep->kn_lock, NULL, MUTEX_DEFAULT, NULL); in crypto_notify_events()
330 cv_init(&nep->kn_cv, NULL, CV_DEFAULT, NULL); in crypto_notify_events()
331 nep->kn_state = NTFY_WAITING; in crypto_notify_events()
332 nep->kn_func = nf; in crypto_notify_events()
333 nep->kn_event_mask = event_mask; in crypto_notify_events()
337 ntfy_list_head = ntfy_list_tail = nep; in crypto_notify_events()
339 ntfy_list_tail->kn_next = nep; in crypto_notify_events()
340 nep->kn_prev = ntfy_list_tail; in crypto_notify_events()
[all …]
/titanic_44/usr/src/uts/common/fs/ufs/
H A Dufs_dir.c1019 struct direct *nep; /* next directory entry */ in ufs_dircheckforname() local
1108 nep = (struct direct *)((char *)ep + ep->d_reclen); in ufs_dircheckforname()
1115 if ((nep->d_reclen == 0) || (nep->d_reclen & 0x3) || in ufs_dircheckforname()
1116 (nep->d_ino != ep_ino)) { in ufs_dircheckforname()
1124 slotp->ep = nep; in ufs_dircheckforname()
1774 struct direct *ep, *nep; in ufs_diraddentry() local
1851 nep = (struct direct *)((char *)ep + ep->d_reclen); in ufs_diraddentry()
1852 if ((uintptr_t)nep & (DIRBLKSIZ - 1)) { in ufs_diraddentry()
1860 if ((nep->d_reclen == 0) || (nep->d_reclen & 0x3) || in ufs_diraddentry()
1861 dnlc_dir_update(dcap, nep->d_name, in ufs_diraddentry()
[all …]
H A Dlufs.c665 extent_t *ep, *nep; in lufs_alloc() local
747 nep = ep + 1; in lufs_alloc()
748 if ((caddr_t)(nep + 1) > in lufs_alloc()
753 nep->lbno = ep->lbno + ep->nbno; in lufs_alloc()
755 nep->pbno = (uint32_t)bno; in lufs_alloc()
757 nep->pbno = (uint32_t)fno; in lufs_alloc()
758 nep->nbno = (uint32_t)(fsbtodb(fs, fs->fs_frag)); in lufs_alloc()
760 ep = nep; in lufs_alloc()
/titanic_44/usr/src/cmd/fm/fmd/common/
H A Dfmd_serd.c258 fmd_serd_elem_t *sep, *nep; in fmd_serd_eng_gc() local
267 for (sep = fmd_list_next(&sgp->sg_list); sep != NULL; sep = nep) { in fmd_serd_eng_gc()
271 nep = fmd_list_next(sep); in fmd_serd_eng_gc()
/titanic_44/usr/src/uts/common/io/
H A Dramdisk.c798 uint_t obpaddr = 0, nep, i; in rd_attach() local
850 (uchar_t **)&ep, &nep) == DDI_SUCCESS) { in rd_attach()
852 if (nep == 0 || (nep % sizeof (*ep)) != 0) { in rd_attach()
858 nep /= sizeof (*ep); in rd_attach()
863 for (i = 0; i < nep; ++i) { in rd_attach()
887 rsp->rd_nexisting = nep; in rd_attach()
/titanic_44/usr/src/uts/common/os/
H A Derrorq.c742 errorq_elem_t *eep, *nep, *dep; in errorq_panic_drain() local
799 for (eep = eqp->eq_phead; eep != NULL; eep = nep) { in errorq_panic_drain()
803 nep = eep->eqe_next; in errorq_panic_drain()
H A Dflock.c2789 edge_t *ep, *nep; in flk_check_deadlock() local
2888 nep = NEXT_ADJ(ep); in flk_check_deadlock()
2910 ep = nep; in flk_check_deadlock()
2916 nep = NEXT_IN(ep); in flk_check_deadlock()
2938 ep = nep; in flk_check_deadlock()
/titanic_44/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dcommands.c2025 static struct env_lst *nep = NULL; local
2029 nep = &envlisthead;
2032 if (nep) {
2033 while ((nep = nep->next) != NULL) {
2034 if (nep->export && (nep->welldefined == welldefined))
2035 return (nep->var);
/titanic_44/usr/src/cmd/fm/modules/common/eversholt/
H A Dfme.c1353 struct event *ep, *nep; in upsets_eval() local
1412 nep = itree_lookup(nfmep->eventtree, eventstring, ipp); in upsets_eval()
1413 if (nep->count++ == 0) { in upsets_eval()
1414 nep->observations = nfmep->observations; in upsets_eval()
1415 nfmep->observations = nep; in upsets_eval()
1417 nep->nvp = evnv_dupnvl(ep->nvp); in upsets_eval()