Home
last modified time | relevance | path

Searched refs:timeout_seconds (Results 1 – 5 of 5) sorted by relevance

/device/google/cuttlefish/host/libs/command_util/
Dutil.cc74 const int timeout_seconds) { in GetLauncherMonitorFromInstance() argument
79 monitor_path.c_str(), false, SOCK_STREAM, timeout_seconds); in GetLauncherMonitorFromInstance()
88 const int timeout_seconds) { in GetLauncherMonitor() argument
90 return GetLauncherMonitorFromInstance(instance_config, timeout_seconds); in GetLauncherMonitor()
128 Result<void> WaitForRead(SharedFD monitor_socket, const int timeout_seconds) { in WaitForRead() argument
132 struct timeval timeout = {timeout_seconds, 0}; in WaitForRead()
134 timeout_seconds <= 0 ? nullptr : &timeout); in WaitForRead()
144 std::optional<int> timeout_seconds) { in RunLauncherAction() argument
151 if (timeout_seconds.has_value()) { in RunLauncherAction()
152 CF_EXPECT(WaitForRead(monitor_socket, timeout_seconds.value())); in RunLauncherAction()
[all …]
Dutil.h31 const int timeout_seconds);
35 const int timeout_seconds);
43 Result<void> WaitForRead(SharedFD monitor_socket, const int timeout_seconds);
48 std::optional<int> timeout_seconds);
55 std::optional<int> timeout_seconds);
/device/google/cuttlefish/guest/hals/health/storage/
DStorage.h25 garbageCollect(int64_t timeout_seconds,
/device/google/cuttlefish/common/libs/fs/
Dshared_fd.h168 int in_type, int timeout_seconds);
Dshared_fd.cpp537 int in_type, int timeout_seconds) { in SocketLocalClient() argument
545 struct timeval timeout = {timeout_seconds, 0}; in SocketLocalClient()