Home | History | Annotate | Download | only in net

Lines Matching defs:sockType

39     private final int sockType;
60 * @param sockType either {@link #SOCKET_DGRAM}, {@link #SOCKET_STREAM}
63 public LocalSocket(int sockType) {
64 this(new LocalSocketImpl(), sockType);
67 private LocalSocket(LocalSocketImpl impl, int sockType) {
69 this.sockType = sockType;
95 private static LocalSocket createConnectedLocalSocket(LocalSocketImpl impl, int sockType) {
96 LocalSocket socket = new LocalSocket(impl, sockType);
121 impl.create(sockType);