HomeSort by relevance Sort by last modified time
    Searched defs:SocketPair (Results 1 - 2 of 2) sorted by null

  /device/google/cuttlefish_common/common/libs/fs/
shared_fd.cpp 256 bool SharedFD::SocketPair(int domain, int type, int protocol,
259 int rval = socketpair(domain, type, protocol, fds);
  /cts/tests/tests/net/src/android/net/cts/
IpSecBaseTest.java 320 public static class SocketPair<T> {
324 public SocketPair(T leftSock, T rightSock) {
337 public static SocketPair<NativeUdpSocket> getNativeUdpSocketPair(
357 return new SocketPair<>(leftSock, rightSock);
360 public static SocketPair<NativeTcpSocket> getNativeTcpSocketPair(
381 return new SocketPair<>(client, accepted);
384 public static SocketPair<JavaUdpSocket> getJavaUdpSocketPair(
398 return new SocketPair<>(leftSock, rightSock);
401 public static SocketPair<JavaTcpSocket> getJavaTcpSocketPair(
425 return new SocketPair<>(clientSock, acceptedSock)
    [all...]

Completed in 204 milliseconds