Searched refs:trt (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.0-release/usr.sbin/IPXrouted/
H A Dtables.c232 struct rt_entry *trt, *nrt; local
234 trt = rt->rt_clone;
236 while(trt) {
237 nrt = trt->rt_clone;
238 free((char *)trt);
239 trt = nrt;
243 struct rt_entry *prt, *trt; local
246 trt = rt->rt_clone;
248 while(trt) {
249 if (equal(&trt
263 struct rt_entry *trt; local
338 struct rt_entry *trt = rt->rt_clone; local
[all...]
H A Dinput.c160 register struct rt_entry *trt = rt; local
162 while (trt) {
163 if ((trt->rt_ifp == ifp) &&
167 trt = trt->rt_clone;
251 register struct rt_entry *trt = rt->rt_clone; local
253 while (trt) {
254 if (equal(from, &trt->rt_router)) {
255 trt->rt_timer = 0;
258 trt
[all...]
H A Dtimer.c80 struct rt_entry *trt, *prt; local
86 trt = rt->rt_clone;
87 while (trt) {
88 trt->rt_timer += TIMER_RATE;
89 if (trt->rt_timer >= EXPIRE_TIME) {
90 prt->rt_clone = trt->rt_clone;
91 free((char *)trt);
92 trt = prt->rt_clone;
95 prt = trt;
96 trt
[all...]
H A Doutput.c66 register struct rt_entry *trt; local
78 trt = except;
79 while(trt) {
80 if (ifp == trt->rt_ifp) {
84 trt = trt->rt_clone;
/freebsd-10.0-release/sys/dev/mpt/
H A Dmpt_cam.c3698 trtp = &mpt->trt[lun];
4344 mpt->trt[lun].enabled = 1;
4364 mpt->trt[lun].enabled = 0;
4367 if (mpt->trt[lun].enabled) {
4634 trtp = &mpt->trt[ccb->ccb_h.target_lun];
5039 mpt->trt[lun].enabled == 0) {
5107 trtp = &mpt->trt[lun];
H A Dmpt.h744 * forgets to point to it exactly and we index off of trt with
748 tgt_resource_t trt[MPT_MAX_LUNS]; member in struct:mpt_softc
H A Dmpt.c2276 STAILQ_INIT(&mpt->trt[val].atios);
2277 STAILQ_INIT(&mpt->trt[val].inots);

Completed in 150 milliseconds