Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/
DLocalSocket.java39 private final int sockType; field in LocalSocket
63 public LocalSocket(int sockType) { in LocalSocket() argument
64 this(new LocalSocketImpl(), sockType); in LocalSocket()
67 private LocalSocket(LocalSocketImpl impl, int sockType) { in LocalSocket() argument
69 this.sockType = sockType; in LocalSocket()
95 private static LocalSocket createConnectedLocalSocket(LocalSocketImpl impl, int sockType) { in createConnectedLocalSocket() argument
96 LocalSocket socket = new LocalSocket(impl, sockType); in createConnectedLocalSocket()
121 impl.create(sockType); in implCreateIfNeeded()
DLocalSocketImpl.java237 public void create(int sockType) throws IOException { in create() argument
243 switch (sockType) { in create()
/frameworks/base/services/core/java/com/android/server/connectivity/
DNetworkDiagnostics.java384 int sockType, int protocol, long writeTimeout, long readTimeout, int dstPort) in setupSocket() argument
388 mFileDescriptor = Os.socket(mAddressFamily, sockType, protocol); in setupSocket()