Home
last modified time | relevance | path

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

/freebsd/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()
/freebsd/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
/freebsd/sys/x86/include/
H A Dmptable.h119 uint16_t int_flags; member
/freebsd/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()