Home
last modified time | relevance | path

Searched refs:host_fd (Results 1 – 4 of 4) sorted by relevance

/device/google/cuttlefish_common/host/commands/ivserver/
Dvsocsharedmem.h34 explicit Region(const char *device_name, const cvd::SharedFD &host_fd, in Region()
36 : device_name(device_name), host_fd(host_fd), guest_fd(guest_fd) {} in Region()
38 cvd::SharedFD host_fd; member
Dvsocsharedmem.cc88 *guest_to_host = region_data_[it->second].host_fd; in GetEventFdPairForRegion()
109 auto host_fd = cvd::SharedFD::Event(0, EFD_NONBLOCK); in New() local
110 if (!host_fd->IsOpen()) { in New()
112 << host_fd->StrError(); in New()
124 regions.emplace_back(device_name, host_fd, guest_fd); in New()
Dhald_client_test.cc125 cvd::SharedFD host_fd( in TEST_F() local
127 EXPECT_TRUE(host_fd->IsOpen()); in TEST_F()
141 .WillOnce(DoAll(SetArgPointee<1>(host_fd), SetArgPointee<2>(guest_fd), in TEST_F()
Dqemu_client.cc74 if (!SendSocketInfo(kHostID, region_data.host_fd)) { in PerformHandshake()