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

/freebsd-13-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-13-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-13-stable/sys/netgraph/
H A Dng_bridge.c715 link_p foundFirst, incoming; member in struct:ng_bridge_send_ctx
769 /* Skip incoming link */
770 if (destLink == ctx->incoming) {
794 counter_u64_add(ctx->incoming->stats.memoryFailures, 1);
818 ctx.incoming = NG_HOOK_PRIVATE(hook);
821 counter_u64_add(ctx.incoming->stats.recvRunts, 1);
827 counter_u64_add(ctx.incoming->stats.memoryFailures, 1);
833 counter_u64_add(ctx.incoming->stats.recvInvalid, 1);
840 if (ctx.incoming->loopCount != 0) {
841 counter_u64_add(ctx.incoming
[all...]
/freebsd-13-stable/usr.bin/svn/lib/libserf/
H A DMakefile24 incoming.c \
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDeletion.cpp57 Value *incoming = P.getIncomingValueForBlock(ExitingBlocks[0]); local
59 // Make sure all exiting blocks produce the same incoming value for the exit
60 // block. If there are different incoming values for different exiting
65 return incoming == P.getIncomingValueForBlock(BB);
71 if (Instruction *I = dyn_cast<Instruction>(incoming))
166 // Set incoming value to undef for phi nodes in the exit block.
/freebsd-13-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-13-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-13-stable/contrib/libpcap/
H A Dpcap-usb-linux.c841 int incoming=0; local
902 incoming = 1;
905 incoming = !incoming;
908 if (incoming)
/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Dspa_log_spacemap.c77 * all incoming changes (the log space map). When created, the log space map
156 * many metaslabs we need to flush based on the current rate of incoming blocks
164 * to its aggregation of data). So with that in mind, we project the incoming
218 * 1] Assuming a constant flush rate and a constant incoming rate of log blocks
249 * If the number of metaslabs is small and our incoming rate is high, we could
274 * hand if the pool has any incoming workload our block heuristic will start
284 * estimate the incoming log blocks for the current TXG.
287 * effect of the incoming rates from the most recent TXGs as we take the
595 * Specifically, it first tries to estimate the number of incoming
596 * blocks in this TXG. Then by projecting that incoming rat
613 uint64_t incoming = spa_estimate_incoming_log_blocks(spa); local
[all...]
/freebsd-13-stable/sys/netinet/
H A Dip_var.h280 IPFW_INFO_IN = 0x80000000, /* incoming, overloads dir */
298 extern void (*ip_divert_ptr)(struct mbuf *m, bool incoming);
H A Dip_divert.c102 * incoming and sent to ip_input().
191 divert_packet(struct mbuf *m, bool incoming) argument
237 * But only for incoming packets.
239 if (incoming) {
257 * Record the incoming interface name whenever we have one.
407 /* Reinject packet into the system as incoming or outgoing */
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DSignals.inc227 // StackWalk64 modifies the incoming stack frame and context, so copy them.
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp113 llvm::BasicBlock *incoming = Builder.GetInsertBlock(); local
114 assert(incoming && "expression emission must have an insertion point");
128 // However, we must be careful not to do this to our incoming
133 if (incoming != outgoing && outgoing->use_empty()) {
/freebsd-13-stable/sys/dev/hyperv/pcib/
H A Dvmbus_pcib.c286 struct pci_incoming_message incoming; member in struct:pci_bus_relations
325 struct pci_incoming_message incoming; member in struct:pci_dev_incoming
/freebsd-13-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-13-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-13-stable/sys/tools/
H A Dmakesyscalls.lua1023 -- Pointer incoming
/freebsd-13-stable/contrib/ncurses/
H A Dconfigure21756 /* On some sparc systems, changes by the child to local and incoming

Completed in 323 milliseconds