Searched refs:mpc (Results 1 - 16 of 16) sorted by relevance

/freebsd-11-stable/sys/security/mac/
H A Dmac_framework.c317 mac_policy_getlabeled(struct mac_policy_conf *mpc) argument
322 if (mpc->mpc_ops->mpo_ ## method != NULL) \
359 struct mac_policy_conf *mpc; local
365 LIST_FOREACH(mpc, &mac_static_policy_list, mpc_list) {
366 mac_labeled |= mac_policy_getlabeled(mpc);
369 LIST_FOREACH(mpc, &mac_policy_list, mpc_list) {
370 mac_labeled |= mac_policy_getlabeled(mpc);
376 mac_policy_register(struct mac_policy_conf *mpc) argument
396 !(mpc->mpc_loadtime_flags & MPC_LOADTIME_FLAG_UNLOADOK));
400 if (strcmp(tmpc->mpc_name, mpc
457 mac_policy_unregister(struct mac_policy_conf *mpc) argument
507 struct mac_policy_conf *mpc; local
[all...]
H A Dmac_internal.h269 struct mac_policy_conf *mpc; \
272 LIST_FOREACH(mpc, &mac_static_policy_list, mpc_list) { \
273 if (mpc->mpc_ops->mpo_ ## check != NULL) \
275 mpc->mpc_ops->mpo_ ## check (args), \
280 LIST_FOREACH(mpc, &mac_policy_list, mpc_list) { \
281 if (mpc->mpc_ops->mpo_ ## check != NULL) \
283 mpc->mpc_ops->mpo_ ## check (args), \
291 struct mac_policy_conf *mpc; \
294 LIST_FOREACH(mpc, &mac_static_policy_list, mpc_list) { \
295 if (mpc
[all...]
H A Dmac_syscalls.c627 struct mac_policy_conf *mpc; local
636 LIST_FOREACH(mpc, &mac_static_policy_list, mpc_list) {
637 if (strcmp(mpc->mpc_name, target) == 0 &&
638 mpc->mpc_ops->mpo_syscall != NULL) {
639 error = mpc->mpc_ops->mpo_syscall(td,
647 LIST_FOREACH(mpc, &mac_policy_list, mpc_list) {
648 if (strcmp(mpc->mpc_name, target) == 0 &&
649 mpc->mpc_ops->mpo_syscall != NULL) {
650 error = mpc->mpc_ops->mpo_syscall(td,
H A Dmac_policy.h106 typedef void (*mpo_destroy_t)(struct mac_policy_conf *mpc);
107 typedef void (*mpo_init_t)(struct mac_policy_conf *mpc);
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-mptcp.c179 const struct mp_capable *mpc = (const struct mp_capable *) opt; local
185 if (MP_CAPABLE_OPT_VERSION(mpc->sub_ver) != 0) {
186 ND_PRINT((ndo, " Unknown Version (%d)", MP_CAPABLE_OPT_VERSION(mpc->sub_ver)));
190 if (mpc->flags & MP_CAPABLE_C)
192 ND_PRINT((ndo, " {0x%" PRIx64, EXTRACT_64BITS(mpc->sender_key)));
194 ND_PRINT((ndo, ",0x%" PRIx64, EXTRACT_64BITS(mpc->receiver_key)));
/freebsd-11-stable/sys/security/mac_portacl/
H A Dmac_portacl.c155 destroy(struct mac_policy_conf *mpc) argument
163 init(struct mac_policy_conf *mpc) argument
/freebsd-11-stable/sys/security/mac_bsdextended/
H A Dmac_bsdextended.c209 ugidfw_init(struct mac_policy_conf *mpc) argument
216 ugidfw_destroy(struct mac_policy_conf *mpc) argument
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Dqlnx_os.c4065 struct mbuf *mpf = NULL, *mpl = NULL, *mpc = NULL; local
4241 mpc = sw_rx_data->data;
4243 if (mpc == NULL) {
4244 QL_DPRINT7(ha, "[%d]: mpc = NULL\n", fp->rss_id);
4278 mpc->m_flags &= ~M_PKTHDR;
4279 mpc->m_next = NULL;
4280 mpc->m_len = cqe->ext_bd_len_list[i];
4284 mpf = mpl = mpc;
4287 mpl->m_next = mpc;
4288 mpl = mpc;
4394 struct mbuf *mpf = NULL, *mpl = NULL, *mpc = NULL; local
4518 struct mbuf *mpf = NULL, *mpl = NULL, *mpc = NULL; local
[all...]
/freebsd-11-stable/sys/dev/ixgb/
H A Dixgb_hw.h755 uint64_t mpc; member in struct:ixgb_hw_stats
H A Dif_ixgb.c2345 adapter->stats.mpc += IXGB_READ_REG(&adapter->hw, MPC);
2419 adapter->stats.rnbc + adapter->stats.mpc +
2487 (long long)adapter->stats.mpc);
/freebsd-11-stable/sys/dev/e1000/
H A De1000_hw.h536 u64 mpc; member in struct:e1000_hw_stats
H A Dif_lem.c4420 adapter->stats.mpc += E1000_READ_REG(&adapter->hw, E1000_MPC);
4503 adapter->stats.mpc + adapter->stats.cexterr);
4636 CTLFLAG_RD, &adapter->stats.mpc,
H A Dif_igb.c5662 return (stats->mpc);
5707 stats->mpc += E1000_READ_REG(hw, E1000_MPC);
6074 CTLFLAG_RD, &stats->mpc,
H A Dif_em.c5578 adapter->stats.mpc += E1000_READ_REG(&adapter->hw, E1000_MPC);
5673 adapter->stats.mpc + adapter->stats.cexterr);
5825 CTLFLAG_RD, &adapter->stats.mpc,
/freebsd-11-stable/sys/dev/ixgbe/
H A Dif_ix.c1305 stats->mpc[0] += IXGBE_READ_REG(hw, IXGBE_MPC(0));
1524 CTLFLAG_RD, &stats->mpc[0], "RX Missed Packet Count");
H A Dixgbe_type.h3771 u64 mpc[8]; member in struct:ixgbe_hw_stats

Completed in 260 milliseconds