Searched refs:timeout_ms (Results 1 – 12 of 12) sorted by relevance
/glogg/glogg/src/ |
H A D | kqueuewatchtowerdriver.cpp |
|
H A D | inotifywatchtowerdriver.cpp |
|
H A D | winwatchtowerdriver.cpp |
|
H A D | kqueuewatchtowerdriver.h |
|
H A D | inotifywatchtowerdriver.h |
|
/glogg/src/ |
H A D | kqueuewatchtowerdriver.cpp | 184 int timeout_ms ) in waitAndProcessEvents() argument 188 struct timespec timeout = { timeout_ms / 1000, (timeout_ms % 1000) * 1000000}; in waitAndProcessEvents() 191 int event_count = kevent( kqueue_fd_, NULL, 0, &event, 1, timeout_ms ? &timeout : NULL ); in waitAndProcessEvents()
|
H A D | inotifywatchtowerdriver.cpp | 113 int timeout_ms ) in waitAndProcessEvents() argument 127 int poll_ret = poll( fds, 2, timeout_ms ? timeout_ms : -1 ); in waitAndProcessEvents()
|
H A D | winwatchtowerdriver.cpp | 310 int timeout_ms ) in waitAndProcessEvents() argument 318 if ( timeout_ms == 0 ) in waitAndProcessEvents() 319 timeout_ms = INFINITE; in waitAndProcessEvents() 327 timeout_ms ); in waitAndProcessEvents()
|
H A D | kqueuewatchtowerdriver.h | 118 int timeout_ms );
|
H A D | inotifywatchtowerdriver.h | 118 int timeout_ms );
|
/glogg/glogg/tests/ |
H A D | watchtowerTest.cpp |
|
/glogg/tests/ |
H A D | watchtowerTest.cpp | 126 bool waitNotificationReceived( int number = 1, int timeout_ms = TIMEOUT ) { in waitNotificationReceived() argument 128 bool result = ( cv_.wait_for( lock, std::chrono::milliseconds(timeout_ms), in waitNotificationReceived()
|