Home
last modified time | relevance | path

Searched refs:ro (Results 1 – 25 of 73) sorted by relevance

123

/dragonfly/tools/regression/bin/sh/expansion/
H A Darith10.012 readonly ro=4
16 check "0 && (ro = 2)" 0
17 check "ro" 4
18 check "1 || (ro = -1)" 1
19 check "ro" 4
25 check "0 ? ro = 3 : 52" 52
26 check "ro" 4
30 check "2 ? 1 : (ro += 2)" 1
31 check "ro" 4
/dragonfly/sys/netinet/
H A Dip_output.c191 ro = &iproute; in ip_output()
192 bzero(ro, sizeof *ro); in ip_output()
205 ro = &iproute; in ip_output()
206 bzero(ro, sizeof *ro); in ip_output()
232 *ro = dn_pkt->ro; /* structure copy */ in ip_output()
233 KKASSERT(ro->ro_rt == NULL || ro->ro_rt->rt_cpuid == mycpuid); in ip_output()
243 if (ro->ro_rt) in ip_output()
559 if (ro == &iproute && ro->ro_rt != NULL) { in ip_output()
564 bzero(ro, sizeof *ro); in ip_output()
601 dn_pkt->ro = *ro; in ip_output()
[all …]
H A Din_gif.c99 struct route *ro = &sc->gif_ro[mycpu->gd_cpuid]; in in_gif_output() local
100 struct sockaddr_in *dst = (struct sockaddr_in *)&ro->ro_dst; in in_gif_output()
189 if (ro->ro_rt != NULL) { in in_gif_output()
190 RTFREE(ro->ro_rt); in in_gif_output()
191 ro->ro_rt = NULL; in in_gif_output()
198 if (ro->ro_rt == NULL) { in in_gif_output()
199 rtalloc(ro); in in_gif_output()
200 if (ro->ro_rt == NULL) { in in_gif_output()
206 if (ro->ro_rt->rt_ifp == ifp) { in in_gif_output()
211 ifp->if_mtu = ro->ro_rt->rt_ifp->if_mtu - sizeof(struct ip); in in_gif_output()
[all …]
H A Din_pcb.c944 struct route *ro; in in_pcbladdr_find() local
1008 ro = &inp->inp_route; in in_pcbladdr_find()
1009 if (ro->ro_rt && in in_pcbladdr_find()
1015 RTFREE(ro->ro_rt); in in_pcbladdr_find()
1016 ro->ro_rt = NULL; in in_pcbladdr_find()
1027 (ro->ro_rt == NULL || ro->ro_rt->rt_ifp == NULL)) { in in_pcbladdr_find()
1032 rtalloc(ro); in in_pcbladdr_find()
1043 if (ro->ro_rt) { in in_pcbladdr_find()
2591 if (ro->ro_rt != NULL) in in_pcbresetroute()
2592 RTFREE(ro->ro_rt); in in_pcbresetroute()
[all …]
H A Dtcp_subr.c561 struct route *ro = NULL; in tcp_respond() local
594 ro = &inp->inp_route; in tcp_respond()
603 ro = &sro; in tcp_respond()
604 bzero(ro, sizeof *ro); in tcp_respond()
703 if ((ro == &sro) && (ro->ro_rt != NULL)) { in tcp_respond()
704 RTFREE(ro->ro_rt); in tcp_respond()
705 ro->ro_rt = NULL; in tcp_respond()
1889 if (ro->ro_rt == NULL || !(ro->ro_rt->rt_flags & RTF_UP)) { in tcp_rtlookup()
1897 ro->ro_dst.sa_family = AF_INET; in tcp_rtlookup()
1901 rtalloc(ro); in tcp_rtlookup()
[all …]
H A Dip_icmp.c934 struct route *ro = NULL, rt; in icmp_reflect() local
946 ro = &rt; in icmp_reflect()
947 bzero(ro, sizeof *ro); in icmp_reflect()
1014 ia = ip_rtaddr(ip->ip_dst, ro); in icmp_reflect()
1101 icmp_send(m, opts, ro); in icmp_reflect()
1105 if (ro && ro->ro_rt) in icmp_reflect()
1106 RTFREE(ro->ro_rt); in icmp_reflect()
H A Dip_input.c1792 struct route sro, *ro; in ip_rtaddr() local
1797 ro = ro0; in ip_rtaddr()
1800 ro = &sro; in ip_rtaddr()
1806 if (ro->ro_rt != NULL) { in ip_rtaddr()
1807 RTFREE(ro->ro_rt); in ip_rtaddr()
1808 ro->ro_rt = NULL; in ip_rtaddr()
1813 rtalloc_ign(ro, RTF_PRCLONING); in ip_rtaddr()
1816 if (ro->ro_rt == NULL) in ip_rtaddr()
1819 ia = ifatoia(ro->ro_rt->rt_ifa); in ip_rtaddr()
1821 if (ro == &sro) in ip_rtaddr()
[all …]
/dragonfly/sys/net/gre/
H A Dif_gre.c256 struct route *ro; in gre_output_serialized() local
276 if (ro->ro_rt != NULL && in gre_output_serialized()
279 RTFREE(ro->ro_rt); in gre_output_serialized()
280 ro->ro_rt = NULL; in gre_output_serialized()
282 if (ro->ro_rt == NULL) { in gre_output_serialized()
714 ro->ro_dst.sa_len = sizeof(ro->ro_dst); in gre_compute_route()
737 rtalloc(ro); in gre_compute_route()
743 if (ro->ro_rt == NULL || ro->ro_rt->rt_ifp->if_softc == sc) { in gre_compute_route()
774 struct route *ro; in gre_check_route_handler() local
781 RTFREE(ro->ro_rt); in gre_check_route_handler()
[all …]
/dragonfly/sys/netinet6/
H A Din6_gif.c100 struct route_in6 *ro = &sc->gif_ro6[mycpu->gd_cpuid]; in in6_gif_output() local
194 if (ro->ro_rt != NULL) { in in6_gif_output()
195 RTFREE(ro->ro_rt); in in6_gif_output()
196 ro->ro_rt = NULL; in in6_gif_output()
203 if (ro->ro_rt == NULL) { in in6_gif_output()
204 rtalloc((struct route *)ro); in in6_gif_output()
205 if (ro->ro_rt == NULL) { in in6_gif_output()
211 if (ro->ro_rt->rt_ifp == ifp) { in in6_gif_output()
216 ifp->if_mtu = ro->ro_rt->rt_ifp->if_mtu - in in6_gif_output()
227 return (ip6_output(m, 0, ro, IPV6_MINMTU, 0, NULL, NULL)); in in6_gif_output()
[all …]
H A Din6_src.c291 if (ro) { in in6_selectsrc()
292 if (ro->ro_rt && in in6_selectsrc()
293 (!(ro->ro_rt->rt_flags & RTF_UP) || in in6_selectsrc()
297 RTFREE(ro->ro_rt); in in6_selectsrc()
298 ro->ro_rt = NULL; in in6_selectsrc()
300 if (ro->ro_rt == NULL || ro->ro_rt->rt_ifp == NULL) { in in6_selectsrc()
305 sa6 = &ro->ro_dst; in in6_selectsrc()
311 ro->ro_rt = in in6_selectsrc()
314 rtalloc((struct route *)ro); in in6_selectsrc()
325 if (ro->ro_rt) { in in6_selectsrc()
[all …]
H A Dip6_output.c318 if (ro == NULL) { in ip6_output()
319 ro = &ip6route; in ip6_output()
320 bzero(ro, sizeof(*ro)); in ip6_output()
322 ro_pmtu = ro; in ip6_output()
335 RTFREE(ro->ro_rt); in ip6_output()
336 ro->ro_rt = NULL; in ip6_output()
369 ro->ro_rt->rt_use++; in ip6_output()
453 ro->ro_rt = in ip6_output()
870 if (ro == &ip6route && ro->ro_rt) { /* brace necessary for RTFREE */ in ip6_output()
871 RTFREE(ro->ro_rt); in ip6_output()
[all …]
H A Dfrag6.c166 static struct route_in6 ro; in frag6_input() local
183 dst = (struct sockaddr_in6 *)&ro.ro_dst; in frag6_input()
184 if (ro.ro_rt && in frag6_input()
185 (!(ro.ro_rt->rt_flags & RTF_UP) || in frag6_input()
187 rtfree(ro.ro_rt); in frag6_input()
188 ro.ro_rt = NULL; in frag6_input()
190 if (ro.ro_rt == NULL) { in frag6_input()
196 rtalloc((struct route *)&ro); in frag6_input()
197 if (ro.ro_rt != NULL && ro.ro_rt->rt_ifa != NULL) in frag6_input()
198 dstifp = ((struct in6_ifaddr *)ro.ro_rt->rt_ifa)->ia_ifp; in frag6_input()
/dragonfly/sys/dev/drm/
H A Ddrm_crtc_helper.c524 int count = 0, ro, fail = 0; in drm_crtc_helper_set_config() local
625 for (ro = 0; ro < set->num_connectors; ro++) { in drm_crtc_helper_set_config()
626 if (set->connectors[ro]->encoder) in drm_crtc_helper_set_config()
628 drm_connector_get(set->connectors[ro]); in drm_crtc_helper_set_config()
638 for (ro = 0; ro < set->num_connectors; ro++) { in drm_crtc_helper_set_config()
639 if (set->connectors[ro] == connector) { in drm_crtc_helper_set_config()
685 for (ro = 0; ro < set->num_connectors; ro++) { in drm_crtc_helper_set_config()
686 if (set->connectors[ro] == connector) in drm_crtc_helper_set_config()
774 for (ro = 0; ro < set->num_connectors; ro++) { in drm_crtc_helper_set_config()
775 if (set->connectors[ro]->encoder) in drm_crtc_helper_set_config()
[all …]
/dragonfly/sys/net/stf/
H A Dif_stf.c341 struct route *ro; in stf_output_serialized() local
414 ro = &sc->route_pcpu[mycpuid]; in stf_output_serialized()
422 if (ro->ro_rt) { in stf_output_serialized()
423 RTFREE(ro->ro_rt); in stf_output_serialized()
424 ro->ro_rt = NULL; in stf_output_serialized()
427 if (ro->ro_rt != NULL && (ro->ro_rt->rt_flags & RTF_UP) == 0) { in stf_output_serialized()
428 RTFREE(ro->ro_rt); in stf_output_serialized()
429 ro->ro_rt = NULL; in stf_output_serialized()
432 if (ro->ro_rt == NULL) { in stf_output_serialized()
433 rtalloc(ro); in stf_output_serialized()
[all …]
/dragonfly/stand/boot/pc32/loader/
H A Dloader.ldscript28 .rel.data.rel.ro : { *(.rel.data.rel.ro* .rel.gnu.linkonce.d.rel.ro.*) }
135 ….data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro* .gnu.linkon…
/dragonfly/sys/platform/pc64/conf/
H A Dldscript.x86_6437 .rela.data.rel.ro : { *(.rela.data.rel.ro* .rela.gnu.linkonce.d.rel.ro.*) }
152 ….data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro* .gnu.linkon…
/dragonfly/sys/platform/vkernel64/conf/
H A Dldscript.x86_6437 .rela.data.rel.ro : { *(.rela.data.rel.ro* .rela.gnu.linkonce.d.rel.ro.*) }
152 ….data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro* .gnu.linkon…
/dragonfly/contrib/tcsh-6/nls/french/
H A Dset112 10 Numéro mal formé
30 28 Mauvais numéro de signal
75 73 Division par zéro
76 74 Modulo par zéro
112 110 Syntaxe: sched -<#numéro>.\nSyntaxe: sched [+]hh:mm <commande>
/dragonfly/contrib/binutils-2.27/ld/scripttempl/
H A Delf.sc21 # OTHER_RELRO_SECTIONS - other than .data.rel.ro ...
172 …ATARELRO=".data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .d…
395 ….rel.data.rel.ro ${RELOCATING-0} : { *(.rel.data.rel.ro${RELOCATING+ .rel.data.rel.ro.* .rel.gnu.l…
396 ….rela.data.rel.ro ${RELOCATING-0} : { *(.rela.data.rel.ro${RELOCATING+ .rela.data.rel.ro.* .rela.g…
/dragonfly/contrib/binutils-2.34/ld/scripttempl/
H A Delf.sc21 # OTHER_RELRO_SECTIONS - other than .data.rel.ro ...
176 …ATARELRO=".data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .d…
417 ….rel.data.rel.ro ${RELOCATING-0} : { *(.rel.data.rel.ro${RELOCATING+ .rel.data.rel.ro.* .rel.gnu.l…
418 ….rela.data.rel.ro ${RELOCATING-0} : { *(.rela.data.rel.ro${RELOCATING+ .rela.data.rel.ro.* .rela.g…
/dragonfly/sys/net/dummynet/
H A Dip_dummynet_glue.c190 struct rtentry *rt = pkt->ro.ro_rt; in ip_dn_freepkt()
300 rt = pkt->ro.ro_rt; in ip_dn_ip_output()
343 KASSERT(pkt->ro.ro_rt == NULL, in ip_dn_ip_input()
384 KASSERT(pkt->ro.ro_rt == NULL, in ip_dn_ether_demux()
431 KASSERT(pkt->ro.ro_rt == NULL, in ip_dn_ether_output()
/dragonfly/sys/net/dummynet3/
H A Dip_dummynet3_glue.c190 struct rtentry *rt = pkt->ro.ro_rt; in ip_dn_freepkt()
300 rt = pkt->ro.ro_rt; in ip_dn_ip_output()
343 KASSERT(pkt->ro.ro_rt == NULL, in ip_dn_ip_input()
384 KASSERT(pkt->ro.ro_rt == NULL, in ip_dn_ether_demux()
431 KASSERT(pkt->ro.ro_rt == NULL, in ip_dn_ether_output()
/dragonfly/sys/net/pf/
H A Dpf.c2268 ro.ro_dst.sa_len = sizeof(ro.ro_dst); in pf_send_tcp()
3596 bzero(&ro, sizeof(ro)); in pf_calc_mss()
3602 rt = ro.ro_rt; in pf_calc_mss()
5932 bzero(&ro, sizeof(ro)); in pf_routable()
6007 bzero(&ro, sizeof(ro)); in pf_rtlabel_match()
6088 ro = &iproute; in pf_route()
6089 bzero((caddr_t)ro, sizeof(*ro)); in pf_route()
6096 rtalloc(ro); in pf_route()
6218 if (ro == &iproute && ro->ro_rt) in pf_route()
6273 ro = &ip6route; in pf_route6()
[all …]
/dragonfly/sys/net/
H A Droute.c203 rtalloc(struct route *ro) in rtalloc() argument
205 rtalloc_ign(ro, 0UL); in rtalloc()
215 rtalloc_ign(struct route *ro, u_long ignoreflags) in rtalloc_ign() argument
217 if (ro->ro_rt != NULL) { in rtalloc_ign()
218 if (ro->ro_rt->rt_ifp != NULL && ro->ro_rt->rt_flags & RTF_UP) in rtalloc_ign()
220 rtfree(ro->ro_rt); in rtalloc_ign()
221 ro->ro_rt = NULL; in rtalloc_ign()
223 ro->ro_rt = _rtlookup(&ro->ro_dst, ignoreflags); in rtalloc_ign()
/dragonfly/initrd/etc/
H A Drcmount_tcplay9 mount -o ro -t $FSTYPE /dev/mapper/$VOLUME $NEW_ROOT || return 3

123