Symbol: sev
crypto/heimdal/lib/krb5/log.c
188
const char *sev, const char *fac)
crypto/heimdal/lib/krb5/log.c
198
i = find_value(sev, syslogvals);
lib/libc/gen/fmtmsg.c
112
printfmt(char *msgverb, long class, const char *label, int sev,
lib/libc/gen/fmtmsg.c
122
if ((sevname = sevinfo(sev)) != NULL)
lib/libc/gen/fmtmsg.c
140
strlcat(output, sevinfo(sev), size);
lib/libc/gen/fmtmsg.c
180
sevinfo(int sev)
lib/libc/gen/fmtmsg.c
183
switch (sev) {
lib/libc/gen/fmtmsg.c
48
fmtmsg(long class, const char *label, int sev, const char *text,
lib/libc/gen/fmtmsg.c
68
output = printfmt(msgverb, class, label, sev, text, action,
lib/libc/gen/fmtmsg.c
80
output = printfmt(DFLT_MSGVERB, class, label, sev, text,
sys/arm/allwinner/aw_mp.c
193
sev();
sys/arm/allwinner/aw_mp.c
280
sev();
sys/arm/arm/mp_machdep.c
310
sev();
sys/arm/broadcom/bcm2835/bcm2836_mp.c
119
sev();
sys/arm/broadcom/bcm2835/bcm2836_mp.c
138
sev();
sys/arm/freescale/imx/imx6_mp.c
157
sev();
sys/arm/mv/armada38x/pmsu.c
144
sev();
sys/arm/nvidia/tegra124/tegra124_mp.c
120
sev();
sys/arm/rockchip/rk32xx_mp.c
113
sev();
sys/arm/xilinx/zy7_mp.c
141
sev();
sys/dev/acpica/acpi_apei.c
246
int h = 0, sev;
sys/dev/acpica/acpi_apei.c
256
sev = PCIEM_STA_FATAL_ERROR;
sys/dev/acpica/acpi_apei.c
259
sev = PCIEM_STA_NON_FATAL_ERROR;
sys/dev/acpica/acpi_apei.c
262
sev = PCIEM_STA_CORRECTABLE_ERROR;
sys/dev/acpica/acpi_apei.c
265
pcie_apei_error(dev, sev,
sys/dev/acpica/acpi_apei.c
391
uint32_t sev;
sys/dev/acpica/acpi_apei.c
398
sev = ges->ErrorSeverity;
sys/dev/acpica/acpi_apei.c
421
if (sev == ACPI_HEST_GEN_ERROR_FATAL)
sys/dev/pci/pci.c
6663
pcie_apei_error(device_t dev, int sev, uint8_t *aerp)
sys/dev/pci/pci.c
6671
if (sev == PCIEM_STA_CORRECTABLE_ERROR)
sys/dev/pci/pci.c
6673
else if (sev == PCIEM_STA_NON_FATAL_ERROR)
sys/dev/pci/pci.c
6679
if (sev == PCIEM_STA_CORRECTABLE_ERROR) {
sys/dev/pci/pci.c
6687
if (sev != PCIEM_STA_CORRECTABLE_ERROR) {
sys/dev/pci/pcivar.h
709
void pcie_apei_error(device_t dev, int sev, uint8_t *aer);
tests/sys/aio/aio_test.c
1998
aio_zvol_test(completion comp, struct sigevent *sev, bool vectored,
tests/sys/aio/aio_test.c
2007
aio_writev_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
2008
aio_readv_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
2010
aio_write_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
2011
aio_read_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
205
static struct sigevent sev;
tests/sys/aio/aio_test.c
208
sev.sigev_notify = SIGEV_SIGNAL;
tests/sys/aio/aio_test.c
209
sev.sigev_signo = SIGUSR1;
tests/sys/aio/aio_test.c
211
return (&sev);
tests/sys/aio/aio_test.c
222
static struct sigevent sev;
tests/sys/aio/aio_test.c
225
sev.sigev_notify = SIGEV_THREAD;
tests/sys/aio/aio_test.c
226
sev.sigev_notify_function = thr_handler;
tests/sys/aio/aio_test.c
227
sev.sigev_notify_attributes = NULL;
tests/sys/aio/aio_test.c
228
return (&sev);
tests/sys/aio/aio_test.c
262
static struct sigevent sev;
tests/sys/aio/aio_test.c
268
memset(&sev, 0, sizeof(sev));
tests/sys/aio/aio_test.c
269
sev.sigev_notify_kqueue = kq;
tests/sys/aio/aio_test.c
270
sev.sigev_value.sival_ptr = (void*)0xdeadbeef;
tests/sys/aio/aio_test.c
271
sev.sigev_notify = SIGEV_KEVENT;
tests/sys/aio/aio_test.c
273
return (&sev);
tests/sys/aio/aio_test.c
301
aio_write_test(struct aio_context *ac, completion comp, struct sigevent *sev)
tests/sys/aio/aio_test.c
311
if (sev)
tests/sys/aio/aio_test.c
312
aio.aio_sigevent = *sev;
tests/sys/aio/aio_test.c
333
aio_writev_test(struct aio_context *ac, completion comp, struct sigevent *sev)
tests/sys/aio/aio_test.c
352
if (sev)
tests/sys/aio/aio_test.c
353
aio.aio_sigevent = *sev;
tests/sys/aio/aio_test.c
371
aio_read_test(struct aio_context *ac, completion comp, struct sigevent *sev)
tests/sys/aio/aio_test.c
382
if (sev)
tests/sys/aio/aio_test.c
383
aio.aio_sigevent = *sev;
tests/sys/aio/aio_test.c
400
aio_readv_test(struct aio_context *ac, completion comp, struct sigevent *sev)
tests/sys/aio/aio_test.c
419
if (sev)
tests/sys/aio/aio_test.c
420
aio.aio_sigevent = *sev;
tests/sys/aio/aio_test.c
450
aio_file_test(completion comp, struct sigevent *sev, bool vectored)
tests/sys/aio/aio_test.c
462
aio_writev_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
463
aio_readv_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
465
aio_write_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
466
aio_read_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
511
aio_fifo_test(completion comp, struct sigevent *sev)
tests/sys/aio/aio_test.c
538
aio_write_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
539
aio_read_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
583
aio_unix_socketpair_test(completion comp, struct sigevent *sev, bool vectored)
tests/sys/aio/aio_test.c
596
aio_writev_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
597
aio_readv_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
599
aio_write_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
600
aio_read_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
654
aio_pty_test(completion comp, struct sigevent *sev)
tests/sys/aio/aio_test.c
680
aio_write_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
681
aio_read_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
725
aio_pipe_test(completion comp, struct sigevent *sev)
tests/sys/aio/aio_test.c
736
aio_write_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
737
aio_read_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
854
aio_md_test(completion comp, struct sigevent *sev, bool vectored)
tests/sys/aio/aio_test.c
862
aio_writev_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
863
aio_readv_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
865
aio_write_test(&ac, comp, sev);
tests/sys/aio/aio_test.c
866
aio_read_test(&ac, comp, sev);
tests/sys/aio/lio_test.c
100
sev[i].sigev_notify_kqueue = kq;
tests/sys/aio/lio_test.c
101
sev[i].sigev_value.sival_ptr = udata[i];
tests/sys/aio/lio_test.c
112
ATF_REQUIRE_EQ(0, lio_listio(LIO_NOWAIT, list[0], ios_per_call, &sev[0]));
tests/sys/aio/lio_test.c
113
ATF_REQUIRE_EQ(-1, lio_listio(LIO_NOWAIT, list[1], ios_per_call, &sev[1]));
tests/sys/aio/lio_test.c
149
struct sigevent sev;
tests/sys/aio/lio_test.c
158
sev.sigev_notify = SIGEV_KEVENT;
tests/sys/aio/lio_test.c
159
sev.sigev_notify_kqueue = kq;
tests/sys/aio/lio_test.c
160
sev.sigev_value.sival_ptr = udata;
tests/sys/aio/lio_test.c
161
ATF_REQUIRE_EQ(0, lio_listio(LIO_NOWAIT, &list, 0, &sev));
tests/sys/aio/lio_test.c
177
struct sigevent sev;
tests/sys/aio/lio_test.c
180
sev.sigev_notify = SIGEV_SIGNAL;
tests/sys/aio/lio_test.c
181
sev.sigev_signo = SIGUSR1;
tests/sys/aio/lio_test.c
183
ATF_REQUIRE_EQ(0, lio_listio(LIO_NOWAIT, &list, 0, &sev));
tests/sys/aio/lio_test.c
196
struct sigevent sev;
tests/sys/aio/lio_test.c
199
bzero(&sev, sizeof(sev));
tests/sys/aio/lio_test.c
200
sev.sigev_notify = SIGEV_THREAD;
tests/sys/aio/lio_test.c
201
sev.sigev_notify_function = thr_handler;
tests/sys/aio/lio_test.c
202
sev.sigev_notify_attributes = NULL;
tests/sys/aio/lio_test.c
203
ATF_REQUIRE_MSG(0 == lio_listio(LIO_NOWAIT, &list, 0, &sev),
tests/sys/aio/lio_test.c
68
struct sigevent sev[2];
tests/sys/aio/lio_test.c
99
sev[i].sigev_notify = SIGEV_KEVENT;