Home
last modified time | relevance | path

Searched refs:pollfd (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/graphics/jni/
Dandroid_graphics_cts_SyncTest.cpp43 std::unique_ptr<pollfd[]> pollfds = std::make_unique<pollfd[]>(n); in syncPoll()
/cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/vpn/
DVpnTestHelper.java158 StructPollfd pollfd = new StructPollfd(); in checkPing() local
159 pollfd.events = (short) POLLIN; in checkPing()
160 pollfd.fd = socket; in checkPing()
161 int ret = Os.poll(new StructPollfd[] { pollfd }, SOCKET_TIMEOUT_MS); in checkPing()
/cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
DVpnTest.java313 StructPollfd pollfd = new StructPollfd(); in checkPing() local
314 pollfd.events = (short) POLLIN; // "error: possible loss of precision" in checkPing()
315 pollfd.fd = s; in checkPing()
316 int ret = Os.poll(new StructPollfd[] { pollfd }, SOCKET_TIMEOUT_MS); in checkPing()