Searched refs:timeout_time (Results 1 – 6 of 6) sorted by relevance
/external/lldb/source/Core/ |
D | Communication.cpp | 164 TimeValue timeout_time; in Read() local 167 timeout_time = TimeValue::Now(); in Read() 168 timeout_time.OffsetWithMicroSeconds (timeout_usec); in Read() 174 while (listener.WaitForEvent (timeout_time.IsValid() ? &timeout_time : NULL, event_sp)) in Read()
|
/external/lldb/source/Host/common/ |
D | Host.cpp | 1435 TimeValue timeout_time(TimeValue::Now()); in RunShellCommand() local 1436 timeout_time.OffsetWithSeconds(timeout_sec); in RunShellCommand() 1438 shell_info->process_reaped.WaitForValueEqualTo(true, &timeout_time, &timed_out); in RunShellCommand() 1446 timeout_time = TimeValue::Now(); in RunShellCommand() 1447 timeout_time.OffsetWithSeconds(1); in RunShellCommand() 1449 shell_info->process_reaped.WaitForValueEqualTo(true, &timeout_time, &timed_out); in RunShellCommand()
|
/external/wpa_supplicant_8/src/wps/ |
D | wps_upnp_i.h | 82 time_t timeout_time; /* when to age out the subscription */ member
|
D | wps_upnp.c | 558 if (s->timeout_time > now) in subscription_list_age() 721 s->timeout_time = expire; in subscription_start() 765 s->timeout_time = expire; in subscription_renew()
|
/external/lldb/source/Target/ |
D | Process.cpp | 2895 TimeValue timeout_time; in Launch() local 2896 timeout_time = TimeValue::Now(); in Launch() 2897 timeout_time.OffsetWithSeconds(10); in Launch() 2898 StateType state = WaitForProcessStopPrivate(&timeout_time, event_sp); in Launch() 3375 TimeValue timeout_time; in Halt() local 3376 timeout_time = TimeValue::Now(); in Halt() 3377 timeout_time.OffsetWithSeconds(1); in Halt() 3378 bool got_event = halt_listener.WaitForEvent (&timeout_time, event_sp); in Halt() 3844 TimeValue timeout_time; in ControlPrivateStateThread() local 3849 timeout_time = TimeValue::Now(); in ControlPrivateStateThread() [all …]
|
/external/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteCommunicationClient.cpp | 346 TimeValue timeout_time; in SendPacketAndWaitForResponse() local 347 timeout_time = TimeValue::Now(); in SendPacketAndWaitForResponse() 348 timeout_time.OffsetWithSeconds (m_packet_timeout); in SendPacketAndWaitForResponse() 353 … if (m_async_packet_predicate.WaitForValueEqualTo (false, &timeout_time, &timed_out)) in SendPacketAndWaitForResponse() 369 … if (m_private_is_running.WaitForValueEqualTo (true, &timeout_time, &timed_out)) in SendPacketAndWaitForResponse()
|