Searched refs:timeout_time (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/webrtc/base/
H A Dtaskrunner.cc140 return next_timeout_task_->timeout_time();
165 if (task->timeout_time()) {
167 (task->timeout_time() <= next_timeout_task_->timeout_time())) {
199 if (!task->IsDone() && (task->timeout_time() > 0))
205 task->timeout_time() <= next_timeout_time) {
207 next_timeout_time = task->timeout_time();
H A Dtask.h113 int64 timeout_time() const { return timeout_time_; } function in class:rtc::Task
H A Dtask_unittest.cc181 stuck_[i].task_->timeout_time() << std::endl;
273 << stuck_[i].task_->timeout_time() << std::endl;
/external/chromium_org/third_party/android_testrunner/
H A Dadb_interface.py54 def SendCommand(self, command_string, timeout_time=20, retry_count=3):
59 timeout_time: number of seconds to wait for command to respond before
71 return run_command.RunCommand(adb_cmd, timeout_time=timeout_time,
74 def SendShellCommand(self, cmd, timeout_time=20, retry_count=3):
79 timeout_time: number of seconds to wait for command to respond before
90 return self.SendCommand("shell %s" % cmd, timeout_time=timeout_time,
99 bug_output = self.SendShellCommand("bugreport", timeout_time=60)
111 self.SendCommand("push %s %s" % (src, dest), timeout_time
[all...]
H A Drun_command.py38 def RunCommand(cmd, timeout_time=None, retry_count=3, return_output=True,
44 timeout_time: time in seconds to wait for command to run before aborting.
55 result = RunOnce(cmd, timeout_time=timeout_time,
66 def RunOnce(cmd, timeout_time=None, return_output=True, stdin_input=None):
71 timeout_time: time in seconds to wait for command to run before aborting.
79 timeout_time seconds.
128 t.join(timeout_time)
/external/lldb/source/Core/
H A DCommunication.cpp164 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))
/external/chromium_org/build/android/pylib/
H A Dandroid_commands.py476 return self._adb.SendCommand(uninstall_command, timeout_time=60)
501 timeout_time=2 * 60,
644 def WaitForSdCardReady(self, timeout_time):
651 while not sdcard_ready and attempts * wait_period < timeout_time:
660 'SD card not ready after %s seconds' % timeout_time)
700 def RunShellCommand(self, command, timeout_time=20, log_result=False):
705 timeout_time: Number of seconds to wait for command to respond before
717 "'%s'" % command, timeout_time).splitlines()
727 def GetShellCommandStatusAndOutput(self, command, timeout_time=20,
735 command + '; echo %$?', timeout_time, log_resul
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_upnp_i.h82 time_t timeout_time; /* when to age out the subscription */ member in struct:subscription
H A Dwps_upnp.c555 if (s->timeout_time > now)
716 s->timeout_time = expire;
757 s->timeout_time = expire;
/external/wpa_supplicant_8/src/wps/
H A Dwps_upnp_i.h82 time_t timeout_time; /* when to age out the subscription */ member in struct:subscription
H A Dwps_upnp.c555 if (s->timeout_time > now)
716 s->timeout_time = expire;
757 s->timeout_time = expire;
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_upnp_i.h82 time_t timeout_time; /* when to age out the subscription */ member in struct:subscription
H A Dwps_upnp.c555 if (s->timeout_time > now)
716 s->timeout_time = expire;
757 s->timeout_time = expire;
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Drfc2217.py340 timeout_time = time.time() + timeout
341 while time.time() < timeout_time:
442 timeout_time = time.time() + self._network_timeout
443 while time.time() < timeout_time:
487 timeout_time = time.time() + self._network_timeout
488 while time.time() < timeout_time:
862 timeout_time = time.time() + self._network_timeout
863 while time.time() < timeout_time:
/external/lldb/source/Host/common/
H A DHost.cpp1435 TimeValue timeout_time(TimeValue::Now());
1436 timeout_time.OffsetWithSeconds(timeout_sec);
1438 shell_info->process_reaped.WaitForValueEqualTo(true, &timeout_time, &timed_out);
1446 timeout_time = TimeValue::Now();
1447 timeout_time.OffsetWithSeconds(1);
1449 shell_info->process_reaped.WaitForValueEqualTo(true, &timeout_time, &timed_out);
/external/chromium_org/build/android/pylib/device/
H A Ddevice_utils.py339 cmd, timeout_time=timeout)
344 output = self.old_interface.RunShellCommand(cmd, timeout_time=timeout)
/external/chromium_org/build/android/pylib/utils/
H A Demulator.py402 timeout_time=self._WAITFORDEVICE_TIMEOUT,
/external/lldb/source/Target/
H A DProcess.cpp2895 TimeValue timeout_time;
2896 timeout_time = TimeValue::Now();
2897 timeout_time.OffsetWithSeconds(10);
2898 StateType state = WaitForProcessStopPrivate(&timeout_time, event_sp);
3375 TimeValue timeout_time;
3376 timeout_time = TimeValue::Now();
3377 timeout_time.OffsetWithSeconds(1);
3378 bool got_event = halt_listener.WaitForEvent (&timeout_time, event_sp);
3844 TimeValue timeout_time;
3849 timeout_time
[all...]
/external/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp346 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))
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dandroid_browser_backend.py401 cmd, timeout_time=240)

Completed in 461 milliseconds