Home
last modified time | relevance | path

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

123

/dragonfly/sys/netinet/
H A Dip_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/
H A Dtext.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/
H A DHISTORY7 - 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/
H A DREADME.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
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
314 Corrected error in handling incoming UDP packets
[all …]
H A Dppp.8.m4266 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
1285 .Sq incoming
1292 for each incoming user:
3340 This command causes incoming
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
H A Dhw-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()
H A Dvar-tracking.c622 rtx incoming; member
9701 incoming in vt_add_function_parameter()
9715 && OUTGOING_REGNO (REGNO (incoming)) != REGNO (incoming)) in vt_add_function_parameter()
9718 p.incoming = incoming; in vt_add_function_parameter()
9719 incoming in vt_add_function_parameter()
9720 = gen_rtx_REG_offset (incoming, GET_MODE (incoming), in vt_add_function_parameter()
9759 incoming = replace_equiv_address_nv (incoming, reg); in vt_add_function_parameter()
9847 incoming = replace_equiv_address_nv (incoming, val->val_rtx); in vt_add_function_parameter()
9854 incoming = var_lowpart (mode, incoming); in vt_add_function_parameter()
9857 incoming); in vt_add_function_parameter()
[all …]
H A Dcfgexpand.c4129 if (incoming 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()
4142 if (REG_P (incoming) in expand_debug_parm_decl()
4143 && OUTGOING_REGNO (REGNO (incoming)) != REGNO (incoming)) in expand_debug_parm_decl()
4144 incoming in expand_debug_parm_decl()
4145 = gen_rtx_REG_offset (incoming, GET_MODE (incoming), in expand_debug_parm_decl()
4153 incoming = replace_equiv_address_nv (incoming, reg); in expand_debug_parm_decl()
4156 incoming = copy_rtx (incoming); in expand_debug_parm_decl()
4164 if (incoming in expand_debug_parm_decl()
[all …]
H A Dregrename.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()
H A Dhw-doloop.h49 vec<edge, va_gc> *incoming; member
H A Dgimple.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/
H A Dhw-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()
H A Dcfgexpand.c2565 if (incoming 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()
2578 if (REG_P (incoming) in expand_debug_parm_decl()
2579 && OUTGOING_REGNO (REGNO (incoming)) != REGNO (incoming)) in expand_debug_parm_decl()
2580 incoming in expand_debug_parm_decl()
2581 = gen_rtx_REG_offset (incoming, GET_MODE (incoming), in expand_debug_parm_decl()
2589 incoming = replace_equiv_address_nv (incoming, reg); in expand_debug_parm_decl()
2592 incoming = copy_rtx (incoming); in expand_debug_parm_decl()
2600 if (incoming in expand_debug_parm_decl()
[all …]
H A Dvar-tracking.c484 rtx incoming; member
8974 incoming in vt_add_function_parameter()
8991 p->incoming = incoming; in vt_add_function_parameter()
8992 incoming in vt_add_function_parameter()
8993 = gen_rtx_REG_offset (incoming, GET_MODE (incoming), in vt_add_function_parameter()
9009 incoming = replace_equiv_address_nv (incoming, reg); in vt_add_function_parameter()
9017 if (REG_P (incoming) || MEM_P (incoming)) in vt_add_function_parameter()
9022 incoming = gen_rtx_MEM (GET_MODE (decl_rtl), incoming); in vt_add_function_parameter()
9086 incoming = var_lowpart (mode, incoming); in vt_add_function_parameter()
9089 incoming); in vt_add_function_parameter()
[all …]
H A Dregrename.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()
H A Dhw-doloop.h48 VEC(edge, gc) *incoming;
H A Dgimple.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/
H A DREADME.markdown12 incoming connections.
/dragonfly/sbin/natd/
H A DHISTORY106 - Checksum for incoming packets is always recalculated
117 - Ignored incoming packets are now dropped when
/dragonfly/share/examples/ppp/
H A Dppp.secret.sample5 # This file is used to authenticate incoming connections.
H A Dppp.conf.span-isp68 # invocation receives all incoming packets. This creates
75 # when it detects a new incoming address.... tricky !
H A Dppp.conf.span-isp.working31 # handle all incoming packets on the first descriptor.
/dragonfly/contrib/tcp_wrappers/
H A DBLURB3 With this package you can monitor and filter incoming requests for the
/dragonfly/sys/dev/disk/isp/
H A DDriverManual.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/
H A Dtree-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