Home | History | Annotate | Download | only in mDNSShared

Lines Matching refs:LABEL

635  *		If an expression evaluates to false, transfers control to a goto label.
640 * @param LABEL
641 * The location's goto label.
646 #define mdns_require_quiet(EXPRESSION, LABEL) \
649 goto LABEL; \
655 * If an expression evaluates to false, executes an action, then transfers control to a goto label.
660 * @param LABEL
661 * The goto label.
669 #define mdns_require_action_quiet(EXPRESSION, LABEL, ACTION) \
675 goto LABEL; \
681 * If an error code is non-zero, transfers control to a goto label.
686 * @param LABEL
687 * The location's goto label.
692 #define mdns_require_noerr_quiet(ERROR, LABEL) mdns_require_quiet(!(ERROR), LABEL)
696 * If an error code is non-zero, executes an action, then transfers control to a goto label.
701 * @param LABEL
702 * The location's goto label.
710 #define mdns_require_noerr_action_quiet(ERROR, LABEL, ACTION) mdns_require_action_quiet(!(ERROR), LABEL, ACTION)
896 * Alternative to the `default` label in a switch statement that covers all enumeration values.
901 * of the `-Wswitch-default` warning compels us to include a default label in such switch statements.