Searched refs:incoming (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointName.h78 // Merge the permissions from incoming into this set of permissions. Only
80 void MergeInto(const Permissions &incoming) argument
82 MergePermission(incoming, listPerm);
83 MergePermission(incoming, disablePerm);
84 MergePermission(incoming, deletePerm);
128 void MergePermission(const Permissions &incoming, argument
131 if (incoming.IsSet(permission))
134 incoming.m_permissions[permission]));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp181 void BreakpointOptions::CopyOverSetOptions(const BreakpointOptions &incoming) argument
183 if (incoming.m_set_flags.Test(eEnabled))
185 m_enabled = incoming.m_enabled;
188 if (incoming.m_set_flags.Test(eOneShot))
190 m_one_shot = incoming.m_one_shot;
193 if (incoming.m_set_flags.Test(eCallback))
195 m_callback = incoming.m_callback;
196 m_callback_baton_sp = incoming.m_callback_baton_sp;
197 m_callback_is_synchronous = incoming.m_callback_is_synchronous;
198 m_baton_is_command_baton = incoming
[all...]
/freebsd-11-stable/usr.bin/svn/lib/libserf/
H A DMakefile24 incoming.c \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDeletion.cpp55 Value *incoming = P.getIncomingValueForBlock(ExitingBlocks[0]); local
57 // Make sure all exiting blocks produce the same incoming value for the exit
58 // block. If there are different incoming values for different exiting
63 return incoming == P.getIncomingValueForBlock(BB);
69 if (Instruction *I = dyn_cast<Instruction>(incoming))
162 // Set incoming value to undef for phi nodes in the exit block.
/freebsd-11-stable/contrib/libreadline/
H A Dtext.c631 char incoming[MB_LEN_MAX + 1]; local
643 incoming[0] = c;
644 incoming[1] = '\0';
673 incoming[0] = pending_bytes[0];
674 incoming[1] = '\0';
684 incoming[0] = '\0';
694 memcpy (incoming, pending_bytes, pending_bytes_length);
695 incoming[pending_bytes_length] = '\0';
713 strncpy (string + i, incoming, incoming_length);
742 strncpy (string + i, incoming, incoming_lengt
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_wc/
H A Dprops.c98 been modified to combine it with incoming mergeinfo from the
361 const svn_string_t *incoming,
368 SVN_ERR_ASSERT_NO_RETURN(incoming != NULL);
373 SVN_ERR_ASSERT_NO_RETURN(!svn_string_compare(mine, incoming));
394 if (incoming == NULL)
449 from the INCOMING_BASE; otherwise, the incoming change would have
461 "with the incoming change.\n"),
519 const svn_string_t *incoming,
533 buf = generate_conflict_message(propname, original, mine, incoming,
540 if (incoming
356 generate_conflict_message(const char *propname, const svn_string_t *original, const svn_string_t *mine, const svn_string_t *incoming, const svn_string_t *incoming_base, apr_pool_t *result_pool) argument
513 prop_conflict_new(const svn_string_t **conflict_desc, const char *propname, const svn_string_t *original, const svn_string_t *mine, const svn_string_t *incoming, const svn_string_t *incoming_base, svn_cancel_func_t cancel_func, void *cancel_baton, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
678 const svn_string_t *incoming; local
[all...]
/freebsd-11-stable/contrib/unbound/contrib/
H A Dunbound_munin_42 # unbound_munin_by_type - incoming queries by type
43 # unbound_munin_by_class - incoming queries by class
44 # unbound_munin_by_opcode - incoming queries by opcode
46 # unbound_munin_by_flags - incoming queries by flags
84 unbound_munin_by_type - incoming queries by type
85 unbound_munin_by_class - incoming queries by class
86 unbound_munin_by_opcode - incoming queries by opcode
88 unbound_munin_by_flags - incoming queries by flags
337 echo "graph_title Unbound DNS incoming queries by flags"
352 echo "graph_info This graphs plots the flags inside incoming querie
[all...]
/freebsd-11-stable/contrib/libpcap/
H A Dpcap-usb-linux.c841 int incoming=0; local
902 incoming = 1;
905 incoming = !incoming;
908 if (incoming)
/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_fw_pfil.c443 ipfw_divert(struct mbuf **m0, int incoming, struct ipfw_rule_ref *rule, argument
529 ip_divert_ptr(clone, incoming);
/freebsd-11-stable/contrib/gcc/
H A Dvar-tracking.c501 Return true when the adjustments on all incoming edges are consistent.
2769 rtx incoming = DECL_INCOMING_RTL (parm); local
2780 if (!decl_rtl || !incoming)
2783 if (GET_MODE (decl_rtl) == BLKmode || GET_MODE (incoming) == BLKmode)
2786 if (!vt_get_decl_and_offset (incoming, &decl, &offset))
2797 if (REG_P (incoming))
2799 gcc_assert (REGNO (incoming) < FIRST_PSEUDO_REGISTER);
2800 attrs_list_insert (&out->regs[REGNO (incoming)],
2801 parm, offset, incoming);
2802 set_variable_part (out, incoming, par
[all...]
H A Dtarget.h676 rtx (*struct_value_rtx) (tree fndecl, int incoming);
729 /* Return an rtx for the argument pointer incoming to the
/freebsd-11-stable/sys/netinet/
H A Dip_var.h272 IPFW_INFO_IN = 0x80000000, /* incoming, overloads dir */
290 extern void (*ip_divert_ptr)(struct mbuf *m, int incoming);
H A Dip_divert.c101 * incoming and sent to ip_input().
194 divert_packet(struct mbuf *m, int incoming) argument
232 * But only for incoming packets.
234 if (incoming) {
254 * Record the incoming interface name whenever we have one.
372 /* Reinject packet into the system as incoming or outgoing */
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DSignals.inc227 // StackWalk64 modifies the incoming stack frame and context, so copy them.
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp110 llvm::BasicBlock *incoming = Builder.GetInsertBlock(); local
111 assert(incoming && "expression emission must have an insertion point");
125 // However, we must be careful not to do this to our incoming
130 if (incoming != outgoing && outgoing->use_empty()) {
/freebsd-11-stable/sys/dev/hyperv/pcib/
H A Dvmbus_pcib.c261 struct pci_incoming_message incoming; member in struct:pci_bus_relations
300 struct pci_incoming_message incoming; member in struct:pci_dev_incoming
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dp2p_supplicant.c637 static u8 p2ps_group_capability(void *ctx, u8 incoming, u8 role, argument
650 wpa_printf(MSG_DEBUG, "P2P: Conncap - in:%d role:%d", incoming, role);
691 incoming == P2PS_SETUP_GROUP_OWNER ||
700 if (!incoming)
703 if (incoming == P2PS_SETUP_NEW) {
717 switch (incoming) {
740 if (incoming == role || cli_wpa_s)
747 if (incoming != role) {
764 switch (incoming) {
771 else if (incoming
[all...]
/freebsd-11-stable/contrib/wpa/src/p2p/
H A Dp2p.h280 * hash - 6 octet Service Name has to match against incoming Probe Requests
1100 * @incoming: Peer requested roles, expressed with P2PS_SETUP_* bitmap.
1110 u8 (*p2ps_group_capability)(void *ctx, u8 incoming, u8 role,
/freebsd-11-stable/contrib/gcc/config/ia64/
H A Dia64.c1257 assume the incoming expression is already legitimate. */
3985 int named, int incoming)
3987 int basereg = (incoming ? GR_ARG_FIRST : AR_ARG_FIRST);
9574 int incoming ATTRIBUTE_UNUSED)
3977 ia64_function_arg(CUMULATIVE_ARGS *cum, enum machine_mode mode, tree type, int named, int incoming) argument
/freebsd-11-stable/contrib/gcc/config/sparc/
H A Dsparc.c5181 /* On incoming, we don't need to know that the value
5439 sparc_struct_value_rtx (tree fndecl, int incoming)
5447 if (incoming)
5457 if (incoming == 2
5427 sparc_struct_value_rtx(tree fndecl, int incoming) argument
/freebsd-11-stable/contrib/bmake/
H A Dconfigure5336 /* On some sparc systems, changes by the child to local and incoming
/freebsd-11-stable/contrib/gcc/config/rs6000/
H A Drs6000.c4413 For incoming args we set the number of arguments in the prototype large
4418 rtx libname ATTRIBUTE_UNUSED, int incoming,
4437 if (incoming || cum->prototype)
5639 Normally, this macro will push all remaining incoming registers on the
15721 contains the incoming first argument. Assume that this argument
15723 in C++. This is the incoming argument *before* the function
15725 values of all other incoming arguments.
4406 init_cumulative_args(CUMULATIVE_ARGS *cum, tree fntype, rtx libname ATTRIBUTE_UNUSED, int incoming, int libcall, int n_named_args) argument
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dconfigure6808 /* On some sparc systems, changes by the child to local and incoming
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dconfigure6925 /* On some sparc systems, changes by the child to local and incoming
/freebsd-11-stable/contrib/ncurses/
H A Dconfigure17434 /* On some sparc systems, changes by the child to local and incoming

Completed in 941 milliseconds

12