Lines Matching refs:ev
219 struct sigevent ev = {0}; variable
223 ev.sigev_signo = SIGUSR1;
224 ev.sigev_notify = SIGEV_SIGNAL;
225 EXPECT_EQ(timer_create(CLOCK_REALTIME, &ev, &tid), 0) << "ERROR: timer_create() != 0";
236 EXPECT_EQ(mReceivedSignal, ev.sigev_signo) << "mReceivedSignal != ev.sigev_signo";
392 struct sigevent ev = {0}; variable
400 ev.sigev_signo = SIGINT;
401 ev.sigev_notify = SIGEV_SIGNAL;
402 EXPECT_EQ(timer_create(CLOCK_REALTIME, &ev, &tid), 0) << "ERROR: timer_create() != 0";
438 EXPECT_EQ(mReceivedSignal, ev.sigev_signo) << "mReceivedSignal != ev.sigev_signo";
454 struct sigevent ev = {0}; variable
462 ev.sigev_signo = SIGALRM;
463 ev.sigev_notify = SIGEV_SIGNAL;
464 EXPECT_EQ(timer_create(CLOCK_REALTIME, &ev, &tid), 0) << "ERROR: timer_create() != 0";