Searched defs:sockType (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/net/
H A DLocalSocket.java37 private final int sockType; field in class:LocalSocket
58 * @param sockType either {@link #SOCKET_DGRAM}, {@link #SOCKET_STREAM}
61 public LocalSocket(int sockType) { argument
62 this(new LocalSocketImpl(), sockType);
81 /*package*/ LocalSocket(LocalSocketImpl impl, int sockType) { argument
83 this.sockType = sockType;
106 impl.create(sockType);
H A DLocalSocketImpl.java231 * @param sockType either {@link LocalSocket#SOCKET_DGRAM}, {@link LocalSocket#SOCKET_STREAM}
235 public void create (int sockType) throws IOException { argument
240 switch (sockType) {
251 throw new IllegalStateException("unknown sockType");
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkDiagnostics.java307 int sockType, int protocol, long writeTimeout, long readTimeout, int dstPort)
309 mFileDescriptor = Os.socket(mAddressFamily, sockType, protocol);
306 setupSocket( int sockType, int protocol, long writeTimeout, long readTimeout, int dstPort) argument

Completed in 108 milliseconds