HomeSort by relevance Sort by last modified time
    Searched refs:RegisterAlarm (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/net/tools/quic/
quic_epoll_connection_helper.cc 33 epoll_server_->RegisterAlarm(
quic_time_wait_list_manager_test.cc 85 MOCK_METHOD2(RegisterAlarm, void(int64 timeout_in_us,
302 EXPECT_CALL(epoll_server_, RegisterAlarm(next_alarm_time, _));
427 EXPECT_CALL(epoll_server_, RegisterAlarm(next_alarm_time, _));
452 EXPECT_CALL(epoll_server_, RegisterAlarm(_, _));
  /external/chromium_org/net/tools/epoll_server/
epoll_server.h 360 // unregister the previous callback before calling RegisterAlarm again.
364 virtual void RegisterAlarm(int64 timeout_time_in_us, AlarmCB* ac);
371 // WaitForEvents. As with 'RegisterAlarm()', if the callback returns a
376 // same thing may be accomplished by using RegisterAlarm with
381 // unregister the previous callback before calling RegisterAlarm again.
387 RegisterAlarm(ApproximateNowInUsec() + delta_in_us, ac);
    [all...]
epoll_server.cc 459 void EpollServer::RegisterAlarm(int64 timeout_time_in_us, AlarmCB* ac) {
776 RegisterAlarm(new_timeout_time_in_us, cb);

Completed in 117 milliseconds