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

/freebsd-current/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-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp170 void BreakpointOptions::CopyOverSetOptions(const BreakpointOptions &incoming) argument
172 if (incoming.m_set_flags.Test(eEnabled))
174 m_enabled = incoming.m_enabled;
177 if (incoming.m_set_flags.Test(eOneShot))
179 m_one_shot = incoming.m_one_shot;
182 if (incoming.m_set_flags.Test(eCallback))
184 m_callback = incoming.m_callback;
185 m_callback_baton_sp = incoming.m_callback_baton_sp;
186 m_callback_is_synchronous = incoming.m_callback_is_synchronous;
187 m_baton_is_command_baton = incoming
[all...]
/freebsd-current/sys/netgraph/
H A Dng_bridge.c708 link_p foundFirst, incoming; member in struct:ng_bridge_send_ctx
764 /* Skip incoming link */
765 if (destLink == ctx->incoming) {
789 counter_u64_add(ctx->incoming->stats.memoryFailures, 1);
812 ctx.incoming = NG_HOOK_PRIVATE(hook);
815 counter_u64_add(ctx.incoming->stats.recvRunts, 1);
821 counter_u64_add(ctx.incoming->stats.memoryFailures, 1);
827 counter_u64_add(ctx.incoming->stats.recvInvalid, 1);
834 if (ctx.incoming->loopCount != 0) {
835 counter_u64_add(ctx.incoming
[all...]
/freebsd-current/contrib/unbound/contrib/
H A Dunbound_munin_40 # unbound_munin_by_type - incoming queries by type
41 # unbound_munin_by_class - incoming queries by class
42 # unbound_munin_by_opcode - incoming queries by opcode
44 # unbound_munin_by_flags - incoming queries by flags
81 unbound_munin_by_type - incoming queries by type
82 unbound_munin_by_class - incoming queries by class
83 unbound_munin_by_opcode - incoming queries by opcode
85 unbound_munin_by_flags - incoming queries by flags
345 echo "graph_title Unbound DNS incoming queries by flags"
360 echo "graph_info This graphs plots the flags inside incoming querie
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDeletion.cpp76 Value *incoming = P.getIncomingValueForBlock(ExitingBlocks[0]); local
78 // Make sure all exiting blocks produce the same incoming value for the
79 // block. If there are different incoming values for different exiting
84 return incoming == P.getIncomingValueForBlock(BB);
90 if (Instruction *I = dyn_cast<Instruction>(incoming)) {
287 // If all incoming live value were undefs, return undef.
464 // We need to forget the loop before setting the incoming values of the exit
468 // Set incoming value to poison for phi nodes in the exit block.
/freebsd-current/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp365 // For each basic block, the sum of incoming edge counts equals the sum of
479 src->incoming = (GCOVArc *)1; // Mark u available for cycle detection
496 if (succ->dst.incoming == nullptr) {
497 succ->dst.incoming = succ;
503 minCount = std::min(minCount, v->incoming->cycleCount);
504 v = &v->incoming->src;
510 v->incoming->cycleCount -= minCount;
511 v = &v->incoming->src;
531 const_cast<GCOVBlock *>(b)->incoming = nullptr;
/freebsd-current/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
279 * hand if the pool has any incoming workload our block heuristic will start
289 * estimate the incoming log blocks for the current TXG.
292 * effect of the incoming rates from the most recent TXGs as we take the
629 * Specifically, it first tries to estimate the number of incoming
630 * blocks in this TXG. Then by projecting that incoming rat
647 uint64_t incoming = spa_estimate_incoming_log_blocks(spa); local
[all...]
/freebsd-current/sys/netinet/
H A Dip_var.h317 IPFW_INFO_IN = 0x80000000, /* incoming, overloads dir */
334 extern void (*ip_divert_ptr)(struct mbuf *m, bool incoming);
H A Dip_divert.c108 * incoming and sent to ip_input().
168 divert_packet(struct mbuf *m, bool incoming) argument
230 * But only for incoming packets.
232 if (incoming) {
250 * Record the incoming interface name whenever we have one.
416 /* Reinject packet into the system as incoming or outgoing */
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DGCOV.h315 GCOVArc *incoming = nullptr; member in class:llvm::GCOVBlock
/freebsd-current/contrib/llvm-project/llvm/lib/Support/Windows/
H A DSignals.inc237 // StackWalk64 modifies the incoming stack frame and context, so copy them.
/freebsd-current/sys/dev/hyperv/pcib/
H A Dvmbus_pcib.c331 struct pci_incoming_message incoming; member in struct:pci_bus_relations
337 struct pci_incoming_message incoming; member in struct:pci_bus_relations2
390 struct pci_incoming_message incoming; member in struct:pci_dev_incoming
/freebsd-current/contrib/wpa/wpa_supplicant/
H A Dp2p_supplicant.c694 static u8 p2ps_group_capability(void *ctx, u8 incoming, u8 role, argument
707 wpa_printf(MSG_DEBUG, "P2P: Conncap - in:%d role:%d", incoming, role);
748 incoming == P2PS_SETUP_GROUP_OWNER ||
757 if (!incoming)
760 if (incoming == P2PS_SETUP_NEW) {
774 switch (incoming) {
797 if (incoming == role || cli_wpa_s)
804 if (incoming != role) {
821 switch (incoming) {
828 else if (incoming
[all...]
/freebsd-current/contrib/wpa/src/p2p/
H A Dp2p.h282 * hash - 6 octet Service Name has to match against incoming Probe Requests
1109 * @incoming: Peer requested roles, expressed with P2PS_SETUP_* bitmap.
1119 u8 (*p2ps_group_capability)(void *ctx, u8 incoming, u8 role,
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp121 llvm::BasicBlock *incoming = Builder.GetInsertBlock(); local
122 assert(incoming && "expression emission must have an insertion point");
136 // However, we must be careful not to do this to our incoming
141 if (incoming != outgoing && outgoing->use_empty()) {
/freebsd-current/sys/tools/
H A Dmakesyscalls.lua1229 -- Pointer incoming
/freebsd-current/contrib/bmake/
H A Dconfigure6160 /* On some sparc systems, changes by the child to local and incoming
/freebsd-current/contrib/ntp/sntp/
H A Dconfigure8544 /* On some sparc systems, changes by the child to local and incoming
25876 /* On some sparc systems, changes by the child to local and incoming
/freebsd-current/contrib/ntp/
H A Dconfigure15847 /* On some sparc systems, changes by the child to local and incoming
17943 /* On some sparc systems, changes by the child to local and incoming
/freebsd-current/contrib/ldns/
H A Dconfigure18800 /* On some sparc systems, changes by the child to local and incoming
/freebsd-current/contrib/unbound/
H A Dconfigure16854 /* On some sparc systems, changes by the child to local and incoming

Completed in 717 milliseconds