Searched refs:rt (Results 101 - 125 of 167) sorted by relevance

1234567

/freebsd-10.0-release/sys/net/
H A Dif.c1358 struct rtentry *rt = (struct rtentry *)rn; local
1362 if (rt->rt_ifp == ifp) {
1368 if ((rt->rt_flags & RTF_UP) == 0)
1371 err = rtrequest_fib(RTM_DELETE, rt_key(rt), rt->rt_gateway,
1372 rt_mask(rt),
1373 rt->rt_flags|RTF_RNH_LOCKED|RTF_PINNED,
1374 (struct rtentry **) NULL, rt->rt_fibnum);
1450 struct rtentry *rt = NULL; local
1459 error = rtrequest1_fib(RTM_ADD, &info, &rt,
1824 link_rtrequest(int cmd, struct rtentry *rt, struct rt_addrinfo *info) argument
[all...]
/freebsd-10.0-release/sys/dev/ath/
H A Dif_ath_rx.c443 const HAL_RATE_TABLE *rt; local
446 rt = sc->sc_currates;
447 KASSERT(rt != NULL, ("no rate table, mode %u", sc->sc_curmode));
448 rix = rt->rateCodeToIndex[rs->rs_rate];
771 const HAL_RATE_TABLE *rt = sc->sc_currates; local
772 uint8_t rix = rt->rateCodeToIndex[rs->rs_rate];
860 const HAL_RATE_TABLE *rt = sc->sc_currates; local
862 rt->rateCodeToIndex[rs->rs_rate]);
H A Dif_ath_tdma.c363 const HAL_RATE_TABLE *rt = sc->sc_currates; local
404 rix = rt->rateCodeToIndex[rs->rs_rate];
429 txtime = ath_hal_pkt_txtime(ah, rt, rs->rs_datalen,
433 (! (rs->rs_flags & HAL_RX_GI)) : rt->info[rix].shortPreamble);
H A Dif_ath_beacon.c272 const HAL_RATE_TABLE *rt; local
317 rt = sc->sc_currates;
318 rate = rt->info[rix].rateCode;
320 rate |= rt->info[rix].shortPreamble;
344 rc[0].Rate = rt->info[rix].rateCode;
348 ath_hal_computetxtime(ah, rt, roundup(m->m_len, 4),
H A Dif_ath.c5684 const HAL_RATE_TABLE *rt; local
5688 rt = ath_hal_getratetable(ah, HAL_MODE_11A);
5691 rt = ath_hal_getratetable(ah, HAL_MODE_11A_HALF_RATE);
5694 rt = ath_hal_getratetable(ah, HAL_MODE_11A_QUARTER_RATE);
5697 rt = ath_hal_getratetable(ah, HAL_MODE_11B);
5700 rt = ath_hal_getratetable(ah, HAL_MODE_11G);
5703 rt = ath_hal_getratetable(ah, HAL_MODE_108A);
5706 rt = ath_hal_getratetable(ah, HAL_MODE_108G);
5709 rt = ath_hal_getratetable(ah, HAL_MODE_TURBO);
5712 rt
5752 const HAL_RATE_TABLE *rt; local
5945 const HAL_RATE_TABLE *rt; local
[all...]
/freebsd-10.0-release/sys/net80211/
H A Dieee80211_ddb.c878 struct ieee80211_mesh_route *rt; local
886 TAILQ_FOREACH(rt, &ms->ms_routes, rt_next) {
888 rt->rt_dest, ":", rt->rt_nexthop, ":", rt->rt_metric);
891 ieee80211_mesh_rt_update(rt, 0),
892 rt->rt_lastmseq, rt->rt_priv);
H A Dieee80211_mesh.h439 #define IEEE80211_MESH_ROUTE_PRIV(rt, cast) ((cast *)rt->rt_priv)
541 int ieee80211_mesh_rt_update(struct ieee80211_mesh_route *rt, int);
/freebsd-10.0-release/sbin/routed/
H A Ddefs.h224 #define RT_ISHOST(rt) ((rt)->rt_mask == HOST_MASK)
249 #define BETTER_LINK(rt,A,B) ((A)->rts_metric < HOPCNT_INFINITY \
256 || (RT_ISHOST(rt) \
257 && (rt)->rt_dst == (A)->rts_router \
H A Doutput.c673 struct rt_entry *rt; local
694 rt = rtfind(dst->sin_addr.s_addr);
695 if (rt)
696 ifp = rt->rt_ifp;
763 if (0 == (rt = rtget(RIP_DEFAULT, 0))
764 || rt->rt_metric+ws.metric >= def_metric) {
769 def_metric = rt->rt_metric+ws.metric;
/freebsd-10.0-release/sys/netinet6/
H A Dicmp6.c2333 struct rtentry *rt = NULL; local
2395 rt = in6_rtalloc1((struct sockaddr *)&sin6, 0, 0UL, RT_DEFAULT_FIB);
2396 if (rt) {
2397 if (rt->rt_gateway == NULL ||
2398 rt->rt_gateway->sa_family != AF_INET6) {
2399 RTFREE_LOCKED(rt);
2407 gw6 = &(((struct sockaddr_in6 *)rt->rt_gateway)->sin6_addr);
2409 RTFREE_LOCKED(rt);
2425 RTFREE_LOCKED(rt);
2426 rt
2523 icmp6_redirect_output(struct mbuf *m0, struct rtentry *rt) argument
[all...]
H A Dnd6_nbr.c235 struct rtentry *rt; local
253 rt = ro.ro_rt;
255 rt = in6_rtalloc1((struct sockaddr *)&tsin6, 0, 0,
258 need_proxy = (rt && (rt->rt_flags & RTF_ANNOUNCE) != 0 &&
259 rt->rt_gateway->sa_family == AF_LINK);
260 if (rt != NULL) {
268 proxydl = *SDL(rt->rt_gateway);
269 RTFREE_LOCKED(rt);
897 * rt
[all...]
/freebsd-10.0-release/sys/dev/cxgb/ulp/tom/
H A Dcxgb_listen.c496 struct rtentry *rt; local
540 rt = rtalloc1((struct sockaddr *)&nam, 0, 0);
541 if (rt == NULL)
546 RT_UNLOCK(rt);
547 nexthop = rt->rt_flags & RTF_GATEWAY ? rt->rt_gateway :
549 if (rt->rt_ifp == ifp)
550 e = t3_l2t_get(pi, rt->rt_ifp, nexthop);
551 RTFREE(rt);
/freebsd-10.0-release/lib/libcompiler_rt/
H A DMakefile17 CRTSRC=${.CURDIR}/../../contrib/compiler-rt/lib
/freebsd-10.0-release/sbin/routed/rtquery/
H A Drtquery.c811 struct netinfo *rt)
853 rt->n_dst = htonl(in.s_addr);
854 rt->n_family = RIP_AF_INET;
855 rt->n_mask = htonl(mask);
810 getnet(char *name, struct netinfo *rt) argument
/freebsd-10.0-release/sys/dev/ath/ath_hal/ar5312/
H A Dar5312_reset.c735 HAL_BOOL rt; local
737 if ((rt = ar5312MacReset(ah, mask)) == AH_FALSE) {
738 return rt;
755 return rt;
/freebsd-10.0-release/sys/dev/sound/pci/
H A Demu10kx.h178 void emu_vroute(struct emu_sc_info *sc, struct emu_route *rt, struct emu_voice *v);
/freebsd-10.0-release/lib/libstand/
H A DMakefile70 .PATH: ${.CURDIR}/../../contrib/compiler-rt/lib/
77 .PATH: ${.CURDIR}/../../contrib/compiler-rt/lib/arm/
/freebsd-10.0-release/usr.bin/calendar/calendars/hu_HU.ISO8859-2/
H A Dcalendar.nevnapok25 01/06 Boldizs�r, Menyh�rt
253 08/22 Menyh�rt, Mirjam
286 09/24 Gell�rt, Merc�desz
/freebsd-10.0-release/sys/netpfil/pf/
H A Dpf_table.c1398 struct pfr_ktable *kt, *rt, *shadow, key; local
1430 rt = RB_FIND(pfr_ktablehead, &pfr_ktables, &key);
1431 if (rt != NULL) {
1432 kt->pfrkt_root = rt;
1435 rt = pfr_create_ktable(&key.pfrkt_t, 0, 1);
1436 if (rt == NULL) {
1440 SLIST_INSERT_HEAD(&tableq, rt, pfrkt_workq);
1441 kt->pfrkt_root = rt;
2010 struct pfr_ktable *kt, *rt; local
2027 rt
[all...]
H A Dpf.c318 (((s)->rule.ptr->rt == PF_ROUTETO && \
320 ((s)->rule.ptr->rt == PF_REPLYTO && \
2877 struct rtentry *rt = NULL; local
2891 rt = ro.ro_rt;
2903 rt = ro6.ro_rt;
2908 if (rt && rt->rt_ifp) {
2909 mss = rt->rt_ifp->if_mtu - hlen - sizeof(struct tcphdr);
2911 RTFREE(rt);
2925 if (!r->rt ||
5091 struct rtentry *rt; local
5227 struct rtentry *rt; local
[all...]
/freebsd-10.0-release/crypto/openssh/
H A Dkrl.c236 insert_serial_range(struct revoked_serial_tree *rt, u_int64_t lo, u_int64_t hi) argument
244 ers = RB_NFIND(revoked_serial_tree, rt, &rs);
250 ers = RB_INSERT(revoked_serial_tree, rt, irs);
276 while ((crs = RB_PREV(revoked_serial_tree, rt, ers)) != NULL) {
286 RB_REMOVE(revoked_serial_tree, rt, crs);
290 while ((crs = RB_NEXT(revoked_serial_tree, rt, ers)) != NULL) {
300 RB_REMOVE(revoked_serial_tree, rt, crs);
/freebsd-10.0-release/sys/mips/mips/
H A Dtrap.c937 frame_regs[inst.RType.rt] = (register_t)(intptr_t)td->td_md.md_tls;
940 frame_regs[inst.RType.rt] += TLS_TP_OFFSET + TLS_TCB_SIZE32;
943 frame_regs[inst.RType.rt] += TLS_TP_OFFSET + TLS_TCB_SIZE;
1230 switch ((int)inst.IType.rt) {
1273 if (regsPtr[inst.RType.rs] == regsPtr[inst.RType.rt])
1281 if (regsPtr[inst.RType.rs] != regsPtr[inst.RType.rt])
1307 if ((inst.RType.rt & COPz_BC_TF_MASK) == COPz_BC_TRUE)
/freebsd-10.0-release/sys/ofed/drivers/infiniband/core/
H A Dcma.c1065 struct rdma_route *rt; local
1083 rt = &id->route;
1084 rt->num_paths = ib_event->param.req_rcvd.alternate_path ? 2 : 1;
1085 rt->path_rec = kmalloc(sizeof *rt->path_rec * rt->num_paths,
1087 if (!rt->path_rec)
1090 rt->path_rec[0] = *ib_event->param.req_rcvd.primary_path;
1091 if (rt->num_paths == 2)
1092 rt
[all...]
/freebsd-10.0-release/usr.bin/xlint/lint2/
H A Dread.c111 char *line, *eptr, rt = '\0'; local
152 rt = *cp++;
157 if (rt == 'S') {
160 } else if (rt == 's') {
190 switch (rt) {
/freebsd-10.0-release/sys/dev/bwi/
H A Dbwimac.c94 const struct ieee80211_rate_table *rt,
1350 const struct ieee80211_rate_table *rt; local
1376 rt = ieee80211_get_ratetable(
1378 bwi_mac_set_ackrates(mac, rt,
1381 rt = ieee80211_get_ratetable(
1383 bwi_mac_set_ackrates(mac, rt,
1420 bwi_mac_set_ackrates(struct bwi_mac *mac, const struct ieee80211_rate_table *rt, argument
1430 modtype = ieee80211_rate2phytype(rt,

Completed in 328 milliseconds

1234567