Lines Matching refs:timeout
35 struct timespec timeout;
36 timeout.tv_sec = 5;
37 timeout.tv_nsec = 0;
39 int ret = ppoll(pollfds, 1, &timeout, NULL);
52 * @tc.desc : Listen to non-specified file time (timeout returns)
58 struct timespec timeout;
59 timeout.tv_sec = 3;
60 timeout.tv_nsec = 0;
62 int ret = ppoll(pollfds, 1, &timeout, NULL);
73 struct timespec timeout;
74 timeout.tv_sec = 1;
75 timeout.tv_nsec = 0;
77 int ret = ppoll(NULL, 1, &timeout, NULL);