Home
last modified time | relevance | path

Searched refs:pollfd (Results 1 – 5 of 5) 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.java197 StructPollfd pollfd = new StructPollfd(); in checkPing() local
198 pollfd.events = (short) POLLIN; in checkPing()
199 pollfd.fd = socket; in checkPing()
200 int ret = Os.poll(new StructPollfd[] { pollfd }, SOCKET_TIMEOUT_MS); in checkPing()
/cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
DVpnTest.java325 StructPollfd pollfd = new StructPollfd(); in checkPing() local
326 pollfd.events = (short) POLLIN; // "error: possible loss of precision" in checkPing()
327 pollfd.fd = s; in checkPing()
328 int ret = Os.poll(new StructPollfd[] { pollfd }, SOCKET_TIMEOUT_MS); in checkPing()
/cts/tests/tests/net/native/dns/
DNativeDnsAsyncTest.cpp38 struct pollfd wait_fd[1]; in getAsyncResponse()
/cts/tests/tests/net/jni/
DNativeMultinetworkJni.cpp78 struct pollfd wait_fd = { .fd = fd, .events = POLLIN }; in getAsyncResponse()