Home
last modified time | relevance | path

Searched refs:s_src (Results 1 – 3 of 3) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/syslog-ng/files/
H A Dsyslog-ng.conf.sysvinit24 source s_src { unix-dgram("/dev/log"); internal();
128 log { source(s_src); filter(f_auth); destination(d_auth); };
129 log { source(s_src); filter(f_cron); destination(d_cron); };
131 log { source(s_src); filter(f_kern); destination(d_kern); };
132 log { source(s_src); filter(f_lpr); destination(d_lpr); };
134 log { source(s_src); filter(f_user); destination(d_user); };
135 log { source(s_src); filter(f_uucp); destination(d_uucp); };
137 log { source(s_src); filter(f_mail); destination(d_mail); };
148 #log { source(s_src); filter(f_ppp); destination(d_ppp); };
150 log { source(s_src); filter(f_debug); destination(d_debug); };
[all …]
H A Dsyslog-ng.conf.systemd24 source s_src { systemd_journal(); internal();
128 log { source(s_src); filter(f_auth); destination(d_auth); };
129 log { source(s_src); filter(f_cron); destination(d_cron); };
131 log { source(s_src); filter(f_kern); destination(d_kern); };
132 log { source(s_src); filter(f_lpr); destination(d_lpr); };
134 log { source(s_src); filter(f_user); destination(d_user); };
135 log { source(s_src); filter(f_uucp); destination(d_uucp); };
137 log { source(s_src); filter(f_mail); destination(d_mail); };
148 #log { source(s_src); filter(f_ppp); destination(d_ppp); };
150 log { source(s_src); filter(f_debug); destination(d_debug); };
[all …]
/openbmc/qemu/tests/unit/
H A Dtest-clone-visitor.c41 AltEnumBool *b_src, *s_src, *b_dst, *s_dst; in test_clone_alternate() local
46 s_src = g_new0(AltEnumBool, 1); in test_clone_alternate()
47 s_src->type = QTYPE_QSTRING; in test_clone_alternate()
48 s_src->u.e = ENUM_ONE_VALUE1; in test_clone_alternate()
54 s_dst = QAPI_CLONE(AltEnumBool, s_src); in test_clone_alternate()
56 g_assert_cmpint(s_dst->type, ==, s_src->type); in test_clone_alternate()
57 g_assert_cmpint(s_dst->u.e, ==, s_src->u.e); in test_clone_alternate()
60 qapi_free_AltEnumBool(s_src); in test_clone_alternate()