Searched refs:syslog_priority (Results 1 - 6 of 6) sorted by relevance
/systemd/src/journal/ |
H A D | journald-kmsg.c | 114 char *message = NULL, *syslog_priority = NULL, *syslog_pid = NULL, *syslog_facility = NULL, *syslog_identifier = NULL, *source_time = NULL; local 280 if (asprintf(&syslog_priority, "PRIORITY=%i", priority & LOG_PRIMASK) >= 0) 281 IOVEC_SET_STRING(iovec[n++], syslog_priority); 319 free(syslog_priority);
|
H A D | journald-syslog.c | 326 char syslog_priority[sizeof("PRIORITY=") + DECIMAL_STR_MAX(int)], local 358 xsprintf(syslog_priority, "PRIORITY=%i", priority & LOG_PRIMASK); 359 IOVEC_SET_STRING(iovec[n++], syslog_priority);
|
H A D | journald-stream.c | 231 char syslog_priority[] = "PRIORITY=\0"; local 262 syslog_priority[strlen("PRIORITY=")] = '0' + LOG_PRI(priority); 263 IOVEC_SET_STRING(iovec[n++], syslog_priority);
|
/systemd/src/core/ |
H A D | dbus-execute.c | 621 return sd_bus_message_append(reply, "i", LOG_PRI(c->syslog_priority)); 639 return sd_bus_message_append(reply, "i", LOG_FAC(c->syslog_priority)); 698 SD_BUS_PROPERTY("SyslogPriority", "i", bus_property_get_int, offsetof(ExecContext, syslog_priority), SD_BUS_VTABLE_PROPERTY_CONST), 934 c->syslog_priority = (c->syslog_priority & LOG_FACMASK) | level; 950 c->syslog_priority = (facility << 3) | LOG_PRI(c->syslog_priority);
|
H A D | execute.h | 165 int syslog_priority; member in struct:ExecContext
|
H A D | execute.c | 324 context->syslog_priority, 2164 c->syslog_priority = LOG_DAEMON|LOG_INFO; 2552 log_facility_unshifted_to_string_alloc(c->syslog_priority >> 3, &fac_str); 2553 log_level_to_string_alloc(LOG_PRI(c->syslog_priority), &lvl_str);
|
Completed in 74 milliseconds