Lines Matching defs:prefix
242 * @param prefix
245 void rte_log_list_types(FILE *out, const char *prefix);
422 * Generates a log message with a supplied prefix and arguments with a
426 * message with RTE_LOG() prepending the supplied prefix and arguments
435 * @param prefix
436 * The prefix format string.
438 * The arguments for the prefix format string. If args contains
444 #define RTE_LOG_LINE_PREFIX(l, t, prefix, args, ...) do { \
445 RTE_LOG_CHECK_NO_NEWLINE(RTE_FMT_HEAD(prefix __VA_ARGS__ ,)); \
446 RTE_LOG(l, t, RTE_FMT(prefix RTE_FMT_HEAD(__VA_ARGS__ ,) "\n", \
451 * Generates a log message for the data path with a supplied prefix and
455 * message with RTE_LOG_DP() prepending the supplied prefix and
464 * @param prefix
465 * The prefix format string.
467 * The arguments for the prefix format string. If args contains
473 #define RTE_LOG_DP_LINE_PREFIX(l, t, prefix, args, ...) do { \
474 RTE_LOG_CHECK_NO_NEWLINE(RTE_FMT_HEAD(prefix __VA_ARGS__ ,)); \
475 RTE_LOG_DP(l, t, RTE_FMT(prefix RTE_FMT_HEAD(__VA_ARGS__ ,) "\n", \
513 * to select the right prefix for the logtype.