Home
last modified time | relevance | path

Searched refs:incoming (Results 1 – 25 of 63) sorted by relevance

123

/dragonfly/sys/netinet/
HDip_divert.c161 div_packet(struct mbuf *m, int incoming, int port) in div_packet() argument
182 if (incoming) { in div_packet()
258 int port, incoming = 0; in div_packet_handler() local
264 incoming = 1; in div_packet_handler()
265 div_packet(m, incoming, port); in div_packet_handler()
270 divert_packet(struct mbuf *m, int incoming) in divert_packet() argument
299 if (incoming) in divert_packet()
306 div_packet(m, incoming, port); in divert_packet()
660 ip_divert(struct mbuf *m, int tee, int incoming) in ip_divert() argument
664 if (incoming) in ip_divert()
/dragonfly/contrib/gdb-7/readline/
HDtext.c678 char incoming[MB_LEN_MAX + 1]; local
690 incoming[0] = c;
691 incoming[1] = '\0';
720 incoming[0] = pending_bytes[0];
721 incoming[1] = '\0';
731 incoming[0] = '\0';
741 memcpy (incoming, pending_bytes, pending_bytes_length);
742 incoming[pending_bytes_length] = '\0';
760 strncpy (string + i, incoming, incoming_length);
789 strncpy (string + i, incoming, incoming_length);
[all …]
/dragonfly/lib/libalias/
HDHISTORY7 - Host accepts incoming connections for ports 0 to 1023.
13 - Generalized mechanism for handling incoming
23 - Corrected error in handling incoming UDP packets
98 to support multiple incoming addresses and static
102 - Now supports outgoing as well as incoming ICMP
/dragonfly/usr.sbin/ppp/
HDREADME.nat145 Set to "yes" to disable all incoming connections. This just drops
148 all incoming TCP and UDP requests, making the NAT software a
150 all incoming connections to telnetd, ftpd, etc.
207 This command allows incoming traffic to <nat port> on the host
232 The above command would redirect all incoming traffic to
242 then incoming traffic will be directed to the last
258 ICMP error messages are currently handled only in the incoming direction.
270 host address, outgoing NAT and incoming de-NATing).
299 PPP host accepts incoming connections for ports 0 to 1023.
305 - Generalised mechanism for handling incoming connections
[all …]
HDppp.8.m4149 This is used for receiving incoming connections.
266 acts as server which accepts incoming
307 filter for incoming packets, the
795 would represent an incoming
1150 To handle an incoming
1209 exec /usr/sbin/ppp -direct incoming
1224 .Ar incoming
1229 .Ar incoming
1234 Prepare an account for the incoming user.
1285 .Sq incoming
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
HDhw-doloop.c164 FOR_EACH_EDGE (e, ei, loop->incoming) in process_incoming_edges()
198 FOR_EACH_EDGE (e, ei, loop->incoming) in add_forwarder_blocks()
212 vec_safe_push (loop->incoming, e2); in add_forwarder_blocks()
213 loop->incoming->unordered_remove (ei.index); in add_forwarder_blocks()
239 vec_alloc (loop->incoming, 2); in discover_loop()
311 vec_safe_push (loop->incoming, e); in discover_loop()
HDvar-tracking.c622 rtx incoming; member
1222 = gen_rtx_SET (p->incoming, p->outgoing); in adjust_insn()
9670 rtx incoming = DECL_INCOMING_RTL (parm); in vt_add_function_parameter() local
9681 if (!decl_rtl || !incoming) in vt_add_function_parameter()
9684 if (GET_MODE (decl_rtl) == BLKmode || GET_MODE (incoming) == BLKmode) in vt_add_function_parameter()
9691 if (MEM_P (incoming) in vt_add_function_parameter()
9692 && (XEXP (incoming, 0) == crtl->args.internal_arg_pointer in vt_add_function_parameter()
9693 || (GET_CODE (XEXP (incoming, 0)) == PLUS in vt_add_function_parameter()
9694 && XEXP (XEXP (incoming, 0), 0) in vt_add_function_parameter()
9696 && CONST_INT_P (XEXP (XEXP (incoming, 0), 1))))) in vt_add_function_parameter()
[all …]
HDcfgexpand.c4127 rtx incoming = DECL_INCOMING_RTL (decl); in expand_debug_parm_decl() local
4129 if (incoming in expand_debug_parm_decl()
4130 && GET_MODE (incoming) != BLKmode in expand_debug_parm_decl()
4131 && ((REG_P (incoming) && HARD_REGISTER_P (incoming)) in expand_debug_parm_decl()
4132 || (MEM_P (incoming) in expand_debug_parm_decl()
4133 && REG_P (XEXP (incoming, 0)) in expand_debug_parm_decl()
4134 && HARD_REGISTER_P (XEXP (incoming, 0))))) in expand_debug_parm_decl()
4136 rtx rtl = gen_rtx_ENTRY_VALUE (GET_MODE (incoming)); in expand_debug_parm_decl()
4142 if (REG_P (incoming) in expand_debug_parm_decl()
4143 && OUTGOING_REGNO (REGNO (incoming)) != REGNO (incoming)) in expand_debug_parm_decl()
[all …]
HDregrename.c557 struct incoming_reg_info incoming[FIRST_PSEUDO_REGISTER]; member
593 struct incoming_reg_info *iri = p->incoming + i; in init_rename_info()
603 struct incoming_reg_info *iri = p->incoming + i; in init_rename_info()
621 int incoming_nregs = ri->incoming[chain->regno].nregs; in set_incoming_from_chain()
637 if (ri->incoming[chain->regno + nregs].nregs != 0 in set_incoming_from_chain()
638 || ri->incoming[chain->regno + nregs].unusable) in set_incoming_from_chain()
643 ri->incoming[chain->regno].nregs = nregs; in set_incoming_from_chain()
645 ri->incoming[chain->regno + nregs].nregs = -nregs; in set_incoming_from_chain()
655 ri->incoming[chain->regno + incoming_nregs].unusable = true; in set_incoming_from_chain()
657 ri->incoming[chain->regno + i].unusable = true; in set_incoming_from_chain()
HDhw-doloop.h49 vec<edge, va_gc> *incoming; member
HDgimple.def182 exactly the same as the number of incoming edges to the basic block
326 ARG_SIZE and ARG_ALIGN are the size and alignment of the incoming
/dragonfly/contrib/gcc-4.7/gcc/
HDhw-doloop.c170 FOR_EACH_EDGE (e, ei, loop->incoming) in process_incoming_edges()
204 FOR_EACH_EDGE (e, ei, loop->incoming) in add_forwarder_blocks()
218 VEC_safe_push (edge, gc, loop->incoming, e2); in add_forwarder_blocks()
219 VEC_unordered_remove (edge, loop->incoming, ei.index); in add_forwarder_blocks()
246 loop->incoming = VEC_alloc (edge, gc, 2); in discover_loop()
318 VEC_safe_push (edge, gc, loop->incoming, e); in discover_loop()
HDcfgexpand.c2563 rtx incoming = DECL_INCOMING_RTL (decl); in expand_debug_parm_decl() local
2565 if (incoming in expand_debug_parm_decl()
2566 && GET_MODE (incoming) != BLKmode in expand_debug_parm_decl()
2567 && ((REG_P (incoming) && HARD_REGISTER_P (incoming)) in expand_debug_parm_decl()
2568 || (MEM_P (incoming) in expand_debug_parm_decl()
2569 && REG_P (XEXP (incoming, 0)) in expand_debug_parm_decl()
2570 && HARD_REGISTER_P (XEXP (incoming, 0))))) in expand_debug_parm_decl()
2572 rtx rtl = gen_rtx_ENTRY_VALUE (GET_MODE (incoming)); in expand_debug_parm_decl()
2578 if (REG_P (incoming) in expand_debug_parm_decl()
2579 && OUTGOING_REGNO (REGNO (incoming)) != REGNO (incoming)) in expand_debug_parm_decl()
[all …]
HDvar-tracking.c484 rtx incoming; member
1074 = gen_rtx_SET (VOIDmode, p->incoming, p->outgoing); in adjust_insn()
8941 rtx incoming = DECL_INCOMING_RTL (parm); in vt_add_function_parameter() local
8951 if (!decl_rtl || !incoming) in vt_add_function_parameter()
8954 if (GET_MODE (decl_rtl) == BLKmode || GET_MODE (incoming) == BLKmode) in vt_add_function_parameter()
8962 if (MEM_P (incoming) in vt_add_function_parameter()
8965 && (XEXP (incoming, 0) == crtl->args.internal_arg_pointer in vt_add_function_parameter()
8966 || (GET_CODE (XEXP (incoming, 0)) == PLUS in vt_add_function_parameter()
8967 && XEXP (XEXP (incoming, 0), 0) in vt_add_function_parameter()
8969 && CONST_INT_P (XEXP (XEXP (incoming, 0), 1))))) in vt_add_function_parameter()
[all …]
HDregrename.c529 struct incoming_reg_info incoming[FIRST_PSEUDO_REGISTER]; member
568 struct incoming_reg_info *iri = p->incoming + i; in init_rename_info()
578 struct incoming_reg_info *iri = p->incoming + i; in init_rename_info()
596 int incoming_nregs = ri->incoming[chain->regno].nregs; in set_incoming_from_chain()
612 if (ri->incoming[chain->regno + nregs].nregs != 0 in set_incoming_from_chain()
613 || ri->incoming[chain->regno + nregs].unusable) in set_incoming_from_chain()
618 ri->incoming[chain->regno].nregs = nregs; in set_incoming_from_chain()
620 ri->incoming[chain->regno + nregs].nregs = -nregs; in set_incoming_from_chain()
630 ri->incoming[chain->regno + incoming_nregs].unusable = true; in set_incoming_from_chain()
632 ri->incoming[chain->regno + i].unusable = true; in set_incoming_from_chain()
HDhw-doloop.h48 VEC(edge, gc) *incoming;
HDgimple.def182 exactly the same as the number of incoming edges to the basic block
323 ARG_SIZE and ARG_ALIGN are the size and alignment of the incoming
/dragonfly/libexec/dma/
HDREADME.markdown12 incoming connections.
/dragonfly/sbin/natd/
HDHISTORY106 - Checksum for incoming packets is always recalculated
117 - Ignored incoming packets are now dropped when
/dragonfly/share/examples/ppp/
HDppp.secret.sample5 # This file is used to authenticate incoming connections.
HDppp.conf.span-isp68 # invocation receives all incoming packets. This creates
75 # when it detects a new incoming address.... tricky !
HDppp.conf.span-isp.working31 # handle all incoming packets on the first descriptor.
/dragonfly/contrib/tcp_wrappers/
HDBLURB3 With this package you can monitor and filter incoming requests for the
/dragonfly/sys/dev/disk/isp/
HDDriverManual.txt123 to a set of dual-ranked 16 bit incoming and outgoing mailbox registers
127 register, that is a write to an (incoming, to the HBA) mailbox register,
138 use the incoming mailbox registers to interrupt and issue commands to
147 of asynchronous events (e.g., incoming commands in target mode).
407 may accept this incoming queue entry.
/dragonfly/contrib/gcc-4.7/gcc/doc/
HDtree-ssa.texi507 all the incoming versions of the variable to create a new name
539 the number of incoming edges to the basic block holding @var{phi}@.
545 the incoming edge through which @var{var} flows.
549 Returns the incoming edge for the @var{i}th argument of @var{phi}.
650 have one or more edges with no incoming definition for

123