OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:timeout_in_us
(Results
1 - 2
of
2
) sorted by null
/external/chromium/net/tools/flip_server/
epoll_server.cc
377
<< "
timeout_in_us
= " << timeout_in_us_;
613
void EpollServer::WaitForEventsAndCallHandleEvents(int64
timeout_in_us
,
616
if (
timeout_in_us
== 0 || ready_list_.lh_first != NULL) {
618
timeout_in_us
= 0;
619
} else if (
timeout_in_us
< 0) {
620
LOG(INFO) << "Negative epoll timeout: " <<
timeout_in_us
622
// If
timeout_in_us
is < 0 we are supposed to Wait forever. This means we
623
// should set
timeout_in_us
to -1000 so we will
625
timeout_in_us
= -1000;
628
if (
timeout_in_us
< 1000)
[
all
...]
epoll_server.h
465
// occured, or when
timeout_in_us
microseconds has elapsed, whichever
468
//
timeout_in_us
- value specified depending on behaviour desired.
470
void set_timeout_in_us(int64
timeout_in_us
) {
471
timeout_in_us_ =
timeout_in_us
;
477
// Accessor for the current value of
timeout_in_us
.
478
int
timeout_in_us
() const { return timeout_in_us_; }
function in class:net::EpollServer
649
virtual void WaitForEventsAndCallHandleEvents(int64
timeout_in_us
,
[
all
...]
Completed in 11 milliseconds