Home
last modified time | relevance | path

Searched refs:int_flags (Results 1 – 5 of 5) sorted by relevance

/src/sys/x86/x86/
H A Dmptable.c97 u_short int_flags; member
727 switch (intr->int_flags & INTENTRY_FLAGS_POLARITY) { in intentry_polarity()
744 switch (intr->int_flags & INTENTRY_FLAGS_TRIGGER) { in intentry_trigger()
839 (intr->int_flags & INTENTRY_FLAGS_TRIGGER) != in mptable_parse_io_int()
843 (intr->int_flags & INTENTRY_FLAGS_POLARITY) != in mptable_parse_io_int()
888 if ((intr->int_flags & INTENTRY_FLAGS_TRIGGER) != in mptable_parse_local_int()
892 if ((intr->int_flags & INTENTRY_FLAGS_POLARITY) != in mptable_parse_local_int()
931 entry.int_flags = INTENTRY_FLAGS_POLARITY_CONFORM | in mptable_parse_default_config_ints()
/src/usr.sbin/bhyve/amd64/
H A Dmptbl.c150 mpie->int_flags = INTENTRY_FLAGS_POLARITY_CONFORM | in mpt_build_localint_entries()
160 mpie->int_flags = INTENTRY_FLAGS_POLARITY_CONFORM | in mpt_build_localint_entries()
269 mpie->int_flags = INTENTRY_FLAGS_POLARITY_ACTIVELO | in mpt_build_ioint_entries()
/src/tests/atf_python/sys/netlink/
H A Dmessage.py52 int_flags = 0
54 int_flags |= enum_or_int(flag)
55 self.nl_hdr.nlmsg_flags |= int_flags
/src/sys/x86/include/
H A Dmptable.h119 uint16_t int_flags; member
/src/usr.sbin/mptable/
H A Dmptable.c837 printf( "\t%9s", polarityMode[ entry->int_flags & INTENTRY_FLAGS_POLARITY ] ); in intEntry()
838 printf( "%12s", triggerMode[ (entry->int_flags & INTENTRY_FLAGS_TRIGGER) >> 2 ] ); in intEntry()