HomeSort by relevance Sort by last modified time
    Searched defs:timeout_time (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/webrtc/base/
task.h 113 int64 timeout_time() const { return timeout_time_; } function in class:rtc::Task
  /external/lldb/source/Core/
Communication.cpp 164 TimeValue timeout_time; local
167 timeout_time = TimeValue::Now();
168 timeout_time.OffsetWithMicroSeconds (timeout_usec);
174 while (listener.WaitForEvent (timeout_time.IsValid() ? &timeout_time : NULL, event_sp))
  /system/core/fs_mgr/
fs_mgr.c 83 time_t timeout_time = gettime() + timeout; local
86 while (gettime() < timeout_time && ((ret = stat(filename, &info)) < 0))
  /system/core/init/
util.c 377 time_t timeout_time = gettime() + timeout; local
380 while (gettime() < timeout_time && ((ret = stat(filename, &info)) < 0))
  /external/wpa_supplicant_8/src/wps/
wps_upnp_i.h 82 time_t timeout_time; /* when to age out the subscription */ member in struct:subscription
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunicationClient.cpp 346 TimeValue timeout_time; local
347 timeout_time = TimeValue::Now();
348 timeout_time.OffsetWithSeconds (m_packet_timeout);
353 if (m_async_packet_predicate.WaitForValueEqualTo (false, &timeout_time, &timed_out))
369 if (m_private_is_running.WaitForValueEqualTo (true, &timeout_time, &timed_out))
    [all...]

Completed in 361 milliseconds