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 238 inline bool SharedFD::SocketPair(int domain, int type, int protocol,
241 int rval = socketpair(domain, type, protocol, fds);
  /cts/tests/tests/net/src/android/net/cts/
IpSecBaseTest.java 293 public static class SocketPair<T> {
297 public SocketPair(T leftSock, T rightSock) {
310 public static SocketPair<NativeUdpSocket> getNativeUdpSocketPair(
330 return new SocketPair<>(leftSock, rightSock);
333 public static SocketPair<NativeTcpSocket> getNativeTcpSocketPair(
354 return new SocketPair<>(client, accepted);
357 public static SocketPair<JavaUdpSocket> getJavaUdpSocketPair(
371 return new SocketPair<>(leftSock, rightSock);
374 public static SocketPair<JavaTcpSocket> getJavaTcpSocketPair(
398 return new SocketPair<>(clientSock, acceptedSock)
    [all...]

Completed in 243 milliseconds